2016-09-02 20:30:27 +09: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 18:54:24 +09:00
|
|
|
|
using osu.Game.Modes.Mania.Objects;
|
2016-11-14 18:03:20 +09:00
|
|
|
|
using osu.Game.Modes.Objects;
|
2016-11-14 19:49:29 +09:00
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
2016-11-14 18:54:24 +09:00
|
|
|
|
using osu.Game.Modes.UI;
|
2016-09-02 20:30:27 +09:00
|
|
|
|
|
2016-11-14 18:54:24 +09:00
|
|
|
|
namespace osu.Game.Modes.Mania.UI
|
2016-09-02 20:30:27 +09:00
|
|
|
|
{
|
2016-10-13 10:10:15 +09:00
|
|
|
|
public class ManiaHitRenderer : HitRenderer<ManiaBaseHit>
|
2016-09-02 20:30:27 +09:00
|
|
|
|
{
|
|
|
|
|
private readonly int columns;
|
|
|
|
|
|
|
|
|
|
public ManiaHitRenderer(int columns = 5)
|
|
|
|
|
{
|
|
|
|
|
this.columns = columns;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-14 17:48:07 +08:00
|
|
|
|
protected override HitObjectConverter<ManiaBaseHit> Converter => new ManiaConverter(columns);
|
2016-09-02 20:30:27 +09:00
|
|
|
|
|
2016-10-13 10:10:15 +09:00
|
|
|
|
protected override Playfield CreatePlayfield() => new ManiaPlayfield(columns);
|
2016-09-02 20:30:27 +09:00
|
|
|
|
|
2016-10-19 19:44:03 +09:00
|
|
|
|
protected override DrawableHitObject GetVisualRepresentation(ManiaBaseHit h)
|
2016-09-02 20:30:27 +09:00
|
|
|
|
{
|
2016-10-19 19:44:03 +09:00
|
|
|
|
return null;
|
|
|
|
|
//return new DrawableNote(h)
|
|
|
|
|
//{
|
|
|
|
|
// Position = new Vector2((float)(h.Column + 0.5) / columns, -0.1f),
|
|
|
|
|
// RelativePositionAxes = Axes.Both
|
|
|
|
|
//};
|
2016-09-02 20:30:27 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|