1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 14:47:24 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Objects/Drawables/DrawableHoldNoteTick.cs

109 lines
3.0 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;
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;
}
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
if (startTime == null || startTime > HitObject.StartTime)
2020-09-29 13:29:43 +08:00
ApplyResult(r => r.Type = r.Judgement.MinResult);
else
2020-09-29 13:29:43 +08:00
ApplyResult(r => r.Type = r.Judgement.MaxResult);
2018-04-13 17:19:50 +08:00
}
}
}