2022-07-15 07:52:45 +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.
|
|
|
|
|
|
2022-07-19 17:08:53 +08:00
|
|
|
|
using System.Diagnostics;
|
2022-07-15 07:52:45 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Skinning
|
|
|
|
|
{
|
|
|
|
|
public abstract class FollowCircle : CompositeDrawable
|
|
|
|
|
{
|
2022-07-15 15:40:48 +08:00
|
|
|
|
[Resolved]
|
2022-07-15 07:52:45 +08:00
|
|
|
|
protected DrawableHitObject? ParentObject { get; private set; }
|
|
|
|
|
|
2022-07-15 08:08:52 +08:00
|
|
|
|
protected FollowCircle()
|
2022-07-15 07:52:45 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2022-07-19 17:08:53 +08:00
|
|
|
|
((DrawableSlider?)ParentObject)?.Tracking.BindValueChanged(tracking =>
|
|
|
|
|
{
|
|
|
|
|
Debug.Assert(ParentObject != null);
|
|
|
|
|
if (ParentObject.Judged)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (tracking.NewValue)
|
|
|
|
|
OnSliderPress();
|
|
|
|
|
else
|
|
|
|
|
OnSliderRelease();
|
|
|
|
|
}, true);
|
2022-07-15 07:52:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
if (ParentObject != null)
|
|
|
|
|
{
|
|
|
|
|
ParentObject.HitObjectApplied += onHitObjectApplied;
|
|
|
|
|
onHitObjectApplied(ParentObject);
|
|
|
|
|
|
|
|
|
|
ParentObject.ApplyCustomUpdateState += updateStateTransforms;
|
|
|
|
|
updateStateTransforms(ParentObject, ParentObject.State.Value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onHitObjectApplied(DrawableHitObject drawableObject)
|
|
|
|
|
{
|
|
|
|
|
this.ScaleTo(1f)
|
|
|
|
|
.FadeOut();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateStateTransforms(DrawableHitObject drawableObject, ArmedState state)
|
|
|
|
|
{
|
|
|
|
|
if (drawableObject is not DrawableSlider)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
using (BeginAbsoluteSequence(drawableObject.HitStateUpdateTime))
|
2022-07-19 17:08:53 +08:00
|
|
|
|
{
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
|
|
|
|
case ArmedState.Hit:
|
|
|
|
|
OnSliderTail();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-07-15 07:52:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
|
|
|
|
|
if (ParentObject != null)
|
|
|
|
|
{
|
|
|
|
|
ParentObject.HitObjectApplied -= onHitObjectApplied;
|
|
|
|
|
ParentObject.ApplyCustomUpdateState -= updateStateTransforms;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-19 17:08:53 +08:00
|
|
|
|
protected abstract void OnSliderPress();
|
|
|
|
|
|
|
|
|
|
protected abstract void OnSliderRelease();
|
2022-07-15 07:52:45 +08:00
|
|
|
|
|
2022-07-19 17:08:53 +08:00
|
|
|
|
protected abstract void OnSliderTail();
|
2022-07-15 07:52:45 +08:00
|
|
|
|
}
|
|
|
|
|
}
|