1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 05:09:42 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Skinning/Legacy/LegacySliderBall.cs

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

101 lines
3.0 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.
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects.Drawables;
using osu.Game.Skinning;
using osuTK.Graphics;
2020-12-04 19:21:53 +08:00
namespace osu.Game.Rulesets.Osu.Skinning.Legacy
{
public class LegacySliderBall : CompositeDrawable
{
private readonly Drawable animationContent;
2021-06-08 11:10:14 +08:00
private readonly ISkin skin;
private DrawableSlider slider;
private Sprite layerNd;
private Sprite layerSpec;
2021-06-08 11:10:14 +08:00
public LegacySliderBall(Drawable animationContent, ISkin skin)
{
this.animationContent = animationContent;
2021-06-08 11:10:14 +08:00
this.skin = skin;
2020-04-02 18:30:58 +08:00
AutoSizeAxes = Axes.Both;
}
[BackgroundDependencyLoader]
private void load(DrawableHitObject dho)
{
slider = (DrawableSlider)dho;
2020-08-21 23:20:33 +08:00
var ballColour = skin.GetConfig<OsuSkinColour, Color4>(OsuSkinColour.SliderBall)?.Value ?? Color4.White;
InternalChildren = new[]
{
layerNd = new Sprite
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Texture = skin.GetTexture("sliderb-nd"),
Colour = new Color4(5, 5, 5, 255),
},
2020-08-25 14:16:41 +08:00
LegacyColourCompatibility.ApplyWithDoubledAlpha(animationContent.With(d =>
{
d.Anchor = Anchor.Centre;
d.Origin = Anchor.Centre;
2020-08-25 14:16:41 +08:00
}), ballColour),
layerSpec = new Sprite
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Texture = skin.GetTexture("sliderb-spec"),
Blending = BlendingParameters.Additive,
},
};
slider.ApplyCustomUpdateState += updateStateTransforms;
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
//undo rotation on layers which should not be rotated.
float appliedRotation = Parent.Rotation;
layerNd.Rotation = -appliedRotation;
layerSpec.Rotation = -appliedRotation;
}
private void updateStateTransforms(DrawableHitObject obj, ArmedState _)
{
if (obj is not DrawableSlider)
return;
using (BeginAbsoluteSequence(slider.StateUpdateTime))
this.FadeIn();
using (BeginAbsoluteSequence(slider.HitStateUpdateTime))
this.FadeOut();
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
if (slider != null)
slider.ApplyCustomUpdateState -= updateStateTransforms;
}
}
}