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
|
|
|
|
|
2019-04-08 17:32:05 +08:00
|
|
|
|
using System.Collections.Generic;
|
2018-04-13 17:19:50 +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;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Replays;
|
|
|
|
|
using osu.Framework.Input;
|
2018-11-06 11:01:54 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2018-04-13 17:19:50 +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;
|
2018-04-13 17:19:50 +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
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.UI
|
|
|
|
|
{
|
2019-03-20 10:29:16 +08:00
|
|
|
|
public class DrawableTaikoRuleset : DrawableScrollingRuleset<TaikoHitObject>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-08-02 18:39:30 +08:00
|
|
|
|
public new BindableDouble TimeRange => base.TimeRange;
|
2020-05-01 18:48:31 +08:00
|
|
|
|
|
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)
|
2018-04-13 17:19:50 +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;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
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
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateAfterChildren()
|
|
|
|
|
{
|
|
|
|
|
base.UpdateAfterChildren();
|
|
|
|
|
|
|
|
|
|
var playfieldScreen = Playfield.ScreenSpaceDrawQuad;
|
|
|
|
|
scroller.Height = ToLocalSpace(playfieldScreen.TopLeft + new Vector2(0, playfieldScreen.Height / 20)).Y;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-31 00:29:37 +08:00
|
|
|
|
public override PlayfieldAdjustmentContainer CreatePlayfieldAdjustmentContainer() => new TaikoPlayfieldAdjustmentContainer();
|
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
|
|
|
|
|
|
|
|
|
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);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|