2019-01-24 16:43:03 +08:00
|
|
|
// 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;
|
2021-05-12 15:35:05 +08:00
|
|
|
using System.Diagnostics;
|
|
|
|
using osu.Framework.Allocation;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-04-02 13:51:28 +08:00
|
|
|
using osu.Framework.Graphics.Effects;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Visualises a <see cref="HoldNoteTick"/> hit object.
|
|
|
|
/// </summary>
|
|
|
|
public class DrawableHoldNoteTick : DrawableManiaHitObject<HoldNoteTick>
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// References the time at which the user started holding the hold note.
|
|
|
|
/// </summary>
|
2021-05-12 15:35:05 +08:00
|
|
|
private Func<double?> holdStartTime;
|
|
|
|
|
|
|
|
private Container glowContainer;
|
|
|
|
|
|
|
|
public DrawableHoldNoteTick()
|
|
|
|
: this(null)
|
|
|
|
{
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
public DrawableHoldNoteTick(HoldNoteTick hitObject)
|
|
|
|
: base(hitObject)
|
|
|
|
{
|
|
|
|
Anchor = Anchor.TopCentre;
|
|
|
|
Origin = Anchor.TopCentre;
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2021-05-12 15:35:05 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-05-12 15:35:05 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2021-05-12 15:40:46 +08:00
|
|
|
AddInternal(glowContainer = new CircularContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2021-05-12 15:40:46 +08:00
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Masking = true,
|
|
|
|
Children = new[]
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2021-05-12 15:40:46 +08:00
|
|
|
new Box
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2021-05-12 15:40:46 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Alpha = 0,
|
|
|
|
AlwaysPresent = true
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
2021-05-12 15:40:46 +08:00
|
|
|
});
|
2021-05-12 15:35:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-07-22 13:45:25 +08:00
|
|
|
AccentColour.BindValueChanged(colour =>
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
glowContainer.EdgeEffect = new EdgeEffectParameters
|
|
|
|
{
|
|
|
|
Type = EdgeEffectType.Glow,
|
|
|
|
Radius = 2f,
|
|
|
|
Roundness = 15f,
|
2019-07-22 13:45:25 +08:00
|
|
|
Colour = colour.NewValue.Opacity(0.3f)
|
2018-04-13 17:19:50 +08:00
|
|
|
};
|
2019-07-22 13:45:25 +08:00
|
|
|
}, true);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
2021-05-12 15:35:05 +08:00
|
|
|
protected override void OnApply()
|
|
|
|
{
|
|
|
|
base.OnApply();
|
|
|
|
|
|
|
|
Debug.Assert(ParentHitObject != null);
|
|
|
|
|
|
|
|
var holdNote = (DrawableHoldNote)ParentHitObject;
|
|
|
|
holdStartTime = () => holdNote.HoldStartTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnFree()
|
|
|
|
{
|
|
|
|
base.OnFree();
|
|
|
|
|
|
|
|
holdStartTime = null;
|
|
|
|
}
|
|
|
|
|
2018-08-06 10:31:46 +08:00
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
if (Time.Current < HitObject.StartTime)
|
|
|
|
return;
|
|
|
|
|
2021-05-12 15:35:05 +08:00
|
|
|
var startTime = holdStartTime?.Invoke();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-08-02 15:44:01 +08:00
|
|
|
if (startTime == null || startTime > HitObject.StartTime)
|
2020-09-29 13:29:43 +08:00
|
|
|
ApplyResult(r => r.Type = r.Judgement.MinResult);
|
2018-08-02 15:44:01 +08:00
|
|
|
else
|
2020-09-29 13:29:43 +08:00
|
|
|
ApplyResult(r => r.Type = r.Judgement.MaxResult);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|