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