1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 09:27:23 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Objects/Drawables/DrawableHoldNote.cs

304 lines
12 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using System;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Game.Rulesets.Mania.Objects.Drawables.Pieces;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input.Bindings;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Drawables;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.UI.Scrolling;
2020-03-31 15:42:35 +08:00
using osu.Game.Skinning;
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Mania.Objects.Drawables
{
/// <summary>
/// Visualises a <see cref="HoldNote"/> hit object.
/// </summary>
public class DrawableHoldNote : DrawableManiaHitObject<HoldNote>, IKeyBindingHandler<ManiaAction>
{
public override bool DisplayResult => false;
2020-03-31 15:42:35 +08:00
public IBindable<bool> IsHitting => isHitting;
private readonly Bindable<bool> isHitting = new Bindable<bool>();
2019-12-23 16:48:48 +08:00
public DrawableHoldNoteHead Head => headContainer.Child;
public DrawableHoldNoteTail Tail => tailContainer.Child;
private readonly Container<DrawableHoldNoteHead> headContainer;
private readonly Container<DrawableHoldNoteTail> tailContainer;
private readonly Container<DrawableHoldNoteTick> tickContainer;
2020-08-18 23:05:05 +08:00
/// <summary>
/// Contains the maximum size/position of the body prior to any offset or size adjustments.
/// </summary>
private readonly Container bodyContainer;
/// <summary>
/// Contains the offset size/position of the body such that the body extends half-way between the head and tail pieces.
/// </summary>
private readonly Container bodyOffsetContainer;
2018-04-13 17:19:50 +08:00
2020-08-19 00:40:26 +08:00
/// <summary>
/// Contains the masking area for the tail, which is resized along with <see cref="bodyContainer"/>.
/// </summary>
private readonly Container tailMaskingContainer;
private readonly SkinnableDrawable bodyPiece;
2018-04-13 17:19:50 +08:00
/// <summary>
/// Time at which the user started holding this hold note. Null if the user is not holding this hold note.
/// </summary>
2019-12-23 17:48:14 +08:00
public double? HoldStartTime { get; private set; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// Whether the hold note has been released too early and shouldn't give full score for the release.
/// </summary>
2019-12-23 17:48:14 +08:00
public bool HasBroken { get; private set; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// Whether the hold note has been released potentially without having caused a break.
/// </summary>
2020-08-19 00:37:24 +08:00
private double? releaseTime;
public DrawableHoldNote(HoldNote hitObject)
: base(hitObject)
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.X;
2020-08-18 23:05:05 +08:00
AddRangeInternal(new[]
2018-04-13 17:19:50 +08:00
{
2020-08-18 23:05:05 +08:00
bodyContainer = new Container
{
2020-08-18 23:05:05 +08:00
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
2020-08-18 23:05:05 +08:00
bodyOffsetContainer = new Container
{
RelativeSizeAxes = Axes.X,
Child = bodyPiece = new SkinnableDrawable(new ManiaSkinComponent(ManiaSkinComponents.HoldNoteBody, hitObject.Column), _ => new DefaultBodyPiece
2020-08-18 23:05:05 +08:00
{
RelativeSizeAxes = Axes.Both
})
},
// The head needs to move along with changes in the size of the body.
headContainer = new Container<DrawableHoldNoteHead> { RelativeSizeAxes = Axes.Both }
}
2020-03-31 15:42:35 +08:00
},
tickContainer = new Container<DrawableHoldNoteTick> { RelativeSizeAxes = Axes.Both },
2020-08-19 00:40:26 +08:00
tailMaskingContainer = new Container
{
RelativeSizeAxes = Axes.X,
Masking = true,
Child = tailContainer = new Container<DrawableHoldNoteTail>
{
RelativeSizeAxes = Axes.X,
}
},
headContainer.CreateProxy()
});
2018-04-13 17:19:50 +08:00
}
protected override void AddNestedHitObject(DrawableHitObject hitObject)
{
base.AddNestedHitObject(hitObject);
2019-10-17 11:53:54 +08:00
switch (hitObject)
{
case DrawableHoldNoteHead head:
headContainer.Child = head;
break;
case DrawableHoldNoteTail tail:
tailContainer.Child = tail;
break;
case DrawableHoldNoteTick tick:
tickContainer.Add(tick);
break;
}
}
protected override void ClearNestedHitObjects()
{
base.ClearNestedHitObjects();
headContainer.Clear();
tailContainer.Clear();
tickContainer.Clear();
}
protected override DrawableHitObject CreateNestedHitObject(HitObject hitObject)
{
switch (hitObject)
{
case TailNote _:
return new DrawableHoldNoteTail(this)
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
AccentColour = { BindTarget = AccentColour }
};
case Note _:
return new DrawableHoldNoteHead(this)
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
AccentColour = { BindTarget = AccentColour }
};
case HoldNoteTick tick:
return new DrawableHoldNoteTick(tick)
{
HoldStartTime = () => HoldStartTime,
AccentColour = { BindTarget = AccentColour }
};
}
return base.CreateNestedHitObject(hitObject);
}
2019-02-21 17:56:34 +08:00
protected override void OnDirectionChanged(ValueChangedEvent<ScrollingDirection> e)
{
2019-02-21 17:56:34 +08:00
base.OnDirectionChanged(e);
2020-08-18 23:05:36 +08:00
// The body container is anchored from the position of the tail, since its height is changed when the hold note is being hit.
// The body offset container is anchored from the position of the head (inverse of the above).
2020-08-19 00:40:26 +08:00
// The tail containers are both anchored from the position of the tail.
2020-08-18 23:05:36 +08:00
if (e.NewValue == ScrollingDirection.Up)
{
bodyContainer.Anchor = bodyContainer.Origin = Anchor.BottomLeft;
bodyOffsetContainer.Anchor = bodyOffsetContainer.Origin = Anchor.TopLeft;
2020-08-19 00:40:26 +08:00
tailMaskingContainer.Anchor = tailMaskingContainer.Origin = Anchor.BottomLeft;
tailContainer.Anchor = tailContainer.Origin = Anchor.BottomLeft;
2020-08-18 23:05:36 +08:00
}
else
{
bodyContainer.Anchor = bodyContainer.Origin = Anchor.TopLeft;
bodyOffsetContainer.Anchor = bodyOffsetContainer.Origin = Anchor.BottomLeft;
2020-08-19 00:40:26 +08:00
tailMaskingContainer.Anchor = tailMaskingContainer.Origin = Anchor.TopLeft;
tailContainer.Anchor = tailContainer.Origin = Anchor.TopLeft;
2020-08-18 23:05:36 +08:00
}
}
2020-04-21 15:33:19 +08:00
public override void PlaySamples()
{
2020-04-21 16:20:37 +08:00
// Samples are played by the head/tail notes.
2020-04-21 15:33:19 +08:00
}
public override void OnKilled()
{
base.OnKilled();
(bodyPiece.Drawable as IHoldNoteBody)?.Recycle();
}
2018-04-13 17:19:50 +08:00
protected override void Update()
{
base.Update();
2020-08-19 00:37:24 +08:00
if (Time.Current < releaseTime)
releaseTime = null;
// Decrease the size of the body while the hold note is held and the head has been hit. This stops at the very first release point.
if (Head.IsHit && releaseTime == null)
{
float heightDecrease = (float)(Math.Max(0, Time.Current - HitObject.StartTime) / HitObject.Duration);
2020-08-18 23:05:05 +08:00
bodyContainer.Height = MathHelper.Clamp(1 - heightDecrease, 0, 1);
}
2020-08-18 23:05:05 +08:00
2020-08-19 00:40:26 +08:00
// Re-position the body half-way up the head, and extend the height until it's half-way under the tail.
2020-08-18 23:05:05 +08:00
bodyOffsetContainer.Y = (Direction.Value == ScrollingDirection.Up ? 1 : -1) * Head.Height / 2;
2020-08-19 00:40:26 +08:00
bodyOffsetContainer.Height = bodyContainer.DrawHeight + Tail.Height / 2 - Head.Height / 2;
// The tail is positioned to be "outside" the hold note, so re-position its masking container to fully cover the tail and extend the height until it's half-way under the head.
// The masking height is determined by the size of the body so that the head and tail don't overlap as the body becomes shorter via hitting (above).
tailMaskingContainer.Y = (Direction.Value == ScrollingDirection.Up ? 1 : -1) * Tail.Height;
tailMaskingContainer.Height = bodyContainer.DrawHeight + Tail.Height - Head.Height / 2;
// The tail container needs the reverse of the above offset applied to bring the tail to its original position.
// It also needs the full original height of the hold note to maintain positioning even as the height of the masking container changes.
tailContainer.Y = -tailMaskingContainer.Y;
tailContainer.Height = DrawHeight;
2018-04-13 17:19:50 +08:00
}
protected override void UpdateStateTransforms(ArmedState state)
{
using (BeginDelayedSequence(HitObject.Duration, true))
base.UpdateStateTransforms(state);
}
2019-12-23 16:48:48 +08:00
protected override void CheckForResult(bool userTriggered, double timeOffset)
{
2019-12-23 16:48:48 +08:00
if (Tail.AllJudged)
ApplyResult(r => r.Type = HitResult.Perfect);
2019-12-23 16:48:48 +08:00
if (Tail.Result.Type == HitResult.Miss)
HasBroken = true;
}
2018-04-13 17:19:50 +08:00
public bool OnPressed(ManiaAction action)
{
2019-12-23 16:48:48 +08:00
if (AllJudged)
2018-04-13 17:19:50 +08:00
return false;
if (action != Action.Value)
2018-04-13 17:19:50 +08:00
return false;
// The tail has a lenience applied to it which is factored into the miss window (i.e. the miss judgement will be delayed).
// But the hold cannot ever be started within the late-lenience window, so we should skip trying to begin the hold during that time.
// Note: Unlike below, we use the tail's start time to determine the time offset.
if (Time.Current > Tail.HitObject.StartTime && !Tail.HitObject.HitWindows.CanBeHit(Time.Current - Tail.HitObject.StartTime))
return false;
2019-12-23 16:48:48 +08:00
beginHoldAt(Time.Current - Head.HitObject.StartTime);
Head.UpdateResult();
2018-04-13 17:19:50 +08:00
return true;
}
2019-12-23 16:48:48 +08:00
private void beginHoldAt(double timeOffset)
{
if (timeOffset < -Head.HitObject.HitWindows.WindowFor(HitResult.Miss))
return;
HoldStartTime = Time.Current;
2020-03-31 15:42:35 +08:00
isHitting.Value = true;
2019-12-23 16:48:48 +08:00
}
public void OnReleased(ManiaAction action)
2018-04-13 17:19:50 +08:00
{
2019-12-23 16:48:48 +08:00
if (AllJudged)
return;
2018-04-13 17:19:50 +08:00
if (action != Action.Value)
return;
2018-04-13 17:19:50 +08:00
2019-12-23 16:48:48 +08:00
// Make sure a hold was started
if (HoldStartTime == null)
return;
2019-12-23 16:48:48 +08:00
Tail.UpdateResult();
endHold();
2018-04-13 17:19:50 +08:00
// If the key has been released too early, the user should not receive full score for the release
2018-05-20 18:22:42 +08:00
if (!Tail.IsHit)
HasBroken = true;
2020-08-19 00:37:24 +08:00
releaseTime = Time.Current;
2018-04-13 17:19:50 +08:00
}
2019-12-23 16:48:48 +08:00
private void endHold()
{
HoldStartTime = null;
2020-03-31 15:42:35 +08:00
isHitting.Value = false;
2019-12-23 16:48:48 +08:00
}
2018-04-13 17:19:50 +08:00
}
}