1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableSliderRepeat.cs

156 lines
5.2 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;
using System.Collections.Generic;
using osu.Framework.Allocation;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects.Drawables.Pieces;
using osu.Game.Skinning;
2019-09-06 14:24:00 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Osu.Objects.Drawables
{
public class DrawableSliderRepeat : DrawableOsuHitObject, ITrackSnaking
2018-04-13 17:19:50 +08:00
{
2020-11-12 14:59:48 +08:00
public new SliderRepeat HitObject => (SliderRepeat)base.HitObject;
2018-04-13 17:19:50 +08:00
private double animDuration;
2020-11-05 12:51:46 +08:00
public Drawable CirclePiece { get; private set; }
private Drawable scaleContainer;
private ReverseArrowPiece arrow;
public override bool DisplayResult => false;
2020-11-12 14:59:48 +08:00
private DrawableSlider drawableSlider;
public DrawableSliderRepeat()
: base(null)
{
}
public DrawableSliderRepeat(SliderRepeat sliderRepeat)
2020-03-19 13:42:02 +08:00
: base(sliderRepeat)
2018-04-13 17:19:50 +08:00
{
2020-11-05 12:51:46 +08:00
}
2018-04-13 17:19:50 +08:00
2020-11-05 12:51:46 +08:00
[BackgroundDependencyLoader]
private void load()
{
2018-04-13 17:19:50 +08:00
Origin = Anchor.Centre;
2020-11-05 12:51:46 +08:00
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
2018-04-13 17:19:50 +08:00
InternalChild = scaleContainer = new Container
{
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Children = new[]
{
// no default for this; only visible in legacy skins.
CirclePiece = new SkinnableDrawable(new OsuSkinComponent(OsuSkinComponents.SliderTailHitCircle), _ => Empty()),
arrow = new ReverseArrowPiece(),
}
};
2018-04-13 17:19:50 +08:00
2020-11-12 14:59:48 +08:00
ScaleBindable.BindValueChanged(scale => scaleContainer.Scale = new Vector2(scale.NewValue));
}
protected override void OnParentReceived(DrawableHitObject parent)
{
base.OnParentReceived(parent);
drawableSlider = (DrawableSlider)parent;
Position = HitObject.Position - drawableSlider.Position;
}
protected override void CheckForResult(bool userTriggered, double timeOffset)
2018-04-13 17:19:50 +08:00
{
2020-11-12 14:59:48 +08:00
if (HitObject.StartTime <= Time.Current)
2020-09-29 13:35:43 +08:00
ApplyResult(r => r.Type = drawableSlider.Tracking.Value ? r.Judgement.MaxResult : r.Judgement.MinResult);
2018-04-13 17:19:50 +08:00
}
2019-07-22 14:33:12 +08:00
protected override void UpdateInitialTransforms()
2018-04-13 17:19:50 +08:00
{
2020-11-12 14:59:48 +08:00
animDuration = Math.Min(300, HitObject.SpanDuration);
2018-04-13 17:19:50 +08:00
this.Animate(
d => d.FadeIn(animDuration),
d => d.ScaleTo(0.5f).ScaleTo(1f, animDuration * 2, Easing.OutElasticHalf)
);
2018-04-13 17:19:50 +08:00
}
2020-11-04 15:19:07 +08:00
protected override void UpdateHitStateTransforms(ArmedState state)
2018-04-13 17:19:50 +08:00
{
2020-11-04 15:19:07 +08:00
base.UpdateHitStateTransforms(state);
2019-09-13 17:49:21 +08:00
2018-04-13 17:19:50 +08:00
switch (state)
{
case ArmedState.Idle:
this.Delay(HitObject.TimePreempt).FadeOut();
break;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case ArmedState.Miss:
this.FadeOut(animDuration);
break;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case ArmedState.Hit:
2020-01-04 15:21:48 +08:00
this.FadeOut(animDuration, Easing.Out)
2018-04-13 17:19:50 +08:00
.ScaleTo(Scale * 1.5f, animDuration, Easing.Out);
break;
}
}
private bool hasRotation;
2018-04-13 17:19:50 +08:00
public void UpdateSnakingPosition(Vector2 start, Vector2 end)
{
2020-03-30 17:35:01 +08:00
// When the repeat is hit, the arrow should fade out on spot rather than following the slider
2020-03-29 05:12:13 +08:00
if (IsHit) return;
2020-11-12 14:59:48 +08:00
bool isRepeatAtEnd = HitObject.RepeatIndex % 2 == 0;
List<Vector2> curve = ((PlaySliderBody)drawableSlider.Body.Drawable).CurrentCurve;
2018-04-13 17:19:50 +08:00
Position = isRepeatAtEnd ? end : start;
if (curve.Count < 2)
return;
int searchStart = isRepeatAtEnd ? curve.Count - 1 : 0;
int direction = isRepeatAtEnd ? -1 : 1;
Vector2 aimRotationVector = Vector2.Zero;
2018-04-13 17:19:50 +08:00
// find the next vector2 in the curve which is not equal to our current position to infer a rotation.
for (int i = searchStart; i >= 0 && i < curve.Count; i += direction)
{
if (Precision.AlmostEquals(curve[i], Position))
2018-04-13 17:19:50 +08:00
continue;
aimRotationVector = curve[i];
2018-04-13 17:19:50 +08:00
break;
}
float aimRotation = MathUtils.RadiansToDegrees(MathF.Atan2(aimRotationVector.Y - Position.Y, aimRotationVector.X - Position.X));
while (Math.Abs(aimRotation - arrow.Rotation) > 180)
aimRotation += aimRotation < arrow.Rotation ? 360 : -360;
if (!hasRotation)
{
arrow.Rotation = aimRotation;
hasRotation = true;
}
else
{
2018-07-31 15:47:13 +08:00
// If we're already snaking, interpolate to smooth out sharp curves (linear sliders, mainly).
arrow.Rotation = Interpolation.ValueAt(Math.Clamp(Clock.ElapsedFrameTime, 0, 100), arrow.Rotation, aimRotation, 0, 50, Easing.OutQuint);
}
2018-04-13 17:19:50 +08:00
}
}
}