mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 02:27:25 +08:00
120 lines
3.4 KiB
C#
120 lines
3.4 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 osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Screens.Edit.Compose.Components
|
|
{
|
|
/// <summary>
|
|
/// Represents the base appearance for UI controls of the <see cref="SelectionBox"/>,
|
|
/// such as scale handles, rotation handles, buttons, etc...
|
|
/// </summary>
|
|
public abstract class SelectionBoxControl : VisibilityContainer
|
|
{
|
|
protected const double TRANSFORM_DURATION = 100;
|
|
|
|
public event Action OperationStarted;
|
|
public event Action OperationEnded;
|
|
|
|
internal event Action HoverGained;
|
|
internal event Action HoverLost;
|
|
|
|
private Circle circle;
|
|
|
|
/// <summary>
|
|
/// Whether this control is currently being operated on by the user.
|
|
/// </summary>
|
|
public bool InOperation { get; private set; }
|
|
|
|
[Resolved]
|
|
protected OsuColour Colours { get; private set; }
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Origin = Anchor.Centre;
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
circle = new Circle
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
},
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
UpdateHoverState();
|
|
}
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
{
|
|
UpdateHoverState();
|
|
HoverGained?.Invoke();
|
|
return true;
|
|
}
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
{
|
|
base.OnHoverLost(e);
|
|
HoverLost?.Invoke();
|
|
UpdateHoverState();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Whether this control is currently handling mouse down input.
|
|
/// </summary>
|
|
protected bool HandlingMouse { get; set; }
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
{
|
|
HandlingMouse = true;
|
|
UpdateHoverState();
|
|
return true;
|
|
}
|
|
|
|
protected override void OnMouseUp(MouseUpEvent e)
|
|
{
|
|
HandlingMouse = false;
|
|
UpdateHoverState();
|
|
base.OnMouseUp(e);
|
|
}
|
|
|
|
protected override void PopIn() => this.FadeIn(TRANSFORM_DURATION, Easing.OutQuint);
|
|
|
|
protected override void PopOut() => this.FadeOut(TRANSFORM_DURATION, Easing.OutQuint);
|
|
|
|
protected virtual void UpdateHoverState()
|
|
{
|
|
if (HandlingMouse)
|
|
circle.FadeColour(Colours.GrayF, TRANSFORM_DURATION, Easing.OutQuint);
|
|
else
|
|
circle.FadeColour(IsHovered ? Colours.Red : Colours.YellowDark, TRANSFORM_DURATION, Easing.OutQuint);
|
|
|
|
this.ScaleTo(HandlingMouse || IsHovered ? 1.5f : 1, TRANSFORM_DURATION, Easing.OutQuint);
|
|
}
|
|
|
|
protected void OnOperationStarted()
|
|
{
|
|
InOperation = true;
|
|
OperationStarted?.Invoke();
|
|
}
|
|
|
|
protected void OnOperationEnded()
|
|
{
|
|
InOperation = false;
|
|
OperationEnded?.Invoke();
|
|
}
|
|
}
|
|
}
|