mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 05:17:29 +08:00
66 lines
2.1 KiB
C#
66 lines
2.1 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables.Pieces;
|
|
using OpenTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Spinners.Components
|
|
{
|
|
public class SpinnerPiece : HitObjectPiece
|
|
{
|
|
private readonly Spinner spinner;
|
|
private readonly CircularContainer circle;
|
|
private readonly RingPiece ring;
|
|
|
|
public SpinnerPiece(Spinner spinner)
|
|
: base(spinner)
|
|
{
|
|
this.spinner = spinner;
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
FillMode = FillMode.Fit;
|
|
Size = new Vector2(1.3f);
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
circle = new CircularContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Masking = true,
|
|
Alpha = 0.5f,
|
|
Child = new Box { RelativeSizeAxes = Axes.Both }
|
|
},
|
|
ring = new RingPiece
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre
|
|
}
|
|
};
|
|
|
|
ring.Scale = new Vector2(spinner.Scale);
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
Colour = colours.Yellow;
|
|
|
|
PositionBindable.BindValueChanged(_ => updatePosition(), true);
|
|
StackHeightBindable.BindValueChanged(_ => updatePosition());
|
|
ScaleBindable.BindValueChanged(v => ring.Scale = new Vector2(v), true);
|
|
}
|
|
|
|
private void updatePosition() => Position = spinner.Position;
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => circle.ReceivePositionalInputAt(screenSpacePos);
|
|
}
|
|
}
|