// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Cursor; using osu.Framework.Input; using osu.Framework.Input.StateChanges; using osu.Game.Configuration; namespace osu.Game.Graphics.Cursor { /// /// A container which provides the main . /// Also handles cases where a more localised cursor is provided by another component (via ). /// public class GlobalCursorDisplay : Container, IProvideCursor { /// /// Control whether any cursor should be displayed. /// internal bool ShowCursor = true; public CursorContainer MenuCursor { get; } public bool ProvidingUserCursor => true; protected override Container Content { get; } = new Container { RelativeSizeAxes = Axes.Both }; private Bindable showDuringTouch = null!; private InputManager inputManager = null!; private IProvideCursor? currentOverrideProvider; [Resolved] private OsuConfigManager config { get; set; } = null!; public GlobalCursorDisplay() { AddRangeInternal(new Drawable[] { MenuCursor = new MenuCursor { State = { Value = Visibility.Hidden } }, Content = new Container { RelativeSizeAxes = Axes.Both } }); } protected override void LoadComplete() { base.LoadComplete(); inputManager = GetContainingInputManager(); showDuringTouch = config.GetBindable(OsuSetting.GameplayCursorDuringTouch); } protected override void Update() { base.Update(); var lastMouseSource = inputManager.CurrentState.Mouse.LastSource; bool hasValidInput = lastMouseSource != null && (showDuringTouch.Value || lastMouseSource is not ISourcedFromTouch); if (!hasValidInput || !ShowCursor) { currentOverrideProvider?.MenuCursor?.Hide(); currentOverrideProvider = null; return; } IProvideCursor newOverrideProvider = this; foreach (var d in inputManager.HoveredDrawables) { if (d is IProvideCursor p && p.ProvidingUserCursor) { newOverrideProvider = p; break; } } if (currentOverrideProvider == newOverrideProvider) return; currentOverrideProvider?.MenuCursor?.Hide(); newOverrideProvider.MenuCursor?.Show(); currentOverrideProvider = newOverrideProvider; } } }