2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 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
|
|
|
|
|
2017-03-10 14:08:53 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2016-11-14 18:49:29 +08:00
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
2017-03-12 13:32:50 +08:00
|
|
|
|
using osu.Game.Modes.Osu.Beatmaps;
|
2017-03-15 18:23:42 +08:00
|
|
|
|
using osu.Game.Modes.Osu.Judgements;
|
2016-11-16 15:16:45 +08:00
|
|
|
|
using osu.Game.Modes.Osu.Objects;
|
2016-11-16 15:20:58 +08:00
|
|
|
|
using osu.Game.Modes.Osu.Objects.Drawables;
|
2016-11-14 17:54:24 +08:00
|
|
|
|
using osu.Game.Modes.UI;
|
2017-03-14 15:00:35 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2016-09-02 18:25:13 +08:00
|
|
|
|
|
2016-11-14 17:54:24 +08:00
|
|
|
|
namespace osu.Game.Modes.Osu.UI
|
2016-09-02 18:25:13 +08:00
|
|
|
|
{
|
2017-03-15 17:55:38 +08:00
|
|
|
|
public class OsuHitRenderer : HitRenderer<OsuHitObject, OsuJudgementInfo>
|
2016-09-02 18:25:13 +08:00
|
|
|
|
{
|
2017-03-12 17:03:13 +08:00
|
|
|
|
public OsuHitRenderer(WorkingBeatmap beatmap)
|
2017-03-10 14:08:53 +08:00
|
|
|
|
: base(beatmap)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-12 13:32:50 +08:00
|
|
|
|
protected override IBeatmapConverter<OsuHitObject> CreateBeatmapConverter() => new OsuBeatmapConverter();
|
2017-03-12 01:26:10 +08:00
|
|
|
|
|
2017-03-14 16:01:21 +08:00
|
|
|
|
protected override IBeatmapProcessor<OsuHitObject> CreateBeatmapProcessor() => new OsuBeatmapProcessor();
|
2017-03-15 17:55:38 +08:00
|
|
|
|
protected override Playfield<OsuHitObject, OsuJudgementInfo> CreatePlayfield() => new OsuPlayfield();
|
2016-10-10 16:17:26 +08:00
|
|
|
|
|
|
|
|
|
|
2017-03-14 15:00:35 +08:00
|
|
|
|
protected override KeyConversionInputManager CreateKeyConversionInputManager() => new OsuKeyConversionInputManager();
|
|
|
|
|
|
2017-03-15 17:55:38 +08:00
|
|
|
|
protected override DrawableHitObject<OsuHitObject, OsuJudgementInfo> GetVisualRepresentation(OsuHitObject h)
|
2016-11-17 20:29:35 +08:00
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
var circle = h as HitCircle;
|
|
|
|
|
if (circle != null)
|
|
|
|
|
return new DrawableHitCircle(circle);
|
|
|
|
|
|
|
|
|
|
var slider = h as Slider;
|
|
|
|
|
if (slider != null)
|
|
|
|
|
return new DrawableSlider(slider);
|
|
|
|
|
|
|
|
|
|
var spinner = h as Spinner;
|
|
|
|
|
if (spinner != null)
|
|
|
|
|
return new DrawableSpinner(spinner);
|
2016-11-17 20:29:35 +08:00
|
|
|
|
return null;
|
|
|
|
|
}
|
2016-09-02 18:25:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|