2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2021-09-17 16:14:56 +08:00
|
|
|
|
using System;
|
2019-04-08 17:32:05 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-03-21 20:26:01 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2021-08-02 18:39:30 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2020-05-01 18:48:31 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-08-20 21:21:16 +08:00
|
|
|
|
using osu.Framework.Input;
|
2022-07-22 16:02:58 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2018-11-06 11:01:54 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2018-02-28 15:34:47 +08:00
|
|
|
|
using osu.Game.Input.Handlers;
|
2018-11-28 16:20:37 +08:00
|
|
|
|
using osu.Game.Replays;
|
2019-04-08 17:32:05 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2019-09-10 12:29:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2022-07-22 16:02:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Replays;
|
2021-09-17 16:14:56 +08:00
|
|
|
|
using osu.Game.Rulesets.Timing;
|
2022-07-22 16:02:58 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-01-04 18:22:15 +08:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2020-12-14 15:52:14 +08:00
|
|
|
|
using osu.Game.Scoring;
|
2020-05-01 18:48:31 +08:00
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.UI
|
2016-09-02 18:50:22 +08:00
|
|
|
|
{
|
2019-03-20 10:29:16 +08:00
|
|
|
|
public class DrawableTaikoRuleset : DrawableScrollingRuleset<TaikoHitObject>
|
2016-09-02 18:50:22 +08:00
|
|
|
|
{
|
2021-08-02 18:39:30 +08:00
|
|
|
|
public new BindableDouble TimeRange => base.TimeRange;
|
2020-05-01 18:48:31 +08:00
|
|
|
|
|
2022-03-13 13:21:52 +08:00
|
|
|
|
public readonly BindableBool LockPlayfieldAspect = new BindableBool(true);
|
|
|
|
|
|
2018-11-12 16:36:19 +08:00
|
|
|
|
protected override ScrollVisualisationMethod VisualisationMethod => ScrollVisualisationMethod.Overlapping;
|
2018-11-06 11:01:54 +08:00
|
|
|
|
|
2018-11-07 16:24:05 +08:00
|
|
|
|
protected override bool UserScrollSpeedAdjustment => false;
|
|
|
|
|
|
2021-08-02 18:39:30 +08:00
|
|
|
|
private SkinnableDrawable scroller;
|
|
|
|
|
|
2019-12-12 14:58:11 +08:00
|
|
|
|
public DrawableTaikoRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod> mods = null)
|
2019-04-08 17:32:05 +08:00
|
|
|
|
: base(ruleset, beatmap, mods)
|
2017-03-10 14:08:53 +08:00
|
|
|
|
{
|
2018-11-06 14:46:36 +08:00
|
|
|
|
Direction.Value = ScrollingDirection.Left;
|
2018-11-07 16:24:05 +08:00
|
|
|
|
TimeRange.Value = 7000;
|
2017-03-10 14:08:53 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-21 20:26:01 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-12-08 04:18:51 +08:00
|
|
|
|
private void load()
|
2017-03-21 20:26:01 +08:00
|
|
|
|
{
|
2020-12-14 03:12:54 +08:00
|
|
|
|
new BarLineGenerator<BarLine>(Beatmap).BarLines.ForEach(bar => Playfield.Add(bar));
|
2020-05-01 18:48:31 +08:00
|
|
|
|
|
2020-05-14 16:04:09 +08:00
|
|
|
|
FrameStableComponents.Add(scroller = new SkinnableDrawable(new TaikoSkinComponent(TaikoSkinComponents.Scroller), _ => Empty())
|
2020-05-01 18:48:31 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Depth = float.MaxValue
|
|
|
|
|
});
|
2022-03-10 16:42:58 +08:00
|
|
|
|
|
2022-07-22 15:18:22 +08:00
|
|
|
|
KeyBindingInputManager.Add(new DrumTouchInputArea());
|
2020-05-01 18:48:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateAfterChildren()
|
|
|
|
|
{
|
|
|
|
|
base.UpdateAfterChildren();
|
|
|
|
|
|
|
|
|
|
var playfieldScreen = Playfield.ScreenSpaceDrawQuad;
|
|
|
|
|
scroller.Height = ToLocalSpace(playfieldScreen.TopLeft + new Vector2(0, playfieldScreen.Height / 20)).Y;
|
2017-03-21 20:26:01 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-09-17 16:14:56 +08:00
|
|
|
|
public MultiplierControlPoint ControlPointAt(double time)
|
|
|
|
|
{
|
|
|
|
|
int result = ControlPoints.BinarySearch(new MultiplierControlPoint(time));
|
|
|
|
|
if (result < 0)
|
|
|
|
|
result = Math.Clamp(~result - 1, 0, ControlPoints.Count);
|
|
|
|
|
return ControlPoints[result];
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-13 13:21:52 +08:00
|
|
|
|
public override PlayfieldAdjustmentContainer CreatePlayfieldAdjustmentContainer() => new TaikoPlayfieldAdjustmentContainer
|
|
|
|
|
{
|
|
|
|
|
LockPlayfieldAspect = { BindTarget = LockPlayfieldAspect }
|
|
|
|
|
};
|
2019-03-26 12:31:49 +08:00
|
|
|
|
|
2019-03-19 19:21:31 +08:00
|
|
|
|
protected override PassThroughInputManager CreateInputManager() => new TaikoInputManager(Ruleset.RulesetInfo);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-08-25 14:24:13 +08:00
|
|
|
|
protected override Playfield CreatePlayfield() => new TaikoPlayfield();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-12-21 01:16:05 +08:00
|
|
|
|
public override DrawableHitObject<TaikoHitObject> CreateDrawableRepresentation(TaikoHitObject h) => null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-02-28 15:34:47 +08:00
|
|
|
|
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new TaikoFramedReplayInputHandler(replay);
|
2020-03-24 13:55:49 +08:00
|
|
|
|
|
2020-12-14 15:52:14 +08:00
|
|
|
|
protected override ReplayRecorder CreateReplayRecorder(Score score) => new TaikoReplayRecorder(score);
|
2016-09-02 18:50:22 +08:00
|
|
|
|
}
|
2016-10-13 21:14:18 +08:00
|
|
|
|
}
|