2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2019-04-08 09:32:05 +00:00
|
|
|
|
using System.Collections.Generic;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2018-11-06 03:01:54 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Input.Handlers;
|
2018-11-28 08:20:37 +00:00
|
|
|
|
using osu.Game.Replays;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects.Drawable;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Replays;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Scoring;
|
2019-04-08 09:32:05 +00:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.UI
|
|
|
|
|
{
|
2019-03-20 02:29:16 +00:00
|
|
|
|
public class DrawableCatchRuleset : DrawableScrollingRuleset<CatchHitObject>
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2018-11-12 08:36:19 +00:00
|
|
|
|
protected override ScrollVisualisationMethod VisualisationMethod => ScrollVisualisationMethod.Constant;
|
2018-11-06 03:01:54 +00:00
|
|
|
|
|
2018-11-07 08:24:05 +00:00
|
|
|
|
protected override bool UserScrollSpeedAdjustment => false;
|
|
|
|
|
|
2019-04-10 08:13:12 +00:00
|
|
|
|
public DrawableCatchRuleset(Ruleset ruleset, WorkingBeatmap beatmap, IReadOnlyList<Mod> mods)
|
2019-04-08 09:32:05 +00:00
|
|
|
|
: base(ruleset, beatmap, mods)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2018-11-06 06:46:36 +00:00
|
|
|
|
Direction.Value = ScrollingDirection.Down;
|
2018-11-07 08:24:05 +00:00
|
|
|
|
TimeRange.Value = BeatmapDifficulty.DifficultyRange(beatmap.BeatmapInfo.BaseDifficulty.ApproachRate, 1800, 1200, 450);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new CatchScoreProcessor(this);
|
|
|
|
|
|
|
|
|
|
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new CatchFramedReplayInputHandler(replay);
|
|
|
|
|
|
2019-03-24 14:40:43 +00:00
|
|
|
|
protected override Playfield CreatePlayfield() => new CatchPlayfield(Beatmap.BeatmapInfo.BaseDifficulty, CreateDrawableRepresentation);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-30 16:29:37 +00:00
|
|
|
|
public override PlayfieldAdjustmentContainer CreatePlayfieldAdjustmentContainer() => new CatchPlayfieldAdjustmentContainer();
|
2019-03-26 04:31:49 +00:00
|
|
|
|
|
2019-03-19 11:21:31 +00:00
|
|
|
|
protected override PassThroughInputManager CreateInputManager() => new CatchInputManager(Ruleset.RulesetInfo);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-24 14:40:43 +00:00
|
|
|
|
public override DrawableHitObject<CatchHitObject> CreateDrawableRepresentation(CatchHitObject h)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
switch (h)
|
|
|
|
|
{
|
2018-06-11 19:43:01 +00:00
|
|
|
|
case Banana banana:
|
2018-06-10 00:38:17 +00:00
|
|
|
|
return new DrawableBanana(banana);
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
case Fruit fruit:
|
|
|
|
|
return new DrawableFruit(fruit);
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
case JuiceStream stream:
|
2019-03-24 14:40:43 +00:00
|
|
|
|
return new DrawableJuiceStream(stream, CreateDrawableRepresentation);
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-06-10 00:38:17 +00:00
|
|
|
|
case BananaShower shower:
|
2019-03-24 14:40:43 +00:00
|
|
|
|
return new DrawableBananaShower(shower, CreateDrawableRepresentation);
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
case TinyDroplet tiny:
|
2018-06-10 00:38:17 +00:00
|
|
|
|
return new DrawableTinyDroplet(tiny);
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
case Droplet droplet:
|
|
|
|
|
return new DrawableDroplet(droplet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|