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

70 lines
2.7 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;
2018-04-13 17:19:50 +08:00
using osu.Framework.Input;
using osu.Game.Beatmaps;
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;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Rulesets.Catch.Objects.Drawables;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Catch.Replays;
2019-04-08 17:32:05 +08:00
using osu.Game.Rulesets.Mods;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.UI;
using osu.Game.Rulesets.UI.Scrolling;
namespace osu.Game.Rulesets.Catch.UI
{
2019-03-20 10:29:16 +08:00
public class DrawableCatchRuleset : DrawableScrollingRuleset<CatchHitObject>
2018-04-13 17:19:50 +08:00
{
2018-11-12 16:36:19 +08:00
protected override ScrollVisualisationMethod VisualisationMethod => ScrollVisualisationMethod.Constant;
protected override bool UserScrollSpeedAdjustment => false;
public DrawableCatchRuleset(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.Down;
TimeRange.Value = BeatmapDifficulty.DifficultyRange(beatmap.BeatmapInfo.BaseDifficulty.ApproachRate, 1800, 1200, 450);
2018-04-13 17:19:50 +08:00
}
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new CatchFramedReplayInputHandler(replay);
protected override ReplayRecorder CreateReplayRecorder(Replay replay) => new CatchReplayRecorder(replay, (CatchPlayfield)Playfield);
2020-03-24 13:55:49 +08:00
protected override Playfield CreatePlayfield() => new CatchPlayfield(Beatmap.BeatmapInfo.BaseDifficulty, CreateDrawableRepresentation);
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
public override DrawableHitObject<CatchHitObject> CreateDrawableRepresentation(CatchHitObject h)
2018-04-13 17:19:50 +08:00
{
switch (h)
{
case Banana banana:
2018-06-10 08:38:17 +08:00
return new DrawableBanana(banana);
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case Fruit fruit:
return new DrawableFruit(fruit);
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case JuiceStream stream:
return new DrawableJuiceStream(stream, CreateDrawableRepresentation);
2019-04-01 11:44:46 +08:00
2018-06-10 08:38:17 +08:00
case BananaShower shower:
return new DrawableBananaShower(shower, CreateDrawableRepresentation);
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case TinyDroplet tiny:
2018-06-10 08:38:17 +08:00
return new DrawableTinyDroplet(tiny);
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case Droplet droplet:
return new DrawableDroplet(droplet);
}
return null;
}
}
}