2020-11-05 17:00:26 +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.
|
|
|
|
|
2020-11-05 17:12:13 +08:00
|
|
|
using System;
|
2020-11-05 17:00:26 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-11-05 17:12:13 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2020-11-05 17:00:26 +08:00
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
2020-11-05 17:12:13 +08:00
|
|
|
using osu.Game.Skinning;
|
2020-11-05 18:05:59 +08:00
|
|
|
using osuTK;
|
2020-11-05 17:00:26 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Skinning
|
|
|
|
{
|
|
|
|
public abstract class LegacySpinner : CompositeDrawable
|
|
|
|
{
|
2020-11-05 18:05:59 +08:00
|
|
|
protected const float SPRITE_SCALE = 0.625f;
|
|
|
|
|
2020-11-05 17:00:26 +08:00
|
|
|
protected DrawableSpinner DrawableSpinner { get; private set; }
|
|
|
|
|
2020-11-05 17:12:13 +08:00
|
|
|
private Sprite spin;
|
|
|
|
|
2020-11-05 17:00:26 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2020-11-05 17:12:13 +08:00
|
|
|
private void load(DrawableHitObject drawableHitObject, ISkinSource source)
|
2020-11-05 17:00:26 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
DrawableSpinner = (DrawableSpinner)drawableHitObject;
|
2020-11-05 17:12:13 +08:00
|
|
|
|
|
|
|
AddRangeInternal(new[]
|
|
|
|
{
|
|
|
|
spin = new Sprite
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Depth = float.MinValue,
|
|
|
|
Texture = source.GetTexture("spinner-spin"),
|
2020-11-05 18:05:59 +08:00
|
|
|
Scale = new Vector2(SPRITE_SCALE),
|
2020-11-05 17:12:13 +08:00
|
|
|
Y = 120 // todo: make match roughly?
|
|
|
|
},
|
|
|
|
});
|
2020-11-05 17:00:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
DrawableSpinner.ApplyCustomUpdateState += UpdateStateTransforms;
|
|
|
|
UpdateStateTransforms(DrawableSpinner, DrawableSpinner.State.Value);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void UpdateStateTransforms(DrawableHitObject drawableHitObject, ArmedState state)
|
|
|
|
{
|
2020-11-05 17:12:13 +08:00
|
|
|
switch (drawableHitObject)
|
|
|
|
{
|
|
|
|
case DrawableSpinner d:
|
|
|
|
double fadeOutLength = Math.Min(400, d.HitObject.Duration);
|
|
|
|
|
|
|
|
using (BeginAbsoluteSequence(drawableHitObject.HitStateUpdateTime - fadeOutLength, true))
|
|
|
|
spin.FadeOutFromOne(fadeOutLength);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DrawableSpinnerTick d:
|
|
|
|
if (state == ArmedState.Hit)
|
|
|
|
{
|
|
|
|
using (BeginAbsoluteSequence(d.HitStateUpdateTime, true))
|
|
|
|
spin.FadeOut(300);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2020-11-05 17:00:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
|
|
|
if (DrawableSpinner != null)
|
|
|
|
DrawableSpinner.ApplyCustomUpdateState -= UpdateStateTransforms;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|