2019-09-11 09:16:14 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 08:43:03 +00:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-09-02 09:31:33 +00:00
|
|
|
|
using System.Diagnostics;
|
2019-02-21 10:04:31 +00:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables.Pieces;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-06-08 06:17:22 +00:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2020-03-31 06:29:25 +00:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Visualises a <see cref="Note"/> hit object.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class DrawableNote : DrawableManiaHitObject<Note>, IKeyBindingHandler<ManiaAction>
|
|
|
|
|
{
|
2020-03-31 06:29:25 +00:00
|
|
|
|
protected virtual ManiaSkinComponents Component => ManiaSkinComponents.Note;
|
|
|
|
|
|
|
|
|
|
private readonly Drawable headPiece;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-07-02 03:31:41 +00:00
|
|
|
|
public DrawableNote(Note hitObject)
|
|
|
|
|
: base(hitObject)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
|
2020-04-02 09:39:49 +00:00
|
|
|
|
AddInternal(headPiece = new SkinnableDrawable(new ManiaSkinComponent(Component, hitObject.Column), _ => new DefaultNotePiece())
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-03-31 06:29:25 +00:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y
|
|
|
|
|
});
|
2019-07-22 05:45:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDirectionChanged(ValueChangedEvent<ScrollingDirection> e)
|
|
|
|
|
{
|
|
|
|
|
base.OnDirectionChanged(e);
|
|
|
|
|
|
|
|
|
|
headPiece.Anchor = headPiece.Origin = e.NewValue == ScrollingDirection.Up ? Anchor.TopCentre : Anchor.BottomCentre;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 02:31:46 +00:00
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-09-02 09:31:33 +00:00
|
|
|
|
Debug.Assert(HitObject.HitWindows != null);
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
if (!userTriggered)
|
|
|
|
|
{
|
|
|
|
|
if (!HitObject.HitWindows.CanBeHit(timeOffset))
|
2018-08-03 06:38:48 +00:00
|
|
|
|
ApplyResult(r => r.Type = HitResult.Miss);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var result = HitObject.HitWindows.ResultFor(timeOffset);
|
|
|
|
|
if (result == HitResult.None)
|
|
|
|
|
return;
|
|
|
|
|
|
2018-08-03 06:38:48 +00:00
|
|
|
|
ApplyResult(r => r.Type = result);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual bool OnPressed(ManiaAction action)
|
|
|
|
|
{
|
2018-07-02 03:31:41 +00:00
|
|
|
|
if (action != Action.Value)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2020-08-27 11:24:08 +00:00
|
|
|
|
if (CheckHittable?.Invoke(this, Time.Current) == false)
|
|
|
|
|
return false;
|
|
|
|
|
|
2018-08-06 02:31:46 +00:00
|
|
|
|
return UpdateResult(true);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 04:22:34 +00:00
|
|
|
|
public virtual void OnReleased(ManiaAction action)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|