mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 10:47:28 +08:00
58 lines
1.7 KiB
C#
58 lines
1.7 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.Osu.UI.Cursor;
|
|
using osu.Game.Skinning;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Skinning.Legacy
|
|
{
|
|
public class LegacyCursor : OsuCursorSprite
|
|
{
|
|
private readonly ISkin skin;
|
|
private bool spin;
|
|
|
|
public LegacyCursor(ISkin skin)
|
|
{
|
|
this.skin = skin;
|
|
Size = new Vector2(50);
|
|
|
|
Anchor = Anchor.Centre;
|
|
Origin = Anchor.Centre;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
bool centre = skin.GetConfig<OsuSkinConfiguration, bool>(OsuSkinConfiguration.CursorCentre)?.Value ?? true;
|
|
spin = skin.GetConfig<OsuSkinConfiguration, bool>(OsuSkinConfiguration.CursorRotate)?.Value ?? true;
|
|
|
|
InternalChildren = new[]
|
|
{
|
|
ExpandTarget = new NonPlayfieldSprite
|
|
{
|
|
Texture = skin.GetTexture("cursor"),
|
|
Anchor = Anchor.Centre,
|
|
Origin = centre ? Anchor.Centre : Anchor.TopLeft,
|
|
},
|
|
new NonPlayfieldSprite
|
|
{
|
|
Texture = skin.GetTexture("cursormiddle"),
|
|
Anchor = Anchor.Centre,
|
|
Origin = centre ? Anchor.Centre : Anchor.TopLeft,
|
|
},
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
if (spin)
|
|
ExpandTarget.Spin(10000, RotationDirection.Clockwise);
|
|
}
|
|
}
|
|
}
|