1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-18 03:12:54 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Objects/Drawables/DrawableNote.cs

84 lines
2.4 KiB
C#
Raw Normal View History

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
2017-05-22 14:29:17 +08:00
using System;
2017-05-03 14:50:42 +08:00
using OpenTK.Graphics;
using osu.Framework.Graphics;
2017-08-23 12:42:11 +08:00
using osu.Framework.Input.Bindings;
2017-05-03 14:50:42 +08:00
using osu.Game.Rulesets.Mania.Objects.Drawables.Pieces;
using osu.Game.Rulesets.Objects.Drawables;
namespace osu.Game.Rulesets.Mania.Objects.Drawables
{
2017-05-24 20:57:38 +08:00
/// <summary>
/// Visualises a <see cref="Note"/> hit object.
/// </summary>
2017-08-23 12:42:11 +08:00
public class DrawableNote : DrawableManiaHitObject<Note>, IKeyBindingHandler<ManiaAction>
2017-05-03 14:50:42 +08:00
{
2017-05-11 13:11:52 +08:00
private readonly NotePiece headPiece;
2017-05-03 14:50:42 +08:00
2017-08-23 12:42:11 +08:00
public DrawableNote(Note hitObject, ManiaAction action)
: base(hitObject, action)
2017-05-03 14:50:42 +08:00
{
RelativeSizeAxes = Axes.X;
2017-05-16 16:03:43 +08:00
Height = 100;
Add(headPiece = new NotePiece
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre
});
2017-05-04 14:36:37 +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; }
set
{
if (base.AccentColour == value)
return;
base.AccentColour = value;
headPiece.AccentColour = value;
}
2017-05-03 14:50:42 +08:00
}
2017-05-22 14:29:17 +08:00
protected override void CheckJudgement(bool userTriggered)
2017-05-11 11:57:07 +08:00
{
2017-05-22 14:29:17 +08:00
if (!userTriggered)
{
if (Judgement.TimeOffset > HitObject.HitWindows.Bad / 2)
Judgement.Result = HitResult.Miss;
return;
}
double offset = Math.Abs(Judgement.TimeOffset);
if (offset > HitObject.HitWindows.Miss / 2)
return;
2017-09-05 18:44:59 +08:00
Judgement.Result = HitObject.HitWindows.ResultFor(offset) ?? HitResult.Miss;
2017-05-11 11:57:07 +08:00
}
2017-05-03 14:50:42 +08:00
protected override void UpdateState(ArmedState state)
{
2017-05-22 14:29:17 +08:00
switch (State)
{
case ArmedState.Hit:
Colour = Color4.Green;
break;
}
}
2017-08-23 12:42:11 +08:00
public virtual bool OnPressed(ManiaAction action)
2017-05-22 14:29:17 +08:00
{
2017-08-23 12:42:11 +08:00
if (action != Action)
2017-05-22 15:42:14 +08:00
return false;
2017-05-22 14:29:17 +08:00
return UpdateJudgement(true);
2017-05-03 14:50:42 +08:00
}
2017-08-23 12:42:11 +08:00
public virtual bool OnReleased(ManiaAction action) => false;
2017-05-03 14:50:42 +08:00
}
}