mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 15:47:26 +08:00
212 lines
7.3 KiB
C#
212 lines
7.3 KiB
C#
// 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.Linq;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Framework.Utils;
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Screens.Edit.Compose.Components;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
{
|
|
public class OsuSelectionHandler : SelectionHandler
|
|
{
|
|
public override ComposeSelectionBox CreateSelectionBox()
|
|
=> new ComposeSelectionBox
|
|
{
|
|
CanRotate = true,
|
|
CanScaleX = true,
|
|
CanScaleY = true,
|
|
|
|
OperationStarted = () => ChangeHandler.BeginChange(),
|
|
OperationEnded = () =>
|
|
{
|
|
ChangeHandler.EndChange();
|
|
referenceOrigin = null;
|
|
},
|
|
|
|
OnRotation = e => rotateSelection(e.Delta.X),
|
|
OnScaleX = handleScaleX,
|
|
OnScaleY = handleScaleY,
|
|
};
|
|
|
|
public override bool HandleMovement(MoveSelectionEvent moveEvent) =>
|
|
moveSelection(moveEvent.InstantDelta);
|
|
|
|
/// <summary>
|
|
/// During a transform, the initial origin is stored so it can be used throughout the operation.
|
|
/// </summary>
|
|
private Vector2? referenceOrigin;
|
|
|
|
private void handleScaleY(DragEvent e, Anchor reference)
|
|
{
|
|
int direction = (reference & Anchor.y0) > 0 ? -1 : 1;
|
|
|
|
if (direction < 0)
|
|
{
|
|
// when resizing from a top drag handle, we want to move the selection first
|
|
if (!moveSelection(new Vector2(0, e.Delta.Y)))
|
|
return;
|
|
}
|
|
|
|
scaleSelection(new Vector2(0, direction * e.Delta.Y));
|
|
}
|
|
|
|
private void handleScaleX(DragEvent e, Anchor reference)
|
|
{
|
|
int direction = (reference & Anchor.x0) > 0 ? -1 : 1;
|
|
|
|
if (direction < 0)
|
|
{
|
|
// when resizing from a left drag handle, we want to move the selection first
|
|
if (!moveSelection(new Vector2(e.Delta.X, 0)))
|
|
return;
|
|
}
|
|
|
|
scaleSelection(new Vector2(direction * e.Delta.X, 0));
|
|
}
|
|
|
|
private bool rotateSelection(in float delta)
|
|
{
|
|
Quad quad = getSelectionQuad();
|
|
|
|
referenceOrigin ??= quad.Centre;
|
|
|
|
foreach (var h in SelectedHitObjects.OfType<OsuHitObject>())
|
|
{
|
|
if (h is Spinner)
|
|
{
|
|
// Spinners don't support position adjustments
|
|
continue;
|
|
}
|
|
|
|
h.Position = rotatePointAroundOrigin(h.Position, referenceOrigin.Value, delta);
|
|
|
|
if (h is IHasPath path)
|
|
{
|
|
foreach (var point in path.Path.ControlPoints)
|
|
{
|
|
point.Position.Value = rotatePointAroundOrigin(point.Position.Value, Vector2.Zero, delta);
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
private bool scaleSelection(Vector2 scale)
|
|
{
|
|
Quad quad = getSelectionQuad();
|
|
|
|
Vector2 minPosition = quad.TopLeft;
|
|
|
|
Vector2 size = quad.Size;
|
|
Vector2 newSize = size + scale;
|
|
|
|
foreach (var h in SelectedHitObjects.OfType<OsuHitObject>())
|
|
{
|
|
if (h is Spinner)
|
|
{
|
|
// Spinners don't support position adjustments
|
|
continue;
|
|
}
|
|
|
|
if (scale.X != 1)
|
|
h.Position = new Vector2(minPosition.X + (h.X - minPosition.X) / size.X * newSize.X, h.Y);
|
|
if (scale.Y != 1)
|
|
h.Position = new Vector2(h.X, minPosition.Y + (h.Y - minPosition.Y) / size.Y * newSize.Y);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
private bool moveSelection(Vector2 delta)
|
|
{
|
|
Vector2 minPosition = new Vector2(float.MaxValue, float.MaxValue);
|
|
Vector2 maxPosition = new Vector2(float.MinValue, float.MinValue);
|
|
|
|
// Go through all hitobjects to make sure they would remain in the bounds of the editor after movement, before any movement is attempted
|
|
foreach (var h in SelectedHitObjects.OfType<OsuHitObject>())
|
|
{
|
|
if (h is Spinner)
|
|
{
|
|
// Spinners don't support position adjustments
|
|
continue;
|
|
}
|
|
|
|
// Stacking is not considered
|
|
minPosition = Vector2.ComponentMin(minPosition, Vector2.ComponentMin(h.EndPosition + delta, h.Position + delta));
|
|
maxPosition = Vector2.ComponentMax(maxPosition, Vector2.ComponentMax(h.EndPosition + delta, h.Position + delta));
|
|
}
|
|
|
|
if (minPosition.X < 0 || minPosition.Y < 0 || maxPosition.X > DrawWidth || maxPosition.Y > DrawHeight)
|
|
return false;
|
|
|
|
foreach (var h in SelectedHitObjects.OfType<OsuHitObject>())
|
|
{
|
|
if (h is Spinner)
|
|
{
|
|
// Spinners don't support position adjustments
|
|
continue;
|
|
}
|
|
|
|
h.Position += delta;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
private Quad getSelectionQuad()
|
|
{
|
|
Vector2 minPosition = new Vector2(float.MaxValue, float.MaxValue);
|
|
Vector2 maxPosition = new Vector2(float.MinValue, float.MinValue);
|
|
|
|
// Go through all hitobjects to make sure they would remain in the bounds of the editor after movement, before any movement is attempted
|
|
foreach (var h in SelectedHitObjects.OfType<OsuHitObject>())
|
|
{
|
|
if (h is Spinner)
|
|
{
|
|
// Spinners don't support position adjustments
|
|
continue;
|
|
}
|
|
|
|
// Stacking is not considered
|
|
minPosition = Vector2.ComponentMin(minPosition, Vector2.ComponentMin(h.EndPosition, h.Position));
|
|
maxPosition = Vector2.ComponentMax(maxPosition, Vector2.ComponentMax(h.EndPosition, h.Position));
|
|
}
|
|
|
|
Vector2 size = maxPosition - minPosition;
|
|
|
|
return new Quad(minPosition.X, minPosition.Y, size.X, size.Y);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Rotate a point around an arbitrary origin.
|
|
/// </summary>
|
|
/// <param name="point">The point.</param>
|
|
/// <param name="origin">The centre origin to rotate around.</param>
|
|
/// <param name="angle">The angle to rotate (in degrees).</param>
|
|
private static Vector2 rotatePointAroundOrigin(Vector2 point, Vector2 origin, float angle)
|
|
{
|
|
angle = -angle;
|
|
|
|
point.X -= origin.X;
|
|
point.Y -= origin.Y;
|
|
|
|
Vector2 ret;
|
|
ret.X = (float)(point.X * Math.Cos(MathUtils.DegreesToRadians(angle)) + point.Y * Math.Sin(angle / 180f * Math.PI));
|
|
ret.Y = (float)(point.X * -Math.Sin(MathUtils.DegreesToRadians(angle)) + point.Y * Math.Cos(angle / 180f * Math.PI));
|
|
|
|
ret.X += origin.X;
|
|
ret.Y += origin.Y;
|
|
|
|
return ret;
|
|
}
|
|
}
|
|
}
|