2020-02-02 14:34:06 +01:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 17:43:03 +09:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-01-21 10:57:14 +09:00
|
|
|
|
using System;
|
2019-07-25 15:35:51 +09:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-12-06 18:54:32 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-07-25 15:35:51 +09:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-02-23 20:51:26 +09:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2022-06-29 01:23:35 -07:00
|
|
|
|
using osu.Game.Rulesets.Osu.Skinning.Default;
|
2018-07-29 21:28:13 +02:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2022-06-29 01:23:35 -07:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
2016-12-06 18:54:32 +09:00
|
|
|
|
{
|
2023-12-15 16:13:32 +09:00
|
|
|
|
public partial class DrawableSliderBall : CircularContainer, ISliderProgress
|
2016-12-06 18:54:32 +09:00
|
|
|
|
{
|
2022-07-03 13:51:30 -07:00
|
|
|
|
public const float FOLLOW_AREA = 2.4f;
|
|
|
|
|
|
2022-06-29 01:23:35 -07:00
|
|
|
|
private DrawableSlider drawableSlider;
|
|
|
|
|
private Drawable ball;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2022-06-29 01:23:35 -07:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(DrawableHitObject drawableSlider)
|
2016-12-06 18:54:32 +09:00
|
|
|
|
{
|
2022-06-29 01:23:35 -07:00
|
|
|
|
this.drawableSlider = (DrawableSlider)drawableSlider;
|
2019-07-25 15:35:51 +09:00
|
|
|
|
|
2016-12-06 18:54:32 +09:00
|
|
|
|
Origin = Anchor.Centre;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2023-09-20 12:48:15 +09:00
|
|
|
|
Size = OsuHitObject.OBJECT_DIMENSIONS;
|
2019-07-25 15:35:51 +09:00
|
|
|
|
|
2018-07-29 21:28:13 +02:00
|
|
|
|
Children = new[]
|
2016-12-06 18:54:32 +09:00
|
|
|
|
{
|
2022-11-09 16:04:56 +09:00
|
|
|
|
new SkinnableDrawable(new OsuSkinComponentLookup(OsuSkinComponents.SliderFollowCircle), _ => new DefaultFollowCircle())
|
2016-12-06 18:54:32 +09:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
2019-07-25 15:35:51 +09:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2016-12-06 18:54:32 +09:00
|
|
|
|
},
|
2022-11-09 16:04:56 +09:00
|
|
|
|
ball = new SkinnableDrawable(new OsuSkinComponentLookup(OsuSkinComponents.SliderBall), _ => new DefaultSliderBall())
|
2016-12-06 18:54:32 +09:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
2020-07-22 19:06:39 +09:00
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
},
|
2016-12-06 18:54:32 +09:00
|
|
|
|
};
|
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2018-01-03 13:55:24 +01:00
|
|
|
|
public override void ClearTransformsAfter(double time, bool propagateChildren = false, string targetMember = null)
|
2017-11-03 15:58:12 +09:00
|
|
|
|
{
|
|
|
|
|
// Consider the case of rewinding - children's transforms are handled internally, so propagating down
|
|
|
|
|
// any further will cause weirdness with the Tracking bool below. Let's not propagate further at this point.
|
2018-01-03 08:13:58 +01:00
|
|
|
|
base.ClearTransformsAfter(time, false, targetMember);
|
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-03-14 18:51:28 +09:00
|
|
|
|
public override void ApplyTransformsAt(double time, bool propagateChildren = false)
|
|
|
|
|
{
|
|
|
|
|
// For the same reasons as above w.r.t rewinding, we shouldn't propagate to children here either.
|
2022-10-29 18:09:27 +09:00
|
|
|
|
|
|
|
|
|
// ReSharper disable once RedundantArgumentDefaultValue
|
|
|
|
|
base.ApplyTransformsAt(time, false);
|
2019-03-14 18:51:28 +09:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-21 17:10:18 +09:00
|
|
|
|
public void UpdateProgress(double completionProgress)
|
2016-12-06 18:54:32 +09:00
|
|
|
|
{
|
2024-05-28 19:38:33 +02:00
|
|
|
|
Slider slider = drawableSlider.HitObject;
|
|
|
|
|
Position = slider.CurvePositionAt(completionProgress);
|
2022-05-12 17:55:12 +09:00
|
|
|
|
|
2024-05-28 19:38:33 +02:00
|
|
|
|
//0.1 / slider.Path.Distance is the additional progress needed to ensure the diff length is 0.1
|
|
|
|
|
var diff = slider.CurvePositionAt(completionProgress) - slider.CurvePositionAt(Math.Min(1, completionProgress + 0.1 / slider.Path.Distance));
|
2022-10-10 15:24:17 +09:00
|
|
|
|
|
2022-05-12 17:55:12 +09:00
|
|
|
|
// Ensure the value is substantially high enough to allow for Atan2 to get a valid angle.
|
2024-05-28 19:38:33 +02:00
|
|
|
|
// Needed for when near completion, or in case of a very short slider.
|
2022-05-12 17:55:12 +09:00
|
|
|
|
if (diff.LengthFast < 0.01f)
|
2019-08-20 13:18:34 +09:00
|
|
|
|
return;
|
2019-08-19 19:52:53 +09:00
|
|
|
|
|
2024-05-28 19:38:33 +02:00
|
|
|
|
ball.Rotation = -90 + (float)(-Math.Atan2(diff.X, diff.Y) * 180 / Math.PI);
|
2016-12-06 18:54:32 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-03 08:13:58 +01:00
|
|
|
|
}
|