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 System.Linq;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
if (!CanShowCursor)
|
|
|
|
{
|
|
|
|
currentTarget?.Cursor?.Hide();
|
2019-01-23 19:52:00 +08:00
|
|
|
currentTarget = null;
|
2018-04-13 17:19:50 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var newTarget = inputManager.HoveredDrawables.OfType<IProvideCursor>().FirstOrDefault(t => t.ProvidingUserCursor) ?? this;
|
|
|
|
|
|
|
|
if (currentTarget == newTarget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
currentTarget?.Cursor?.Hide();
|
|
|
|
newTarget.Cursor?.Show();
|
|
|
|
|
|
|
|
currentTarget = newTarget;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|