1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 12:47:24 +08:00
osu-lazer/osu.Game/Graphics/Cursor/MenuCursor.cs

172 lines
6.3 KiB
C#
Raw Normal View History

2018-04-13 17:19:50 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using osu.Framework.Allocation;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Sprites;
using osu.Game.Configuration;
using System;
using JetBrains.Annotations;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.Textures;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
2018-07-02 15:07:52 +08:00
using OpenTK.Input;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Graphics.Cursor
{
public class MenuCursor : CursorContainer
{
private readonly IBindable<bool> screenshotCursorVisibility = new Bindable<bool>(true);
public override bool IsPresent => screenshotCursorVisibility.Value && base.IsPresent;
2018-07-06 16:45:39 +08:00
protected override Drawable CreateCursor() => activeCursor = new Cursor();
private Cursor activeCursor;
2018-04-13 17:19:50 +08:00
private Bindable<bool> cursorRotate;
2018-07-02 15:07:52 +08:00
private DragRotationState dragRotationState;
private Vector2 positionMouseDown;
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader(true)]
private void load([NotNull] OsuConfigManager config, [CanBeNull] ScreenshotManager screenshotManager)
{
cursorRotate = config.GetBindable<bool>(OsuSetting.CursorRotation);
if (screenshotManager != null)
screenshotCursorVisibility.BindTo(screenshotManager.CursorVisibility);
}
2018-10-02 11:02:47 +08:00
protected override bool OnMouseMove(MouseMoveEvent e)
2018-04-13 17:19:50 +08:00
{
2018-07-02 15:07:52 +08:00
if (dragRotationState != DragRotationState.NotDragging)
2018-04-13 17:19:50 +08:00
{
var position = e.MousePosition;
2018-07-02 15:07:52 +08:00
var distance = Vector2Extensions.Distance(position, positionMouseDown);
2018-04-13 17:19:50 +08:00
// don't start rotating until we're moved a minimum distance away from the mouse down location,
// else it can have an annoying effect.
2018-07-02 15:07:52 +08:00
if (dragRotationState == DragRotationState.DragStarted && distance > 30)
dragRotationState = DragRotationState.Rotating;
2018-07-02 15:09:33 +08:00
// don't rotate when distance is zero to avoid NaN
2018-07-02 15:07:52 +08:00
if (dragRotationState == DragRotationState.Rotating && distance > 0)
2018-04-13 17:19:50 +08:00
{
Vector2 offset = e.MousePosition - positionMouseDown;
2018-04-13 17:19:50 +08:00
float degrees = (float)MathHelper.RadiansToDegrees(Math.Atan2(-offset.X, offset.Y)) + 24.3f;
// Always rotate in the direction of least distance
2018-07-06 16:45:39 +08:00
float diff = (degrees - activeCursor.Rotation) % 360;
2018-04-13 17:19:50 +08:00
if (diff < -180) diff += 360;
if (diff > 180) diff -= 360;
2018-07-06 16:45:39 +08:00
degrees = activeCursor.Rotation + diff;
2018-04-13 17:19:50 +08:00
2018-07-06 16:45:39 +08:00
activeCursor.RotateTo(degrees, 600, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
}
}
2018-10-02 11:02:47 +08:00
return base.OnMouseMove(e);
2018-04-13 17:19:50 +08:00
}
2018-07-02 15:20:44 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnMouseDown(MouseDownEvent e)
2018-04-13 17:19:50 +08:00
{
2018-07-02 15:28:05 +08:00
// only trigger animation for main mouse buttons
2018-10-02 11:02:47 +08:00
if (e.Button <= MouseButton.Right)
2018-07-02 15:28:05 +08:00
{
2018-07-06 16:45:39 +08:00
activeCursor.Scale = new Vector2(1);
activeCursor.ScaleTo(0.90f, 800, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
2018-07-06 16:45:39 +08:00
activeCursor.AdditiveLayer.Alpha = 0;
activeCursor.AdditiveLayer.FadeInFromZero(800, Easing.OutQuint);
2018-07-02 15:28:05 +08:00
}
2018-07-02 15:07:52 +08:00
2018-10-02 11:02:47 +08:00
if (e.Button == MouseButton.Left && cursorRotate)
2018-07-02 15:07:52 +08:00
{
dragRotationState = DragRotationState.DragStarted;
positionMouseDown = e.MousePosition;
2018-07-02 15:07:52 +08:00
}
2018-10-02 11:02:47 +08:00
return base.OnMouseDown(e);
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
protected override bool OnMouseUp(MouseUpEvent e)
2018-04-13 17:19:50 +08:00
{
if (!e.CurrentState.Mouse.HasMainButtonPressed)
2018-04-13 17:19:50 +08:00
{
2018-07-06 16:45:39 +08:00
activeCursor.AdditiveLayer.FadeOutFromOne(500, Easing.OutQuint);
activeCursor.ScaleTo(1, 500, Easing.OutElastic);
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
if (e.Button == MouseButton.Left)
2018-07-02 15:07:52 +08:00
{
if (dragRotationState == DragRotationState.Rotating)
2018-07-06 16:45:39 +08:00
activeCursor.RotateTo(0, 600 * (1 + Math.Abs(activeCursor.Rotation / 720)), Easing.OutElasticHalf);
2018-07-02 15:07:52 +08:00
dragRotationState = DragRotationState.NotDragging;
}
2018-10-02 11:02:47 +08:00
return base.OnMouseUp(e);
2018-04-13 17:19:50 +08:00
}
protected override void PopIn()
{
2018-07-06 16:45:39 +08:00
activeCursor.FadeTo(1, 250, Easing.OutQuint);
activeCursor.ScaleTo(1, 400, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
}
protected override void PopOut()
{
2018-07-06 16:45:39 +08:00
activeCursor.FadeTo(0, 250, Easing.OutQuint);
activeCursor.ScaleTo(0.6f, 250, Easing.In);
2018-04-13 17:19:50 +08:00
}
public class Cursor : Container
{
private Container cursorContainer;
private Bindable<double> cursorScale;
private const float base_scale = 0.15f;
public Sprite AdditiveLayer;
public Cursor()
{
AutoSizeAxes = Axes.Both;
}
[BackgroundDependencyLoader]
2018-08-31 06:04:40 +08:00
private void load(OsuConfigManager config, TextureStore textures, OsuColour colour)
2018-04-13 17:19:50 +08:00
{
Children = new Drawable[]
{
cursorContainer = new Container
{
AutoSizeAxes = Axes.Both,
Children = new Drawable[]
{
new Sprite
{
2018-08-31 06:04:40 +08:00
Texture = textures.Get(@"Cursor/menu-cursor"),
2018-04-13 17:19:50 +08:00
},
AdditiveLayer = new Sprite
{
Blending = BlendingMode.Additive,
Colour = colour.Pink,
Alpha = 0,
2018-08-31 06:04:40 +08:00
Texture = textures.Get(@"Cursor/menu-cursor-additive"),
2018-04-13 17:19:50 +08:00
},
}
}
};
cursorScale = config.GetBindable<double>(OsuSetting.MenuCursorSize);
cursorScale.ValueChanged += newScale => cursorContainer.Scale = new Vector2((float)newScale * base_scale);
cursorScale.TriggerChange();
}
}
2018-07-02 15:07:52 +08:00
private enum DragRotationState
{
NotDragging,
DragStarted,
Rotating,
}
2018-04-13 17:19:50 +08:00
}
}