2022-06-29 16:23:35 +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-04 04:51:30 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2022-06-29 16:23:35 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2022-07-04 04:51:30 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
2022-06-29 16:23:35 +08:00
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Skinning.Default
|
|
|
|
|
{
|
2022-07-15 07:52:45 +08:00
|
|
|
|
public class DefaultFollowCircle : FollowCircle
|
2022-06-29 16:23:35 +08:00
|
|
|
|
{
|
|
|
|
|
public DefaultFollowCircle()
|
|
|
|
|
{
|
|
|
|
|
InternalChild = new CircularContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Masking = true,
|
|
|
|
|
BorderThickness = 5,
|
|
|
|
|
BorderColour = Color4.Orange,
|
|
|
|
|
Blending = BlendingParameters.Additive,
|
|
|
|
|
Child = new Box
|
|
|
|
|
{
|
|
|
|
|
Colour = Color4.Orange,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Alpha = 0.2f,
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
2022-07-04 04:51:30 +08:00
|
|
|
|
|
2022-07-15 07:52:45 +08:00
|
|
|
|
protected override void OnTrackingChanged(ValueChangedEvent<bool> tracking)
|
2022-07-04 04:51:30 +08:00
|
|
|
|
{
|
|
|
|
|
const float scale_duration = 300f;
|
|
|
|
|
const float fade_duration = 300f;
|
|
|
|
|
|
|
|
|
|
this.ScaleTo(tracking.NewValue ? DrawableSliderBall.FOLLOW_AREA : 1f, scale_duration, Easing.OutQuint)
|
|
|
|
|
.FadeTo(tracking.NewValue ? 1f : 0, fade_duration, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-15 07:52:45 +08:00
|
|
|
|
protected override void OnSliderEnd()
|
2022-07-04 04:51:30 +08:00
|
|
|
|
{
|
2022-07-06 12:04:13 +08:00
|
|
|
|
const float fade_duration = 450f;
|
2022-07-04 04:51:30 +08:00
|
|
|
|
|
2022-07-06 12:04:13 +08:00
|
|
|
|
// intentionally pile on an extra FadeOut to make it happen much faster
|
2022-07-15 07:52:45 +08:00
|
|
|
|
this.FadeOut(fade_duration / 4, Easing.Out);
|
2022-07-04 04:51:30 +08:00
|
|
|
|
}
|
2022-06-29 16:23:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|