mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 22:07:40 +08:00
81 lines
2.5 KiB
C#
81 lines
2.5 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using osuTK;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Effects;
|
|
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>
|
|
public Func<double?> HoldStartTime;
|
|
|
|
public DrawableHoldNoteTick(HoldNoteTick hitObject)
|
|
: base(hitObject)
|
|
{
|
|
Container glowContainer;
|
|
|
|
Anchor = Anchor.TopCentre;
|
|
Origin = Anchor.TopCentre;
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
Size = new Vector2(1);
|
|
|
|
AddRangeInternal(new[]
|
|
{
|
|
glowContainer = new CircularContainer
|
|
{
|
|
Anchor = Anchor.TopCentre,
|
|
Origin = Anchor.TopCentre,
|
|
RelativeSizeAxes = Axes.Both,
|
|
Masking = true,
|
|
Children = new[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Alpha = 0,
|
|
AlwaysPresent = true
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
AccentColour.BindValueChanged(colour =>
|
|
{
|
|
glowContainer.EdgeEffect = new EdgeEffectParameters
|
|
{
|
|
Type = EdgeEffectType.Glow,
|
|
Radius = 2f,
|
|
Roundness = 15f,
|
|
Colour = colour.NewValue.Opacity(0.3f)
|
|
};
|
|
}, true);
|
|
}
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
|
{
|
|
if (Time.Current < HitObject.StartTime)
|
|
return;
|
|
|
|
var startTime = HoldStartTime?.Invoke();
|
|
|
|
if (startTime == null || startTime > HitObject.StartTime)
|
|
ApplyResult(r => r.Type = r.Judgement.MinResult);
|
|
else
|
|
ApplyResult(r => r.Type = r.Judgement.MaxResult);
|
|
}
|
|
}
|
|
}
|