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
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
using osu.Framework.Input;
|
2020-09-07 14:18:15 +08:00
|
|
|
using osu.Framework.Input.StateChanges;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Graphics.Cursor
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A container which provides a <see cref="MenuCursor"/> which can be overridden by hovered <see cref="Drawable"/>s.
|
|
|
|
/// </summary>
|
2018-05-26 03:13:40 +08:00
|
|
|
public class MenuCursorContainer : Container, IProvideCursor
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
private readonly Container content;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Whether any cursors can be displayed.
|
|
|
|
/// </summary>
|
2018-04-13 20:13:09 +08:00
|
|
|
internal bool CanShowCursor = true;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
public CursorContainer Cursor { get; }
|
|
|
|
public bool ProvidingUserCursor => true;
|
|
|
|
|
2018-05-26 03:13:40 +08:00
|
|
|
public MenuCursorContainer()
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
AddRangeInternal(new Drawable[]
|
|
|
|
{
|
2019-06-11 13:28:52 +08:00
|
|
|
Cursor = new MenuCursor { State = { Value = Visibility.Hidden } },
|
2018-04-13 17:19:50 +08:00
|
|
|
content = new Container { RelativeSizeAxes = Axes.Both }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private InputManager inputManager;
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
inputManager = GetContainingInputManager();
|
|
|
|
}
|
|
|
|
|
|
|
|
private IProvideCursor currentTarget;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
|
|
|
|
2020-09-07 14:31:05 +08:00
|
|
|
var lastMouseSource = inputManager.CurrentState.Mouse.LastSource;
|
2020-09-07 14:18:15 +08:00
|
|
|
bool hasValidInput = lastMouseSource != null && !(lastMouseSource is ISourcedFromTouch);
|
|
|
|
|
|
|
|
if (!hasValidInput || !CanShowCursor)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
currentTarget?.Cursor?.Hide();
|
2019-01-23 19:52:00 +08:00
|
|
|
currentTarget = null;
|
2018-04-13 17:19:50 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-07-19 10:37:10 +08:00
|
|
|
IProvideCursor newTarget = this;
|
|
|
|
|
|
|
|
foreach (var d in inputManager.HoveredDrawables)
|
|
|
|
{
|
2020-07-24 09:41:09 +08:00
|
|
|
if (d is IProvideCursor p && p.ProvidingUserCursor)
|
|
|
|
{
|
|
|
|
newTarget = p;
|
|
|
|
break;
|
|
|
|
}
|
2020-07-19 10:37:10 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
if (currentTarget == newTarget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
currentTarget?.Cursor?.Hide();
|
|
|
|
newTarget.Cursor?.Show();
|
|
|
|
|
|
|
|
currentTarget = newTarget;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|