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-10-03 13:35:26 +08:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables.Pieces;
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK;
|
2018-10-03 13:35:26 +08:00
|
|
|
|
2018-11-07 15:08:56 +08:00
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components
|
2018-10-03 13:35:26 +08:00
|
|
|
{
|
2018-11-09 13:19:50 +08:00
|
|
|
public class HitCirclePiece : HitObjectPiece
|
2018-10-03 13:35:26 +08:00
|
|
|
{
|
2018-10-25 17:16:25 +08:00
|
|
|
private readonly HitCircle hitCircle;
|
2018-10-03 15:27:26 +08:00
|
|
|
|
2018-10-26 12:51:03 +08:00
|
|
|
public HitCirclePiece(HitCircle hitCircle)
|
2018-11-09 13:19:50 +08:00
|
|
|
: base(hitCircle)
|
2018-10-03 13:35:26 +08:00
|
|
|
{
|
2018-10-03 15:27:26 +08:00
|
|
|
this.hitCircle = hitCircle;
|
2018-10-03 13:35:26 +08:00
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
|
|
Size = new Vector2((float)OsuHitObject.OBJECT_RADIUS * 2);
|
2018-10-03 13:35:26 +08:00
|
|
|
Scale = new Vector2(hitCircle.Scale);
|
2018-10-03 13:35:26 +08:00
|
|
|
CornerRadius = Size.X / 2;
|
|
|
|
|
2018-10-25 17:16:25 +08:00
|
|
|
InternalChild = new RingPiece();
|
2018-10-03 13:35:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
Colour = colours.Yellow;
|
2018-10-25 17:16:25 +08:00
|
|
|
|
2018-11-09 13:19:50 +08:00
|
|
|
PositionBindable.BindValueChanged(_ => UpdatePosition(), true);
|
|
|
|
StackHeightBindable.BindValueChanged(_ => UpdatePosition());
|
2019-02-22 19:13:38 +08:00
|
|
|
ScaleBindable.BindValueChanged(scale => Scale = new Vector2(scale.NewValue), true);
|
2018-10-03 13:35:26 +08:00
|
|
|
}
|
2018-10-03 15:27:26 +08:00
|
|
|
|
2018-10-25 17:16:25 +08:00
|
|
|
protected virtual void UpdatePosition() => Position = hitCircle.StackedPosition;
|
2018-10-03 13:35:26 +08:00
|
|
|
}
|
|
|
|
}
|