mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
63 lines
2.0 KiB
C#
63 lines
2.0 KiB
C#
// 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.
|
|
|
|
using System.Linq;
|
|
using osu.Framework.Graphics.Cursor;
|
|
using osu.Framework.Input;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Input.Handlers;
|
|
using osu.Game.Replays;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
using osu.Game.Rulesets.Osu.Replays;
|
|
using osu.Game.Rulesets.Osu.Scoring;
|
|
using osu.Game.Rulesets.Osu.UI.Cursor;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
|
{
|
|
public class OsuRulesetContainer : RulesetContainer<OsuPlayfield, OsuHitObject>
|
|
{
|
|
public OsuRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap)
|
|
: base(ruleset, beatmap)
|
|
{
|
|
}
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new OsuScoreProcessor(this);
|
|
|
|
protected override Playfield CreatePlayfield() => new OsuPlayfield();
|
|
|
|
public override PassThroughInputManager CreateInputManager() => new OsuInputManager(Ruleset.RulesetInfo);
|
|
|
|
public override DrawableHitObject<OsuHitObject> GetVisualRepresentation(OsuHitObject h)
|
|
{
|
|
switch (h)
|
|
{
|
|
case HitCircle circle:
|
|
return new DrawableHitCircle(circle);
|
|
case Slider slider:
|
|
return new DrawableSlider(slider);
|
|
case Spinner spinner:
|
|
return new DrawableSpinner(spinner);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new OsuReplayInputHandler(replay);
|
|
|
|
public override double GameplayStartTime
|
|
{
|
|
get
|
|
{
|
|
var first = (OsuHitObject)Objects.First();
|
|
return first.StartTime - first.TimePreempt;
|
|
}
|
|
}
|
|
|
|
protected override CursorContainer CreateCursor() => new GameplayCursor();
|
|
}
|
|
}
|