2017-05-03 14:50:42 +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
|
|
|
|
|
|
|
|
|
|
using OpenTK.Graphics;
|
2017-05-22 14:27:38 +08:00
|
|
|
|
using OpenTK.Input;
|
|
|
|
|
using osu.Framework.Configuration;
|
2017-05-03 14:50:42 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|
|
|
|
{
|
|
|
|
|
public abstract class DrawableManiaHitObject<TObject> : DrawableHitObject<ManiaHitObject, ManiaJudgement>
|
|
|
|
|
where TObject : ManiaHitObject
|
|
|
|
|
{
|
2017-05-22 14:27:38 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The key that will trigger input for this hit object.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected Bindable<Key> Key { get; private set; } = new Bindable<Key>();
|
|
|
|
|
|
2017-05-03 14:50:42 +08:00
|
|
|
|
public new TObject HitObject;
|
|
|
|
|
|
2017-05-22 14:27:38 +08:00
|
|
|
|
protected DrawableManiaHitObject(TObject hitObject, Bindable<Key> key = null)
|
2017-05-03 14:50:42 +08:00
|
|
|
|
: base(hitObject)
|
|
|
|
|
{
|
|
|
|
|
HitObject = hitObject;
|
|
|
|
|
|
2017-05-22 14:27:38 +08:00
|
|
|
|
if (key != null)
|
|
|
|
|
Key.BindTo(key);
|
|
|
|
|
|
2017-05-09 19:33:59 +08:00
|
|
|
|
RelativePositionAxes = Axes.Y;
|
2017-05-16 16:34:41 +08:00
|
|
|
|
Y = (float)HitObject.StartTime;
|
2017-05-03 14:50:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-04 17:02:43 +08:00
|
|
|
|
public override Color4 AccentColour
|
|
|
|
|
{
|
|
|
|
|
get { return base.AccentColour; }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (base.AccentColour == value)
|
|
|
|
|
return;
|
|
|
|
|
base.AccentColour = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override ManiaJudgement CreateJudgement() => new ManiaJudgement();
|
2017-05-03 14:50:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|