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-29 13:07:06 +08:00
|
|
|
|
2019-10-24 18:02:59 +08:00
|
|
|
using System;
|
2018-10-29 13:07:06 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-10-31 16:25:30 +08:00
|
|
|
using osu.Framework.Input;
|
2019-10-31 15:23:54 +08:00
|
|
|
using osu.Framework.Input.Events;
|
2018-10-29 13:07:06 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2019-10-24 18:02:59 +08:00
|
|
|
using osuTK;
|
2018-10-29 13:07:06 +08:00
|
|
|
|
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
|
|
|
{
|
2019-09-27 17:01:55 +08:00
|
|
|
public class PathControlPointVisualiser : CompositeDrawable
|
2018-10-29 13:07:06 +08:00
|
|
|
{
|
2019-10-24 18:02:59 +08:00
|
|
|
public Action<Vector2[]> ControlPointsChanged;
|
|
|
|
|
2019-10-31 16:25:30 +08:00
|
|
|
internal readonly Container<PathControlPointPiece> Pieces;
|
2019-10-31 15:51:58 +08:00
|
|
|
private readonly Slider slider;
|
2018-10-29 13:07:06 +08:00
|
|
|
|
2019-10-31 16:25:30 +08:00
|
|
|
private InputManager inputManager;
|
|
|
|
|
2018-11-01 02:52:24 +08:00
|
|
|
public PathControlPointVisualiser(Slider slider)
|
2018-10-29 13:07:06 +08:00
|
|
|
{
|
|
|
|
this.slider = slider;
|
|
|
|
|
2019-10-31 15:23:54 +08:00
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
2019-10-31 15:51:58 +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
|
|
|
|
2019-10-31 16:25:30 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
inputManager = GetContainingInputManager();
|
|
|
|
}
|
|
|
|
|
2019-09-27 17:00:24 +08:00
|
|
|
protected override void Update()
|
2018-11-09 12:58:46 +08:00
|
|
|
{
|
2019-09-27 17:00:24 +08:00
|
|
|
base.Update();
|
2018-10-29 13:07:06 +08:00
|
|
|
|
2019-10-31 15:51:58 +08:00
|
|
|
while (slider.Path.ControlPoints.Length > Pieces.Count)
|
2019-10-31 16:13:10 +08:00
|
|
|
{
|
|
|
|
Pieces.Add(new PathControlPointPiece(slider, Pieces.Count)
|
|
|
|
{
|
|
|
|
ControlPointsChanged = c => ControlPointsChanged?.Invoke(c),
|
|
|
|
RequestSelection = selectPiece
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-10-31 15:51:58 +08:00
|
|
|
while (slider.Path.ControlPoints.Length < Pieces.Count)
|
|
|
|
Pieces.Remove(Pieces[Pieces.Count - 1]);
|
2018-10-29 13:07:06 +08:00
|
|
|
}
|
2019-10-31 15:23:54 +08:00
|
|
|
|
2019-10-31 16:13:10 +08:00
|
|
|
protected override bool OnClick(ClickEvent e)
|
2019-10-31 15:23:54 +08:00
|
|
|
{
|
2019-10-31 15:51:58 +08:00
|
|
|
foreach (var piece in Pieces)
|
2019-10-31 16:13:10 +08:00
|
|
|
piece.IsSelected.Value = false;
|
|
|
|
return false;
|
|
|
|
}
|
2019-10-31 15:23:54 +08:00
|
|
|
|
2019-10-31 16:13:10 +08:00
|
|
|
private void selectPiece(int index)
|
|
|
|
{
|
2019-10-31 16:25:30 +08:00
|
|
|
if (inputManager.CurrentState.Keyboard.ControlPressed)
|
|
|
|
Pieces[index].IsSelected.Value = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
foreach (var piece in Pieces)
|
|
|
|
piece.IsSelected.Value = piece.Index == index;
|
|
|
|
}
|
2019-10-31 15:23:54 +08:00
|
|
|
}
|
2018-10-29 13:07:06 +08:00
|
|
|
}
|
|
|
|
}
|