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-09-06 16:02:13 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Judgements;
|
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-09-12 10:14:16 +08:00
|
|
|
|
protected readonly GlowPiece GlowPiece;
|
2017-09-11 03:22:05 +08:00
|
|
|
|
|
2017-09-12 10:14:29 +08:00
|
|
|
|
private readonly LaneGlowPiece laneGlowPiece;
|
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
|
|
|
|
{
|
2017-06-16 18:21:54 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2017-09-11 03:21:22 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2017-05-09 19:33:59 +08:00
|
|
|
|
|
2017-09-12 10:14:16 +08:00
|
|
|
|
Children = new Drawable[]
|
2017-05-09 19:33:59 +08:00
|
|
|
|
{
|
2017-09-12 10:14:29 +08:00
|
|
|
|
laneGlowPiece = new LaneGlowPiece
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre
|
|
|
|
|
},
|
2017-09-12 10:14:16 +08:00
|
|
|
|
GlowPiece = new GlowPiece(),
|
|
|
|
|
headPiece = new NotePiece
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre
|
|
|
|
|
}
|
|
|
|
|
};
|
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;
|
|
|
|
|
|
2017-09-12 10:14:29 +08:00
|
|
|
|
laneGlowPiece.AccentColour = value;
|
2017-09-12 10:14:16 +08:00
|
|
|
|
GlowPiece.AccentColour = value;
|
2017-05-04 17:02:43 +08:00
|
|
|
|
headPiece.AccentColour = value;
|
|
|
|
|
}
|
2017-05-03 14:50:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 16:02:13 +08:00
|
|
|
|
protected override void CheckForJudgements(bool userTriggered, double timeOffset)
|
2017-05-11 11:57:07 +08:00
|
|
|
|
{
|
2017-05-22 14:29:17 +08:00
|
|
|
|
if (!userTriggered)
|
|
|
|
|
{
|
2017-09-06 16:02:13 +08:00
|
|
|
|
if (timeOffset > HitObject.HitWindows.Bad / 2)
|
|
|
|
|
AddJudgement(new ManiaJudgement { Result = HitResult.Miss });
|
2017-05-22 14:29:17 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 16:02:13 +08:00
|
|
|
|
double offset = Math.Abs(timeOffset);
|
2017-05-22 14:29:17 +08:00
|
|
|
|
|
|
|
|
|
if (offset > HitObject.HitWindows.Miss / 2)
|
|
|
|
|
return;
|
|
|
|
|
|
2017-09-06 16:02:13 +08:00
|
|
|
|
AddJudgement(new ManiaJudgement { 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
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|