2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-11 12:14:34 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-03-27 18:29:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2020-04-11 12:14:34 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2020-12-07 11:30:25 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-12-07 11:30:25 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Skinning.Default
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-04-11 12:14:34 +08:00
|
|
|
|
public class SwellCirclePiece : CirclePiece
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-04-11 12:14:34 +08:00
|
|
|
|
public SwellCirclePiece()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-04-11 12:14:34 +08:00
|
|
|
|
Add(new SwellSymbolPiece());
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-11 12:14:34 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
AccentColour = colours.YellowDark;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-11 12:14:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The symbol used for swell pieces.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class SwellSymbolPiece : Container
|
|
|
|
|
{
|
|
|
|
|
public SwellSymbolPiece()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-04-11 12:14:34 +08:00
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
Size = new Vector2(SYMBOL_SIZE);
|
|
|
|
|
Padding = new MarginPadding(SYMBOL_BORDER);
|
|
|
|
|
|
|
|
|
|
Children = new[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-04-11 12:14:34 +08:00
|
|
|
|
new SpriteIcon
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Icon = FontAwesome.Solid.Asterisk,
|
|
|
|
|
Shadow = false
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|