1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:07:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu/UI/OsuRulesetContainer.cs

62 lines
2.4 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-09-02 18:25:13 +08:00
using osu.Framework.Graphics.Cursor;
using osu.Framework.Input;
using OpenTK;
using osu.Game.Beatmaps;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Beatmaps;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
using osu.Game.Rulesets.Osu.Replays;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Osu.Scoring;
using osu.Game.Rulesets.Osu.UI.Cursor;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.UI;
using osu.Game.Rulesets.Replays;
2016-09-02 18:25:13 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Osu.UI
2016-09-02 18:25:13 +08:00
{
2017-09-06 17:05:51 +08:00
public class OsuRulesetContainer : RulesetContainer<OsuHitObject>
2016-09-02 18:25:13 +08:00
{
2017-08-09 12:28:29 +08:00
public OsuRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap, bool isForCurrentRuleset)
: base(ruleset, beatmap, isForCurrentRuleset)
{
}
public override ScoreProcessor CreateScoreProcessor() => new OsuScoreProcessor(this);
protected override BeatmapConverter<OsuHitObject> CreateBeatmapConverter() => new OsuBeatmapConverter();
protected override BeatmapProcessor<OsuHitObject> CreateBeatmapProcessor() => new OsuBeatmapProcessor();
2016-10-10 16:17:26 +08:00
protected override Playfield CreatePlayfield() => new OsuPlayfield();
2016-10-10 16:17:26 +08:00
public override PassThroughInputManager CreateInputManager() => new OsuInputManager(Ruleset.RulesetInfo);
2017-09-06 17:05:51 +08:00
protected override DrawableHitObject<OsuHitObject> GetVisualRepresentation(OsuHitObject h)
2016-11-17 20:29:35 +08:00
{
if (h is HitCircle circle)
2017-03-07 09:59:19 +08:00
return new DrawableHitCircle(circle);
if (h is Slider slider)
2017-03-07 09:59:19 +08:00
return new DrawableSlider(slider);
if (h is Spinner spinner)
2017-03-07 09:59:19 +08:00
return new DrawableSpinner(spinner);
2016-11-17 20:29:35 +08:00
return null;
}
protected override FramedReplayInputHandler CreateReplayInputHandler(Replay replay) => new OsuReplayInputHandler(replay);
protected override Vector2 GetAspectAdjustedSize()
2018-02-19 16:02:27 +08:00
{
var aspectSize = DrawSize.X * 0.75f < DrawSize.Y ? new Vector2(DrawSize.X, DrawSize.X * 0.75f) : new Vector2(DrawSize.Y * 4f / 3f, DrawSize.Y);
return new Vector2(aspectSize.X / DrawSize.X, aspectSize.Y / DrawSize.Y) * 0.75f;
}
protected override CursorContainer CreateCursor() => new GameplayCursor();
2016-09-02 18:25:13 +08:00
}
}