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;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables.Pieces;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|
|
|
|
{
|
|
|
|
|
public class DrawableNote : DrawableManiaHitObject<Note>
|
|
|
|
|
{
|
2017-05-11 13:11:52 +08:00
|
|
|
|
private readonly NotePiece headPiece;
|
2017-05-03 14:50:42 +08:00
|
|
|
|
|
|
|
|
|
public DrawableNote(Note hitObject)
|
|
|
|
|
: base(hitObject)
|
|
|
|
|
{
|
2017-05-16 16:03:43 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
Height = 100;
|
2017-05-09 19:33:59 +08:00
|
|
|
|
|
|
|
|
|
Add(headPiece = new NotePiece
|
|
|
|
|
{
|
2017-05-16 16:34:41 +08:00
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre
|
2017-05-09 19:33:59 +08:00
|
|
|
|
});
|
2017-05-04 14:36:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-04 17:02:43 +08:00
|
|
|
|
public override Color4 AccentColour
|
2017-05-04 14:36:37 +08:00
|
|
|
|
{
|
2017-05-11 13:11:52 +08:00
|
|
|
|
get { return base.AccentColour; }
|
2017-05-04 17:02:43 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (base.AccentColour == value)
|
|
|
|
|
return;
|
|
|
|
|
base.AccentColour = value;
|
|
|
|
|
|
|
|
|
|
headPiece.AccentColour = value;
|
|
|
|
|
}
|
2017-05-03 14:50:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-11 11:57:07 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
if (Time.Current > HitObject.StartTime)
|
|
|
|
|
Colour = Color4.Green;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-03 14:50:42 +08:00
|
|
|
|
protected override void UpdateState(ArmedState state)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|