2018-10-29 13:07:06 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2018-11-09 12:58:46 +08:00
|
|
|
using osu.Framework.Allocation;
|
2018-10-29 13:07:06 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
2018-11-07 15:08:56 +08:00
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
|
2018-10-29 13:07:06 +08:00
|
|
|
{
|
2018-11-09 13:19:50 +08:00
|
|
|
public class PathControlPointVisualiser : SliderPiece
|
2018-10-29 13:07:06 +08:00
|
|
|
{
|
|
|
|
private readonly Slider slider;
|
|
|
|
|
2018-11-01 02:52:24 +08:00
|
|
|
private readonly Container<PathControlPointPiece> pieces;
|
2018-10-29 13:07:06 +08:00
|
|
|
|
2018-11-01 02:52:24 +08:00
|
|
|
public PathControlPointVisualiser(Slider slider)
|
2018-11-09 13:19:50 +08:00
|
|
|
: base(slider)
|
2018-10-29 13:07:06 +08:00
|
|
|
{
|
|
|
|
this.slider = slider;
|
|
|
|
|
2018-11-01 02:52:24 +08:00
|
|
|
InternalChild = pieces = new Container<PathControlPointPiece> { RelativeSizeAxes = Axes.Both };
|
2018-11-09 12:58:46 +08:00
|
|
|
}
|
2018-10-29 13:07:06 +08:00
|
|
|
|
2018-11-09 12:58:46 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2018-11-14 13:29:22 +08:00
|
|
|
PathBindable.BindValueChanged(_ => updatePathControlPoints(), true);
|
2018-10-29 13:07:06 +08:00
|
|
|
}
|
|
|
|
|
2018-11-01 02:52:24 +08:00
|
|
|
private void updatePathControlPoints()
|
2018-10-29 13:07:06 +08:00
|
|
|
{
|
2018-11-01 14:38:19 +08:00
|
|
|
while (slider.Path.ControlPoints.Length > pieces.Count)
|
2018-11-01 02:52:24 +08:00
|
|
|
pieces.Add(new PathControlPointPiece(slider, pieces.Count));
|
2018-11-01 14:38:19 +08:00
|
|
|
while (slider.Path.ControlPoints.Length < pieces.Count)
|
2018-10-29 13:07:06 +08:00
|
|
|
pieces.Remove(pieces[pieces.Count - 1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|