osu/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.

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