2016-09-02 18:25:13 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes.Objects;
|
2016-11-14 18:49:29 +08:00
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
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;
|
2016-11-19 18:07:57 +08:00
|
|
|
|
using OsuConverter = osu.Game.Modes.Osu.Objects.OsuHitObjectConverter;
|
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
|
|
|
|
{
|
2016-11-19 18:07:57 +08:00
|
|
|
|
public class OsuHitRenderer : HitRenderer<OsuHitObject>
|
2016-09-02 18:25:13 +08:00
|
|
|
|
{
|
2016-11-19 18:07:57 +08:00
|
|
|
|
protected override HitObjectConverter<OsuHitObject> Converter => new OsuHitObjectConverter();
|
2016-09-02 18:25:13 +08:00
|
|
|
|
|
2016-10-13 21:14:18 +08:00
|
|
|
|
protected override Playfield CreatePlayfield() => new OsuPlayfield();
|
2016-10-10 16:17:26 +08:00
|
|
|
|
|
2016-11-19 18:07:57 +08:00
|
|
|
|
protected override DrawableHitObject GetVisualRepresentation(OsuHitObject h)
|
2016-11-17 20:29:35 +08:00
|
|
|
|
{
|
|
|
|
|
if (h is HitCircle)
|
|
|
|
|
return new DrawableHitCircle(h as HitCircle);
|
|
|
|
|
if (h is Slider)
|
|
|
|
|
return new DrawableSlider(h as Slider);
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2016-09-02 18:25:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|