2023-01-16 18:35:55 +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.
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2023-01-16 19:13:31 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
2023-01-16 18:35:55 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Framework.Input.Events;
|
2023-01-16 19:11:59 +08:00
|
|
|
|
using osu.Framework.Input.StateChanges;
|
2023-01-16 19:13:31 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2023-01-16 18:35:55 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
|
|
|
|
{
|
|
|
|
|
public partial class OsuTouchInputMapper : Drawable
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is our parent <see cref="osuInputManager"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly OsuInputManager osuInputManager;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// All the active <see cref="TouchSource"/>s and the <see cref="OsuAction"/> that it triggered (if any).
|
|
|
|
|
/// Ordered from oldest to newest touch chronologically.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly List<TrackedTouch> trackedTouches = new List<TrackedTouch>();
|
|
|
|
|
|
2023-01-16 19:13:31 +08:00
|
|
|
|
private Bindable<bool> mouseDisabled = null!;
|
|
|
|
|
|
2023-01-16 18:35:55 +08:00
|
|
|
|
public OsuTouchInputMapper(OsuInputManager inputManager)
|
|
|
|
|
{
|
|
|
|
|
osuInputManager = inputManager;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-17 13:52:15 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2023-01-16 19:13:31 +08:00
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
mouseDisabled = config.GetBindable<bool>(OsuSetting.MouseDisableButtons);
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-16 19:11:59 +08:00
|
|
|
|
protected override void OnTouchMove(TouchMoveEvent e)
|
|
|
|
|
{
|
|
|
|
|
base.OnTouchMove(e);
|
|
|
|
|
handleTouchMovement(e);
|
|
|
|
|
}
|
2023-01-16 18:35:55 +08:00
|
|
|
|
|
|
|
|
|
protected override bool OnTouchDown(TouchDownEvent e)
|
|
|
|
|
{
|
2023-01-16 19:11:59 +08:00
|
|
|
|
OsuAction action = trackedTouches.Any(t => t.Action == OsuAction.LeftButton)
|
|
|
|
|
? OsuAction.RightButton
|
|
|
|
|
: OsuAction.LeftButton;
|
|
|
|
|
|
2023-01-16 20:07:28 +08:00
|
|
|
|
// Ignore any taps which trigger an action which is already handled. But track them for potential positional input in the future.
|
|
|
|
|
bool shouldResultInAction = !mouseDisabled.Value && trackedTouches.All(t => t.Action != action);
|
|
|
|
|
|
2023-01-17 13:51:45 +08:00
|
|
|
|
trackedTouches.Add(new TrackedTouch(e.Touch.Source, shouldResultInAction ? action : null));
|
2023-01-16 20:07:28 +08:00
|
|
|
|
|
|
|
|
|
// Important to update position before triggering the pressed action.
|
2023-01-16 19:11:59 +08:00
|
|
|
|
handleTouchMovement(e);
|
2023-01-16 18:35:55 +08:00
|
|
|
|
|
2023-01-16 20:07:28 +08:00
|
|
|
|
if (shouldResultInAction)
|
2023-01-16 18:35:55 +08:00
|
|
|
|
osuInputManager.KeyBindingContainer.TriggerPressed(action);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-16 19:11:59 +08:00
|
|
|
|
private void handleTouchMovement(TouchEvent touchEvent)
|
|
|
|
|
{
|
2023-01-16 20:07:28 +08:00
|
|
|
|
// Movement should only be tracked for the most recent touch.
|
2023-01-17 13:51:45 +08:00
|
|
|
|
if (touchEvent.Touch.Source != trackedTouches.Last().Source)
|
2023-01-16 20:07:28 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2023-01-16 19:11:59 +08:00
|
|
|
|
new MousePositionAbsoluteInput { Position = touchEvent.ScreenSpaceTouch.Position }.Apply(osuInputManager.CurrentState, osuInputManager);
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-16 18:35:55 +08:00
|
|
|
|
protected override void OnTouchUp(TouchUpEvent e)
|
|
|
|
|
{
|
2023-01-17 13:51:45 +08:00
|
|
|
|
var tracked = trackedTouches.First(t => t.Source == e.Touch.Source);
|
2023-01-16 18:35:55 +08:00
|
|
|
|
|
|
|
|
|
if (tracked.Action is OsuAction action)
|
|
|
|
|
osuInputManager.KeyBindingContainer.TriggerReleased(action);
|
|
|
|
|
|
|
|
|
|
trackedTouches.Remove(tracked);
|
|
|
|
|
|
|
|
|
|
base.OnTouchUp(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class TrackedTouch
|
|
|
|
|
{
|
2023-01-17 13:51:45 +08:00
|
|
|
|
public readonly TouchSource Source;
|
2023-01-16 18:35:55 +08:00
|
|
|
|
|
|
|
|
|
public readonly OsuAction? Action;
|
|
|
|
|
|
2023-01-17 13:51:45 +08:00
|
|
|
|
public TrackedTouch(TouchSource source, OsuAction? action)
|
2023-01-16 18:35:55 +08:00
|
|
|
|
{
|
2023-01-17 13:51:45 +08:00
|
|
|
|
Source = source;
|
2023-01-16 18:35:55 +08:00
|
|
|
|
Action = action;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|