// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE 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 { /// /// A container which provides a which can be overridden by hovered s. /// public class MenuCursorContainer : Container, IProvideCursor { protected override Container Content => content; private readonly Container content; /// /// Whether any cursors can be displayed. /// internal bool CanShowCursor = true; public CursorContainer Cursor { get; } public bool ProvidingUserCursor => true; public MenuCursorContainer() { AddRangeInternal(new Drawable[] { Cursor = new MenuCursor { State = Visibility.Hidden }, content = new Container { RelativeSizeAxes = Axes.Both } }); } private InputManager inputManager; protected override void LoadComplete() { base.LoadComplete(); inputManager = GetContainingInputManager(); } private IProvideCursor currentTarget; protected override void Update() { base.Update(); if (!CanShowCursor) { currentTarget?.Cursor?.Hide(); currentTarget = null; return; } var newTarget = inputManager.HoveredDrawables.OfType().FirstOrDefault(t => t.ProvidingUserCursor) ?? this; if (currentTarget == newTarget) return; currentTarget?.Cursor?.Hide(); newTarget.Cursor?.Show(); currentTarget = newTarget; } } }