1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00
osu-lazer/osu.Game.Rulesets.Catch/UI/DrawableCatchRuleset.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
2.5 KiB
C#
Raw Normal View History

// 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;
using System.Linq;
2022-08-13 18:02:29 +08:00
using osu.Framework.Allocation;
using osu.Framework.Input;
using osu.Game.Beatmaps;
using osu.Game.Configuration;
using osu.Game.Input.Handlers;
2018-11-28 16:20:37 +08:00
using osu.Game.Replays;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Catch.Objects;
2018-01-12 17:35:28 +08:00
using osu.Game.Rulesets.Catch.Replays;
2019-04-08 17:32:05 +08:00
using osu.Game.Rulesets.Mods;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.UI;
2018-01-04 18:22:15 +08:00
using osu.Game.Rulesets.UI.Scrolling;
using osu.Game.Scoring;
using osu.Game.Screens.Play;
2024-03-04 15:08:25 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Catch.UI
{
2019-03-20 10:29:16 +08:00
public partial class DrawableCatchRuleset : DrawableScrollingRuleset<CatchHitObject>
{
protected override bool UserScrollSpeedAdjustment => false;
2023-01-15 15:26:11 +08:00
public DrawableCatchRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod>? mods = null)
2019-04-08 17:32:05 +08:00
: base(ruleset, beatmap, mods)
{
2018-11-06 14:46:36 +08:00
Direction.Value = ScrollingDirection.Down;
TimeRange.Value = GetTimeRange(beatmap.Difficulty.ApproachRate);
2023-08-15 19:38:17 +08:00
VisualisationMethod = ScrollVisualisationMethod.Constant;
}
2018-04-13 17:19:50 +08:00
2022-08-13 18:02:29 +08:00
[BackgroundDependencyLoader]
private void load()
{
2022-10-07 01:19:43 +08:00
// With relax mod, input maps directly to x position and left/right buttons are not used.
if (!Mods.Any(m => m is ModRelax))
KeyBindingInputManager.Add(new CatchTouchInputMapper());
2022-08-13 18:02:29 +08:00
}
protected double GetTimeRange(float approachRate) => IBeatmapDifficultyInfo.DifficultyRange(approachRate, 1800, 1200, 450);
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new CatchFramedReplayInputHandler(replay);
2018-04-13 17:19:50 +08:00
protected override ReplayRecorder CreateReplayRecorder(Score score) => new CatchReplayRecorder(score, (CatchPlayfield)Playfield);
2020-03-24 13:55:49 +08:00
protected override Playfield CreatePlayfield() => new CatchPlayfield(Beatmap.Difficulty);
2018-04-13 17:19:50 +08:00
public override PlayfieldAdjustmentContainer CreatePlayfieldAdjustmentContainer() => new CatchPlayfieldAdjustmentContainer();
protected override PassThroughInputManager CreateInputManager() => new CatchInputManager(Ruleset.RulesetInfo);
2018-04-13 17:19:50 +08:00
2023-01-15 15:26:11 +08:00
public override DrawableHitObject<CatchHitObject>? CreateDrawableRepresentation(CatchHitObject h) => null;
2024-03-04 15:08:25 +08:00
protected override ResumeOverlay CreateResumeOverlay() => new DelayedResumeOverlay { Scale = new Vector2(0.65f) };
}
}