osu/osu.Game.Rulesets.Osu/UI/OsuRulesetContainer.cs

62 lines
2.0 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 09:19:50 +00:00
using System.Linq;
2018-04-13 09:19:50 +00:00
using osu.Framework.Input;
using osu.Game.Beatmaps;
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.Objects.Drawables;
2019-01-23 10:46:53 +00:00
using osu.Game.Rulesets.Osu.Configuration;
2018-04-13 09:19:50 +00:00
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.Scoring;
using osu.Game.Rulesets.UI;
namespace osu.Game.Rulesets.Osu.UI
{
public class OsuRulesetContainer : RulesetContainer<OsuPlayfield, OsuHitObject>
2018-04-13 09:19:50 +00:00
{
protected new OsuRulesetConfigManager Config => (OsuRulesetConfigManager)base.Config;
2019-01-23 10:46:53 +00:00
public OsuRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap)
: base(ruleset, beatmap)
2018-04-13 09:19:50 +00:00
{
}
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)
2018-04-13 09:19:50 +00:00
{
switch (h)
{
case HitCircle circle:
return new DrawableHitCircle(circle);
case Slider slider:
return new DrawableSlider(slider);
case Spinner spinner:
return new DrawableSpinner(spinner);
}
2018-04-13 09:19:50 +00:00
return null;
}
2019-02-20 12:08:52 +00:00
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new OsuFramedReplayInputHandler(replay);
2018-04-13 09:19:50 +00:00
public override double GameplayStartTime
{
get
{
var first = (OsuHitObject)Objects.First();
return first.StartTime - first.TimePreempt;
}
}
2018-04-13 09:19:50 +00:00
}
}