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-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-16 21:41:07 +08:00
|
|
|
|
using System;
|
2022-07-19 23:22:31 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2022-01-28 17:13:51 +08:00
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Audio.Sample;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2022-07-19 23:22:31 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-03-16 21:41:07 +08:00
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2018-10-02 11:02:47 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2020-01-09 03:21:13 +08:00
|
|
|
|
using osu.Framework.Utils;
|
2022-07-19 23:22:31 +08:00
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-16 21:41:07 +08:00
|
|
|
|
namespace osu.Game.Graphics.Cursor
|
|
|
|
|
{
|
2022-10-11 21:20:57 +08:00
|
|
|
|
public partial class MenuCursorContainer : CursorContainer
|
2017-03-16 21:41:07 +08:00
|
|
|
|
{
|
2018-04-13 20:13:09 +08:00
|
|
|
|
private readonly IBindable<bool> screenshotCursorVisibility = new Bindable<bool>(true);
|
|
|
|
|
public override bool IsPresent => screenshotCursorVisibility.Value && base.IsPresent;
|
|
|
|
|
|
2022-10-20 08:44:58 +08:00
|
|
|
|
private bool hideCursorOnNonMouseInput;
|
|
|
|
|
|
|
|
|
|
public bool HideCursorOnNonMouseInput
|
|
|
|
|
{
|
|
|
|
|
get => hideCursorOnNonMouseInput;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (hideCursorOnNonMouseInput == value)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
hideCursorOnNonMouseInput = value;
|
|
|
|
|
updateState();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-06 16:45:39 +08:00
|
|
|
|
protected override Drawable CreateCursor() => activeCursor = new Cursor();
|
|
|
|
|
|
2022-10-11 21:22:57 +08:00
|
|
|
|
private Cursor activeCursor = null!;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-07-02 15:07:52 +08:00
|
|
|
|
private DragRotationState dragRotationState;
|
|
|
|
|
private Vector2 positionMouseDown;
|
2022-07-19 23:22:31 +08:00
|
|
|
|
private Vector2 lastMovePosition;
|
2022-01-28 17:13:51 +08:00
|
|
|
|
|
2022-10-11 21:22:57 +08:00
|
|
|
|
private Bindable<bool> cursorRotate = null!;
|
|
|
|
|
private Sample tapSample = null!;
|
|
|
|
|
|
2022-10-15 05:18:24 +08:00
|
|
|
|
private MouseInputDetector mouseInputDetector = null!;
|
|
|
|
|
|
2022-10-13 10:22:40 +08:00
|
|
|
|
private bool visible;
|
|
|
|
|
|
2022-10-11 21:22:57 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config, ScreenshotManager? screenshotManager, AudioManager audio)
|
2018-04-13 20:13:09 +08:00
|
|
|
|
{
|
|
|
|
|
cursorRotate = config.GetBindable<bool>(OsuSetting.CursorRotation);
|
|
|
|
|
|
|
|
|
|
if (screenshotManager != null)
|
|
|
|
|
screenshotCursorVisibility.BindTo(screenshotManager.CursorVisibility);
|
2022-01-28 17:13:51 +08:00
|
|
|
|
|
|
|
|
|
tapSample = audio.Samples.Get(@"UI/cursor-tap");
|
2018-04-13 20:13:09 +08:00
|
|
|
|
|
2022-10-15 05:18:24 +08:00
|
|
|
|
Add(mouseInputDetector = new MouseInputDetector());
|
|
|
|
|
}
|
2022-10-11 21:23:24 +08:00
|
|
|
|
|
2022-10-12 22:50:31 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuGame? game { get; set; }
|
|
|
|
|
|
2022-10-13 10:22:40 +08:00
|
|
|
|
private readonly IBindable<bool> lastInputWasMouse = new BindableBool();
|
2022-11-08 08:18:12 +08:00
|
|
|
|
private readonly IBindable<bool> gameActive = new BindableBool(true);
|
|
|
|
|
private readonly IBindable<bool> gameIdle = new BindableBool();
|
2022-10-12 22:50:04 +08:00
|
|
|
|
|
2022-10-11 21:23:24 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2022-10-15 05:18:24 +08:00
|
|
|
|
lastInputWasMouse.BindTo(mouseInputDetector.LastInputWasMouseSource);
|
|
|
|
|
lastInputWasMouse.BindValueChanged(_ => updateState(), true);
|
2022-10-12 22:50:04 +08:00
|
|
|
|
|
2022-10-12 22:50:31 +08:00
|
|
|
|
if (game != null)
|
|
|
|
|
{
|
2022-11-08 08:18:12 +08:00
|
|
|
|
gameIdle.BindTo(game.IsIdle);
|
|
|
|
|
gameIdle.BindValueChanged(_ => updateState());
|
|
|
|
|
|
|
|
|
|
gameActive.BindTo(game.IsActive);
|
|
|
|
|
gameActive.BindValueChanged(_ => updateState());
|
2022-10-12 22:50:31 +08:00
|
|
|
|
}
|
2022-10-12 22:50:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-13 10:22:40 +08:00
|
|
|
|
protected override void UpdateState(ValueChangedEvent<Visibility> state) => updateState();
|
2022-10-12 22:50:04 +08:00
|
|
|
|
|
2022-10-13 10:22:40 +08:00
|
|
|
|
private void updateState()
|
2022-10-12 22:50:04 +08:00
|
|
|
|
{
|
2022-11-08 08:18:12 +08:00
|
|
|
|
bool combinedVisibility = getCursorVisibility();
|
2022-10-12 22:50:04 +08:00
|
|
|
|
|
2022-10-13 10:22:40 +08:00
|
|
|
|
if (visible == combinedVisibility)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
visible = combinedVisibility;
|
|
|
|
|
|
|
|
|
|
if (visible)
|
|
|
|
|
PopIn();
|
|
|
|
|
else
|
|
|
|
|
PopOut();
|
2022-10-11 21:23:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-08 08:18:12 +08:00
|
|
|
|
private bool getCursorVisibility()
|
|
|
|
|
{
|
|
|
|
|
// do not display when explicitly set to hidden state.
|
|
|
|
|
if (State.Value == Visibility.Hidden)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// only hide cursor when game is focused, otherwise it should always be displayed.
|
|
|
|
|
if (gameActive.Value)
|
|
|
|
|
{
|
|
|
|
|
// do not display when last input is not mouse.
|
|
|
|
|
if (hideCursorOnNonMouseInput && !lastInputWasMouse.Value)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// do not display when game is idle.
|
|
|
|
|
if (gameIdle.Value)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-19 23:22:31 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
|
|
if (dragRotationState != DragRotationState.NotDragging
|
|
|
|
|
&& Vector2.Distance(positionMouseDown, lastMovePosition) > 60)
|
|
|
|
|
{
|
|
|
|
|
// make the rotation centre point floating.
|
|
|
|
|
positionMouseDown = Interpolation.ValueAt(0.04f, positionMouseDown, lastMovePosition, 0, Clock.ElapsedFrameTime);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
protected override bool OnMouseMove(MouseMoveEvent e)
|
2017-03-18 19:47:49 +08:00
|
|
|
|
{
|
2018-07-02 15:07:52 +08:00
|
|
|
|
if (dragRotationState != DragRotationState.NotDragging)
|
2017-09-17 07:44:49 +08:00
|
|
|
|
{
|
2022-07-19 23:22:31 +08:00
|
|
|
|
lastMovePosition = e.MousePosition;
|
2022-06-25 18:33:44 +08:00
|
|
|
|
|
2022-07-19 23:22:31 +08:00
|
|
|
|
float distance = Vector2Extensions.Distance(lastMovePosition, positionMouseDown);
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2017-09-17 07:28:02 +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.
|
2022-06-25 18:43:39 +08:00
|
|
|
|
if (dragRotationState == DragRotationState.DragStarted && distance > 80)
|
2018-07-02 15:07:52 +08:00
|
|
|
|
dragRotationState = DragRotationState.Rotating;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
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)
|
2017-09-17 07:44:49 +08:00
|
|
|
|
{
|
2018-09-19 19:52:57 +08:00
|
|
|
|
Vector2 offset = e.MousePosition - positionMouseDown;
|
2020-01-09 03:21:13 +08:00
|
|
|
|
float degrees = MathUtils.RadiansToDegrees(MathF.Atan2(-offset.X, offset.Y)) + 24.3f;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-09-17 07:28:02 +08:00
|
|
|
|
// Always rotate in the direction of least distance
|
2018-07-06 16:45:39 +08:00
|
|
|
|
float diff = (degrees - activeCursor.Rotation) % 360;
|
2017-09-22 04:11:35 +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
|
|
|
|
|
2022-06-25 18:43:39 +08:00
|
|
|
|
activeCursor.RotateTo(degrees, 120, Easing.OutQuint);
|
2017-08-22 16:38:51 +08:00
|
|
|
|
}
|
2017-03-18 19:47:49 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
return base.OnMouseMove(e);
|
2017-04-03 00:19:59 +08:00
|
|
|
|
}
|
2018-07-02 15:20:44 +08:00
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
2017-03-16 21:41:07 +08:00
|
|
|
|
{
|
2021-12-16 19:20:02 +08:00
|
|
|
|
if (State.Value == Visibility.Visible)
|
|
|
|
|
{
|
|
|
|
|
// only trigger animation for main mouse buttons
|
|
|
|
|
activeCursor.Scale = new Vector2(1);
|
|
|
|
|
activeCursor.ScaleTo(0.90f, 800, Easing.OutQuint);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-12-16 19:20:02 +08:00
|
|
|
|
activeCursor.AdditiveLayer.Alpha = 0;
|
|
|
|
|
activeCursor.AdditiveLayer.FadeInFromZero(800, Easing.OutQuint);
|
2018-07-02 15:07:52 +08:00
|
|
|
|
|
2021-12-16 19:20:02 +08:00
|
|
|
|
if (cursorRotate.Value && dragRotationState != DragRotationState.Rotating)
|
|
|
|
|
{
|
|
|
|
|
// if cursor is already rotating don't reset its rotate origin
|
|
|
|
|
dragRotationState = DragRotationState.DragStarted;
|
|
|
|
|
positionMouseDown = e.MousePosition;
|
|
|
|
|
}
|
2022-02-02 13:44:06 +08:00
|
|
|
|
|
|
|
|
|
playTapSample();
|
2018-07-02 15:07:52 +08:00
|
|
|
|
}
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
return base.OnMouseDown(e);
|
2017-03-16 21:41:07 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-01-20 17:17:21 +08:00
|
|
|
|
protected override void OnMouseUp(MouseUpEvent e)
|
2017-03-16 21:41:07 +08:00
|
|
|
|
{
|
2020-06-22 15:19:38 +08:00
|
|
|
|
if (!e.HasAnyButtonPressed)
|
2017-09-17 07:44:49 +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
|
|
|
|
|
2020-06-22 15:19:38 +08:00
|
|
|
|
if (dragRotationState != DragRotationState.NotDragging)
|
|
|
|
|
{
|
2022-06-25 18:43:39 +08:00
|
|
|
|
activeCursor.RotateTo(0, 400 * (0.5f + Math.Abs(activeCursor.Rotation / 960)), Easing.OutElasticQuarter);
|
2020-06-22 15:19:38 +08:00
|
|
|
|
dragRotationState = DragRotationState.NotDragging;
|
|
|
|
|
}
|
2022-02-02 13:44:06 +08:00
|
|
|
|
|
|
|
|
|
if (State.Value == Visibility.Visible)
|
|
|
|
|
playTapSample(0.8);
|
2018-07-02 15:07:52 +08:00
|
|
|
|
}
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2020-01-20 17:17:21 +08:00
|
|
|
|
base.OnMouseUp(e);
|
2017-03-16 21:41:07 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-09-17 07:44:49 +08:00
|
|
|
|
protected override void PopIn()
|
2017-03-16 22:58:36 +08:00
|
|
|
|
{
|
2018-07-06 16:45:39 +08:00
|
|
|
|
activeCursor.FadeTo(1, 250, Easing.OutQuint);
|
|
|
|
|
activeCursor.ScaleTo(1, 400, Easing.OutQuint);
|
2017-03-16 22:58:36 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-09-17 07:44:49 +08:00
|
|
|
|
protected override void PopOut()
|
2017-03-16 22:58:36 +08:00
|
|
|
|
{
|
2018-07-06 16:45:39 +08:00
|
|
|
|
activeCursor.FadeTo(0, 250, Easing.OutQuint);
|
|
|
|
|
activeCursor.ScaleTo(0.6f, 250, Easing.In);
|
2017-03-16 22:58:36 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-02-02 13:44:06 +08:00
|
|
|
|
private void playTapSample(double baseFrequency = 1f)
|
|
|
|
|
{
|
|
|
|
|
const float random_range = 0.02f;
|
|
|
|
|
SampleChannel channel = tapSample.GetChannel();
|
|
|
|
|
|
|
|
|
|
// Scale to [-0.75, 0.75] so that the sample isn't fully panned left or right (sounds weird)
|
|
|
|
|
channel.Balance.Value = ((activeCursor.X / DrawWidth) * 2 - 1) * 0.75;
|
|
|
|
|
channel.Frequency.Value = baseFrequency - (random_range / 2f) + RNG.NextDouble(random_range);
|
2022-03-04 19:14:14 +08:00
|
|
|
|
channel.Volume.Value = baseFrequency;
|
2022-02-02 13:44:06 +08:00
|
|
|
|
|
|
|
|
|
channel.Play();
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-16 21:41:07 +08:00
|
|
|
|
public partial class Cursor : Container
|
|
|
|
|
{
|
2022-10-11 21:22:57 +08:00
|
|
|
|
private Container cursorContainer = null!;
|
|
|
|
|
private Bindable<float> cursorScale = null!;
|
2017-06-03 22:34:00 +08:00
|
|
|
|
private const float base_scale = 0.15f;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-10-11 21:22:57 +08:00
|
|
|
|
public Sprite AdditiveLayer = null!;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-09-17 07:44:49 +08:00
|
|
|
|
public Cursor()
|
2017-03-16 21:41:07 +08:00
|
|
|
|
{
|
2017-04-20 06:42:40 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both;
|
2017-03-16 21:41:07 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-16 21:41:07 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2018-08-31 06:04:40 +08:00
|
|
|
|
private void load(OsuConfigManager config, TextureStore textures, OsuColour colour)
|
2017-03-16 21:41:07 +08:00
|
|
|
|
{
|
2017-09-17 07:44:49 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
cursorContainer = new Container
|
|
|
|
|
{
|
2017-06-03 22:34:00 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both,
|
2017-09-17 07:44:49 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Sprite
|
|
|
|
|
{
|
2018-08-31 06:04:40 +08:00
|
|
|
|
Texture = textures.Get(@"Cursor/menu-cursor"),
|
2017-03-16 21:41:07 +08:00
|
|
|
|
},
|
2017-09-17 07:44:49 +08:00
|
|
|
|
AdditiveLayer = new Sprite
|
|
|
|
|
{
|
2019-08-21 12:29:50 +08:00
|
|
|
|
Blending = BlendingParameters.Additive,
|
2017-03-17 20:04:46 +08:00
|
|
|
|
Colour = colour.Pink,
|
2017-03-16 21:41:07 +08:00
|
|
|
|
Alpha = 0,
|
2018-08-31 06:04:40 +08:00
|
|
|
|
Texture = textures.Get(@"Cursor/menu-cursor-additive"),
|
2017-03-16 21:41:07 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
2017-04-17 23:10:55 +08:00
|
|
|
|
}
|
2017-03-16 21:41:07 +08:00
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-09-03 06:28:51 +08:00
|
|
|
|
cursorScale = config.GetBindable<float>(OsuSetting.MenuCursorSize);
|
|
|
|
|
cursorScale.BindValueChanged(scale => cursorContainer.Scale = new Vector2(scale.NewValue * base_scale), true);
|
2017-03-16 21:41:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-02 15:07:52 +08:00
|
|
|
|
|
2022-10-15 05:18:24 +08:00
|
|
|
|
private partial class MouseInputDetector : Component
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the last input applied to the game is sourced from mouse.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IBindable<bool> LastInputWasMouseSource => lastInputWasMouseSource;
|
|
|
|
|
|
|
|
|
|
private readonly Bindable<bool> lastInputWasMouseSource = new Bindable<bool>();
|
|
|
|
|
|
|
|
|
|
public MouseInputDetector()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool Handle(UIEvent e)
|
|
|
|
|
{
|
|
|
|
|
switch (e)
|
|
|
|
|
{
|
2022-10-20 08:45:17 +08:00
|
|
|
|
case MouseDownEvent:
|
|
|
|
|
case MouseMoveEvent:
|
2022-10-15 05:18:24 +08:00
|
|
|
|
lastInputWasMouseSource.Value = true;
|
|
|
|
|
return false;
|
|
|
|
|
|
2022-10-20 08:45:17 +08:00
|
|
|
|
case KeyDownEvent keyDown when !keyDown.Repeat:
|
|
|
|
|
case JoystickPressEvent:
|
|
|
|
|
case MidiDownEvent:
|
2022-10-15 05:18:24 +08:00
|
|
|
|
lastInputWasMouseSource.Value = false;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2022-10-20 08:45:17 +08:00
|
|
|
|
|
|
|
|
|
return false;
|
2022-10-15 05:18:24 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-02 15:07:52 +08:00
|
|
|
|
private enum DragRotationState
|
|
|
|
|
{
|
|
|
|
|
NotDragging,
|
|
|
|
|
DragStarted,
|
|
|
|
|
Rotating,
|
|
|
|
|
}
|
2017-03-16 21:41:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|