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-12-09 23:07:07 +08:00
|
|
|
using System;
|
2019-10-31 15:25:26 +08:00
|
|
|
using System.Collections.Generic;
|
2020-04-13 15:13:14 +08:00
|
|
|
using System.Collections.Specialized;
|
2019-11-12 17:35:28 +08:00
|
|
|
using System.Linq;
|
2019-11-13 16:36:46 +08:00
|
|
|
using Humanizer;
|
2020-11-05 14:05:43 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-12-09 19:49:59 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-10-29 13:07:06 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-11-12 17:35:28 +08:00
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2019-10-31 16:25:30 +08:00
|
|
|
using osu.Framework.Input;
|
2019-11-05 12:26:44 +08:00
|
|
|
using osu.Framework.Input.Bindings;
|
2019-10-31 15:23:54 +08:00
|
|
|
using osu.Framework.Input.Events;
|
2019-11-12 17:35:28 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
2019-12-06 16:03:54 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
2019-12-09 23:07:07 +08:00
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2018-10-29 13:07:06 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2020-11-05 14:05:43 +08:00
|
|
|
using osu.Game.Screens.Edit;
|
2020-11-20 12:46:21 +08:00
|
|
|
using osuTK;
|
2019-11-13 16:28:18 +08:00
|
|
|
using osuTK.Input;
|
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-11-12 17:35:28 +08:00
|
|
|
public class PathControlPointVisualiser : CompositeDrawable, IKeyBindingHandler<PlatformAction>, IHasContextMenu
|
2018-10-29 13:07:06 +08:00
|
|
|
{
|
2020-11-20 12:46:21 +08:00
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true; // allow context menu to appear outside of the playfield.
|
|
|
|
|
2019-10-31 16:25:30 +08:00
|
|
|
internal readonly Container<PathControlPointPiece> Pieces;
|
2020-04-13 15:13:14 +08:00
|
|
|
internal readonly Container<PathControlPointConnectionPiece> Connections;
|
2019-12-10 10:20:08 +08:00
|
|
|
|
2020-04-13 15:13:14 +08:00
|
|
|
private readonly IBindableList<PathControlPoint> controlPoints = new BindableList<PathControlPoint>();
|
2019-10-31 15:51:58 +08:00
|
|
|
private readonly Slider slider;
|
2019-11-03 18:59:37 +08:00
|
|
|
private readonly bool allowSelection;
|
2018-10-29 13:07:06 +08:00
|
|
|
|
2019-10-31 16:25:30 +08:00
|
|
|
private InputManager inputManager;
|
|
|
|
|
2019-12-11 17:52:38 +08:00
|
|
|
public Action<List<PathControlPoint>> RemoveControlPointsRequested;
|
|
|
|
|
2019-11-03 18:59:37 +08:00
|
|
|
public PathControlPointVisualiser(Slider slider, bool allowSelection)
|
2018-10-29 13:07:06 +08:00
|
|
|
{
|
|
|
|
this.slider = slider;
|
2019-11-03 18:59:37 +08:00
|
|
|
this.allowSelection = allowSelection;
|
2018-10-29 13:07:06 +08:00
|
|
|
|
2019-10-31 15:23:54 +08:00
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
2019-12-10 10:20:08 +08:00
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
2020-04-13 15:13:14 +08:00
|
|
|
Connections = new Container<PathControlPointConnectionPiece> { RelativeSizeAxes = Axes.Both },
|
2019-12-10 10:20:08 +08:00
|
|
|
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-12-09 19:49:59 +08:00
|
|
|
|
2020-04-13 15:13:14 +08:00
|
|
|
controlPoints.CollectionChanged += onControlPointsChanged;
|
|
|
|
controlPoints.BindTo(slider.Path.ControlPoints);
|
2019-12-09 19:49:59 +08:00
|
|
|
}
|
2019-10-31 16:13:10 +08:00
|
|
|
|
2020-04-13 15:13:14 +08:00
|
|
|
private void onControlPointsChanged(object sender, NotifyCollectionChangedEventArgs e)
|
2019-12-09 19:49:59 +08:00
|
|
|
{
|
2020-04-13 15:13:14 +08:00
|
|
|
switch (e.Action)
|
2019-12-10 10:20:08 +08:00
|
|
|
{
|
2020-04-13 15:13:14 +08:00
|
|
|
case NotifyCollectionChangedAction.Add:
|
2020-11-18 05:23:46 +08:00
|
|
|
// If inserting in the path (not appending),
|
2020-11-17 04:26:08 +08:00
|
|
|
// update indices of existing connections after insert location
|
|
|
|
if (e.NewStartingIndex < Pieces.Count)
|
|
|
|
{
|
|
|
|
foreach (var connection in Connections)
|
|
|
|
{
|
|
|
|
if (connection.ControlPointIndex >= e.NewStartingIndex)
|
|
|
|
connection.ControlPointIndex += e.NewItems.Count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-13 15:13:14 +08:00
|
|
|
for (int i = 0; i < e.NewItems.Count; i++)
|
|
|
|
{
|
|
|
|
var point = (PathControlPoint)e.NewItems[i];
|
|
|
|
|
|
|
|
Pieces.Add(new PathControlPointPiece(slider, point).With(d =>
|
|
|
|
{
|
|
|
|
if (allowSelection)
|
|
|
|
d.RequestSelection = selectPiece;
|
|
|
|
}));
|
|
|
|
|
|
|
|
Connections.Add(new PathControlPointConnectionPiece(slider, e.NewStartingIndex + i));
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NotifyCollectionChangedAction.Remove:
|
|
|
|
foreach (var point in e.OldItems.Cast<PathControlPoint>())
|
|
|
|
{
|
|
|
|
Pieces.RemoveAll(p => p.ControlPoint == point);
|
|
|
|
Connections.RemoveAll(c => c.ControlPoint == point);
|
|
|
|
}
|
|
|
|
|
2020-11-17 04:26:08 +08:00
|
|
|
// If removing before the end of the path,
|
|
|
|
// update indices of connections after remove location
|
2020-11-18 06:04:38 +08:00
|
|
|
if (e.OldStartingIndex < Pieces.Count)
|
2020-11-17 04:26:08 +08:00
|
|
|
{
|
|
|
|
foreach (var connection in Connections)
|
|
|
|
{
|
|
|
|
if (connection.ControlPointIndex >= e.OldStartingIndex)
|
|
|
|
connection.ControlPointIndex -= e.OldItems.Count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-13 15:13:14 +08:00
|
|
|
break;
|
2019-12-10 10:20:08 +08:00
|
|
|
}
|
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-12-11 17:18:16 +08:00
|
|
|
{
|
2019-10-31 16:13:10 +08:00
|
|
|
piece.IsSelected.Value = false;
|
2019-12-11 17:18:16 +08:00
|
|
|
}
|
|
|
|
|
2019-10-31 16:13:10 +08:00
|
|
|
return false;
|
|
|
|
}
|
2019-10-31 15:23:54 +08:00
|
|
|
|
2019-11-12 17:35:28 +08:00
|
|
|
public bool OnPressed(PlatformAction action)
|
2019-10-31 16:13:10 +08:00
|
|
|
{
|
2021-07-20 13:23:34 +08:00
|
|
|
switch (action)
|
2019-11-12 17:35:28 +08:00
|
|
|
{
|
2021-07-20 13:23:34 +08:00
|
|
|
case PlatformAction.Delete:
|
2020-11-03 19:45:48 +08:00
|
|
|
return DeleteSelected();
|
2019-11-12 17:35:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-22 12:22:34 +08:00
|
|
|
public void OnReleased(PlatformAction action)
|
|
|
|
{
|
|
|
|
}
|
2019-11-12 17:35:28 +08:00
|
|
|
|
2019-12-09 19:49:59 +08:00
|
|
|
private void selectPiece(PathControlPointPiece piece, MouseButtonEvent e)
|
2019-10-31 16:13:10 +08:00
|
|
|
{
|
2019-11-13 16:28:18 +08:00
|
|
|
if (e.Button == MouseButton.Left && inputManager.CurrentState.Keyboard.ControlPressed)
|
2019-12-09 19:49:59 +08:00
|
|
|
piece.IsSelected.Toggle();
|
2019-10-31 16:25:30 +08:00
|
|
|
else
|
|
|
|
{
|
2019-12-09 19:49:59 +08:00
|
|
|
foreach (var p in Pieces)
|
|
|
|
p.IsSelected.Value = p == piece;
|
2019-10-31 16:25:30 +08:00
|
|
|
}
|
2019-10-31 15:23:54 +08:00
|
|
|
}
|
2019-10-31 15:25:26 +08:00
|
|
|
|
2021-04-08 15:05:35 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Attempts to set the given control point piece to the given path type.
|
|
|
|
/// If that would fail, try to change the path such that it instead succeeds
|
|
|
|
/// in a UX-friendly way.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="piece">The control point piece that we want to change the path type of.</param>
|
|
|
|
/// <param name="type">The path type we want to assign to the given control point piece.</param>
|
|
|
|
private void updatePathType(PathControlPointPiece piece, PathType? type)
|
|
|
|
{
|
2021-04-08 15:06:28 +08:00
|
|
|
int indexInSegment = piece.PointsInSegment.IndexOf(piece.ControlPoint);
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case PathType.PerfectCurve:
|
2021-04-08 17:46:00 +08:00
|
|
|
// Can't always create a circular arc out of 4 or more points,
|
|
|
|
// so we split the segment into one 3-point circular arc segment
|
2021-04-09 17:04:00 +08:00
|
|
|
// and one segment of the previous type.
|
2021-04-08 17:46:00 +08:00
|
|
|
int thirdPointIndex = indexInSegment + 2;
|
|
|
|
|
|
|
|
if (piece.PointsInSegment.Count > thirdPointIndex + 1)
|
2021-04-09 17:04:00 +08:00
|
|
|
piece.PointsInSegment[thirdPointIndex].Type.Value = piece.PointsInSegment[0].Type.Value;
|
2021-04-08 15:06:28 +08:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-04-08 15:05:35 +08:00
|
|
|
piece.ControlPoint.Type.Value = type;
|
|
|
|
}
|
|
|
|
|
2020-11-05 14:05:43 +08:00
|
|
|
[Resolved(CanBeNull = true)]
|
|
|
|
private IEditorChangeHandler changeHandler { get; set; }
|
|
|
|
|
2020-11-03 19:45:48 +08:00
|
|
|
public bool DeleteSelected()
|
2019-10-31 15:25:26 +08:00
|
|
|
{
|
2019-12-09 19:49:59 +08:00
|
|
|
List<PathControlPoint> toRemove = Pieces.Where(p => p.IsSelected.Value).Select(p => p.ControlPoint).ToList();
|
2019-10-31 15:25:26 +08:00
|
|
|
|
2019-11-12 17:35:28 +08:00
|
|
|
// Ensure that there are any points to be deleted
|
2019-12-06 16:03:54 +08:00
|
|
|
if (toRemove.Count == 0)
|
2019-11-12 17:35:28 +08:00
|
|
|
return false;
|
2019-10-31 15:25:26 +08:00
|
|
|
|
2020-11-05 14:05:43 +08:00
|
|
|
changeHandler?.BeginChange();
|
2019-12-11 17:52:38 +08:00
|
|
|
RemoveControlPointsRequested?.Invoke(toRemove);
|
2020-11-05 14:05:43 +08:00
|
|
|
changeHandler?.EndChange();
|
2019-12-09 16:54:19 +08:00
|
|
|
|
2019-11-12 17:35:28 +08:00
|
|
|
// Since pieces are re-used, they will not point to the deleted control points while remaining selected
|
|
|
|
foreach (var piece in Pieces)
|
|
|
|
piece.IsSelected.Value = false;
|
2019-10-31 15:25:26 +08:00
|
|
|
|
2019-11-12 17:35:28 +08:00
|
|
|
return true;
|
|
|
|
}
|
2019-10-31 15:25:26 +08:00
|
|
|
|
2019-11-12 17:35:28 +08:00
|
|
|
public MenuItem[] ContextMenuItems
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2019-11-13 16:38:34 +08:00
|
|
|
if (!Pieces.Any(p => p.IsHovered))
|
|
|
|
return null;
|
2019-10-31 16:58:33 +08:00
|
|
|
|
2019-12-11 17:18:16 +08:00
|
|
|
var selectedPieces = Pieces.Where(p => p.IsSelected.Value).ToList();
|
|
|
|
int count = selectedPieces.Count;
|
2019-10-31 16:58:33 +08:00
|
|
|
|
2019-12-11 17:18:16 +08:00
|
|
|
if (count == 0)
|
2019-11-13 15:56:48 +08:00
|
|
|
return null;
|
2019-10-31 15:25:26 +08:00
|
|
|
|
2019-12-11 17:18:16 +08:00
|
|
|
List<MenuItem> items = new List<MenuItem>();
|
|
|
|
|
|
|
|
if (!selectedPieces.Contains(Pieces[0]))
|
|
|
|
items.Add(createMenuItemForPathType(null));
|
|
|
|
|
|
|
|
// todo: hide/disable items which aren't valid for selected points
|
|
|
|
items.Add(createMenuItemForPathType(PathType.Linear));
|
|
|
|
items.Add(createMenuItemForPathType(PathType.PerfectCurve));
|
|
|
|
items.Add(createMenuItemForPathType(PathType.Bezier));
|
|
|
|
items.Add(createMenuItemForPathType(PathType.Catmull));
|
|
|
|
|
2019-11-12 17:35:28 +08:00
|
|
|
return new MenuItem[]
|
|
|
|
{
|
2020-11-03 19:45:48 +08:00
|
|
|
new OsuMenuItem($"Delete {"control point".ToQuantity(count, count > 1 ? ShowQuantityAs.Numeric : ShowQuantityAs.None)}", MenuItemType.Destructive, () => DeleteSelected()),
|
2019-12-11 17:20:28 +08:00
|
|
|
new OsuMenuItem("Curve type")
|
2019-12-09 23:07:07 +08:00
|
|
|
{
|
2019-12-11 17:18:16 +08:00
|
|
|
Items = items
|
2019-12-09 23:07:07 +08:00
|
|
|
}
|
2019-11-12 17:35:28 +08:00
|
|
|
};
|
2019-10-31 15:25:26 +08:00
|
|
|
}
|
|
|
|
}
|
2019-12-09 23:07:07 +08:00
|
|
|
|
|
|
|
private MenuItem createMenuItemForPathType(PathType? type)
|
|
|
|
{
|
|
|
|
int totalCount = Pieces.Count(p => p.IsSelected.Value);
|
|
|
|
int countOfState = Pieces.Where(p => p.IsSelected.Value).Count(p => p.ControlPoint.Type.Value == type);
|
|
|
|
|
2021-05-20 18:34:53 +08:00
|
|
|
var item = new TernaryStateRadioMenuItem(type == null ? "Inherit" : type.ToString().Humanize(), MenuItemType.Standard, _ =>
|
2019-12-09 23:07:07 +08:00
|
|
|
{
|
|
|
|
foreach (var p in Pieces.Where(p => p.IsSelected.Value))
|
2021-04-08 15:05:35 +08:00
|
|
|
updatePathType(p, type);
|
2019-12-09 23:07:07 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
if (countOfState == totalCount)
|
|
|
|
item.State.Value = TernaryState.True;
|
|
|
|
else if (countOfState > 0)
|
|
|
|
item.State.Value = TernaryState.Indeterminate;
|
|
|
|
else
|
|
|
|
item.State.Value = TernaryState.False;
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
2018-10-29 13:07:06 +08:00
|
|
|
}
|
|
|
|
}
|