mirror of
https://github.com/ppy/osu.git
synced 2025-01-16 08:52:57 +08:00
40 lines
1.3 KiB
C#
40 lines
1.3 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.Game.Rulesets.Osu.Objects;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
|
|
{
|
|
public class PathControlPointVisualiser : SliderPiece
|
|
{
|
|
private readonly Slider slider;
|
|
|
|
private readonly Container<PathControlPointPiece> pieces;
|
|
|
|
public PathControlPointVisualiser(Slider slider)
|
|
: base(slider)
|
|
{
|
|
this.slider = slider;
|
|
|
|
InternalChild = pieces = new Container<PathControlPointPiece> { RelativeSizeAxes = Axes.Both };
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
PathBindable.BindValueChanged(_ => updatePathControlPoints(), true);
|
|
}
|
|
|
|
private void updatePathControlPoints()
|
|
{
|
|
while (slider.Path.ControlPoints.Length > pieces.Count)
|
|
pieces.Add(new PathControlPointPiece(slider, pieces.Count));
|
|
while (slider.Path.ControlPoints.Length < pieces.Count)
|
|
pieces.Remove(pieces[pieces.Count - 1]);
|
|
}
|
|
}
|
|
}
|