1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 22:47:26 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Edit/Blueprints/Sliders/Components/PathControlPointVisualiser.cs

163 lines
5.2 KiB
C#
Raw Normal View History

// 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.
using System;
using System.Collections.Generic;
using System.Linq;
2019-11-13 16:36:46 +08:00
using Humanizer;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.UserInterface;
2019-10-31 16:25:30 +08:00
using osu.Framework.Input;
using osu.Framework.Input.Bindings;
2019-10-31 15:23:54 +08:00
using osu.Framework.Input.Events;
using osu.Game.Graphics.UserInterface;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Screens.Edit.Compose;
using osuTK;
using osuTK.Input;
2018-11-07 15:08:56 +08:00
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
{
public class PathControlPointVisualiser : CompositeDrawable, IKeyBindingHandler<PlatformAction>, IHasContextMenu
{
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;
private readonly bool allowSelection;
2019-10-31 16:25:30 +08:00
private InputManager inputManager;
[Resolved(CanBeNull = true)]
private IPlacementHandler placementHandler { get; set; }
public PathControlPointVisualiser(Slider slider, bool allowSelection)
{
this.slider = slider;
this.allowSelection = allowSelection;
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
}
2019-10-31 16:25:30 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
inputManager = GetContainingInputManager();
}
protected override void Update()
2018-11-09 12:58:46 +08:00
{
base.Update();
2019-10-31 15:51:58 +08:00
while (slider.Path.ControlPoints.Length > Pieces.Count)
2019-10-31 16:13:10 +08:00
{
var piece = new PathControlPointPiece(slider, Pieces.Count)
2019-10-31 16:13:10 +08:00
{
ControlPointsChanged = c => ControlPointsChanged?.Invoke(c),
};
if (allowSelection)
piece.RequestSelection = selectPiece;
Pieces.Add(piece);
2019-10-31 16:13:10 +08:00
}
2019-10-31 15:51:58 +08:00
while (slider.Path.ControlPoints.Length < Pieces.Count)
Pieces.Remove(Pieces[Pieces.Count - 1]);
}
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
public bool OnPressed(PlatformAction action)
2019-10-31 16:13:10 +08:00
{
switch (action.ActionMethod)
{
case PlatformActionMethod.Delete:
return deleteSelected();
}
return false;
}
public bool OnReleased(PlatformAction action) => action.ActionMethod == PlatformActionMethod.Delete;
private void selectPiece(int index, MouseButtonEvent e)
2019-10-31 16:13:10 +08:00
{
if (e.Button == MouseButton.Left && inputManager.CurrentState.Keyboard.ControlPressed)
Pieces[index].IsSelected.Toggle();
2019-10-31 16:25:30 +08:00
else
{
foreach (var piece in Pieces)
piece.IsSelected.Value = piece.Index == index;
}
2019-10-31 15:23:54 +08:00
}
private bool deleteSelected()
{
var newControlPoints = new List<Vector2>();
foreach (var piece in Pieces)
{
if (!piece.IsSelected.Value)
newControlPoints.Add(slider.Path.ControlPoints[piece.Index]);
}
// Ensure that there are any points to be deleted
if (newControlPoints.Count == slider.Path.ControlPoints.Length)
return false;
// If there are 0 remaining control points, treat the slider as being deleted
if (newControlPoints.Count == 0)
{
placementHandler?.Delete(slider);
return true;
}
// Make control points relative
Vector2 first = newControlPoints[0];
for (int i = 0; i < newControlPoints.Count; i++)
newControlPoints[i] = newControlPoints[i] - first;
// The slider's position defines the position of the first control point, and all further control points are relative to that point
2019-11-21 23:42:46 +08:00
slider.Position += first;
// 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;
ControlPointsChanged?.Invoke(newControlPoints.ToArray());
return true;
}
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-11-13 16:36:46 +08:00
int selectedPoints = Pieces.Count(p => p.IsSelected.Value);
2019-10-31 16:58:33 +08:00
2019-11-13 16:36:46 +08:00
if (selectedPoints == 0)
2019-11-13 15:56:48 +08:00
return null;
return new MenuItem[]
{
new OsuMenuItem($"Delete {"control point".ToQuantity(selectedPoints, selectedPoints > 1 ? ShowQuantityAs.Numeric : ShowQuantityAs.None)}", MenuItemType.Destructive, () => deleteSelected())
};
}
}
}
}