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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

111 lines
3.4 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
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Allocation;
2017-02-13 03:38:05 +08:00
using osu.Framework.Graphics;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Drawables;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
using osu.Framework.Graphics.Shapes;
using osu.Game.Skinning;
using osu.Framework.Graphics.Containers;
2018-04-13 17:19:50 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Osu.Objects.Drawables
2017-02-13 03:38:05 +08:00
{
public class DrawableSliderTick : DrawableOsuHitObject, IRequireTracking
2017-02-13 03:38:05 +08:00
{
2018-02-11 18:03:01 +08:00
public const double ANIM_DURATION = 150;
2018-04-13 17:19:50 +08:00
private const float default_tick_size = 16;
public bool Tracking { get; set; }
2018-04-13 17:19:50 +08:00
public override bool DisplayResult => false;
2018-04-13 17:19:50 +08:00
2020-12-03 19:03:39 +08:00
protected DrawableSlider DrawableSlider => (DrawableSlider)ParentHitObject;
2020-11-05 12:51:46 +08:00
private SkinnableDrawable scaleContainer;
2020-11-12 14:59:48 +08:00
public DrawableSliderTick()
: base(null)
{
}
2019-02-28 12:31:40 +08:00
public DrawableSliderTick(SliderTick sliderTick)
: base(sliderTick)
2020-11-05 12:51:46 +08:00
{
}
[BackgroundDependencyLoader]
private void load()
2017-02-13 03:38:05 +08:00
{
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
2017-02-13 03:38:05 +08:00
Origin = Anchor.Centre;
2018-04-13 17:19:50 +08:00
AddInternal(scaleContainer = new SkinnableDrawable(new OsuSkinComponent(OsuSkinComponents.SliderScorePoint), _ => new CircularContainer
2017-02-13 03:38:05 +08:00
{
Masking = true,
Origin = Anchor.Centre,
Size = new Vector2(default_tick_size),
BorderThickness = default_tick_size / 4,
BorderColour = Color4.White,
Child = new Box
2017-02-13 03:38:05 +08:00
{
RelativeSizeAxes = Axes.Both,
Colour = AccentColour.Value,
Alpha = 0.3f,
}
})
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
});
2020-11-12 14:59:48 +08:00
ScaleBindable.BindValueChanged(scale => scaleContainer.Scale = new Vector2(scale.NewValue));
}
2020-12-03 18:46:42 +08:00
protected override void OnApply()
{
base.OnApply();
2020-12-03 19:03:39 +08:00
Position = HitObject.Position - DrawableSlider.HitObject.Position;
}
protected override void CheckForResult(bool userTriggered, double timeOffset)
2017-02-13 03:38:05 +08:00
{
if (timeOffset >= 0)
2020-09-29 13:35:43 +08:00
ApplyResult(r => r.Type = Tracking ? r.Judgement.MaxResult : r.Judgement.MinResult);
2017-02-13 03:38:05 +08:00
}
2018-04-13 17:19:50 +08:00
2019-07-22 14:33:12 +08:00
protected override void UpdateInitialTransforms()
2017-02-13 03:38:05 +08:00
{
2018-03-06 16:33:42 +08:00
this.FadeOut().FadeIn(ANIM_DURATION);
this.ScaleTo(0.5f).ScaleTo(1f, ANIM_DURATION * 4, Easing.OutElasticHalf);
2017-02-13 03:38:05 +08:00
}
2018-04-13 17:19:50 +08:00
2020-11-04 15:19:07 +08:00
protected override void UpdateHitStateTransforms(ArmedState state)
2017-02-13 03:38:05 +08:00
{
2020-11-04 15:19:07 +08:00
base.UpdateHitStateTransforms(state);
2019-09-13 17:49:21 +08:00
2017-02-13 03:38:05 +08:00
switch (state)
{
case ArmedState.Idle:
2018-01-25 17:52:03 +08:00
this.Delay(HitObject.TimePreempt).FadeOut();
2017-02-13 03:38:05 +08:00
break;
2019-04-01 11:44:46 +08:00
2017-02-13 03:38:05 +08:00
case ArmedState.Miss:
2018-03-06 16:33:42 +08:00
this.FadeOut(ANIM_DURATION);
this.FadeColour(Color4.Red, ANIM_DURATION / 2);
2017-02-13 03:38:05 +08:00
break;
2019-04-01 11:44:46 +08:00
2017-02-13 03:38:05 +08:00
case ArmedState.Hit:
2018-03-06 16:33:42 +08:00
this.FadeOut(ANIM_DURATION, Easing.OutQuint);
this.ScaleTo(Scale * 1.5f, ANIM_DURATION, Easing.Out);
2017-02-13 03:38:05 +08:00
break;
}
}
}
}