2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2022-10-09 12:28:12 +00:00
|
|
|
|
using System;
|
2017-12-06 14:03:31 +00:00
|
|
|
|
using System.Collections.Generic;
|
2017-08-14 11:19:25 +00:00
|
|
|
|
using System.ComponentModel;
|
2022-10-09 12:28:12 +00:00
|
|
|
|
using System.Linq;
|
2021-12-16 10:57:24 +00:00
|
|
|
|
using osu.Framework.Input;
|
2017-08-11 07:11:46 +00:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2018-10-02 03:02:47 +00:00
|
|
|
|
using osu.Framework.Input.Events;
|
2021-12-10 10:14:33 +00:00
|
|
|
|
using osu.Framework.Input.StateChanges.Events;
|
2017-08-21 03:31:21 +00:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-08-10 09:28:43 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Osu
|
|
|
|
|
{
|
2017-08-21 03:31:21 +00:00
|
|
|
|
public class OsuInputManager : RulesetInputManager<OsuAction>
|
2017-08-10 09:28:43 +00:00
|
|
|
|
{
|
2017-12-06 14:03:31 +00:00
|
|
|
|
public IEnumerable<OsuAction> PressedActions => KeyBindingContainer.PressedActions;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-08-17 10:33:14 +00:00
|
|
|
|
public bool AllowUserPresses
|
2017-08-10 09:28:43 +00:00
|
|
|
|
{
|
2018-08-17 10:33:14 +00:00
|
|
|
|
set => ((OsuKeyBindingContainer)KeyBindingContainer).AllowUserPresses = value;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-12 06:00:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the user's cursor movement events should be accepted.
|
|
|
|
|
/// Can be used to block only movement while still accepting button input.
|
|
|
|
|
/// </summary>
|
2019-05-10 16:12:32 +00:00
|
|
|
|
public bool AllowUserCursorMovement { get; set; } = true;
|
|
|
|
|
|
2020-03-23 08:33:02 +00:00
|
|
|
|
protected override KeyBindingContainer<OsuAction> CreateKeyBindingContainer(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique)
|
2018-08-17 10:33:14 +00:00
|
|
|
|
=> new OsuKeyBindingContainer(ruleset, variant, unique);
|
|
|
|
|
|
|
|
|
|
public OsuInputManager(RulesetInfo ruleset)
|
|
|
|
|
: base(ruleset, 0, SimultaneousBindingMode.Unique)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-10 16:12:32 +00:00
|
|
|
|
protected override bool Handle(UIEvent e)
|
|
|
|
|
{
|
2021-12-10 14:13:13 +00:00
|
|
|
|
if ((e is MouseMoveEvent || e is TouchMoveEvent) && !AllowUserCursorMovement) return false;
|
2019-05-10 16:12:32 +00:00
|
|
|
|
|
|
|
|
|
return base.Handle(e);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-10 10:14:33 +00:00
|
|
|
|
protected override bool HandleMouseTouchStateChange(TouchStateChangeEvent e)
|
|
|
|
|
{
|
|
|
|
|
if (!AllowUserCursorMovement)
|
|
|
|
|
{
|
2021-12-16 10:57:24 +00:00
|
|
|
|
// Still allow for forwarding of the "touch" part, but replace the positional data with that of the mouse.
|
|
|
|
|
// Primarily relied upon by the "autopilot" osu! mod.
|
|
|
|
|
var touch = new Touch(e.Touch.Source, CurrentState.Mouse.Position);
|
|
|
|
|
e = new TouchStateChangeEvent(e.State, e.Input, touch, e.IsActive, null);
|
2021-12-10 10:14:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.HandleMouseTouchStateChange(e);
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-17 10:33:14 +00:00
|
|
|
|
private class OsuKeyBindingContainer : RulesetKeyBindingContainer
|
|
|
|
|
{
|
|
|
|
|
public bool AllowUserPresses = true;
|
|
|
|
|
|
2022-10-09 12:28:12 +00:00
|
|
|
|
private static readonly OsuAction[] all_actions = (OsuAction[])Enum.GetValues(typeof(OsuAction));
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<OsuAction> BlockedActions => !AllowUserPresses ? all_actions.Where(a => a != OsuAction.Smoke) : Enumerable.Empty<OsuAction>();
|
|
|
|
|
|
2018-08-17 10:33:14 +00:00
|
|
|
|
public OsuKeyBindingContainer(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique)
|
|
|
|
|
: base(ruleset, variant, unique)
|
|
|
|
|
{
|
|
|
|
|
}
|
2017-08-10 09:28:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-08-10 09:28:43 +00:00
|
|
|
|
public enum OsuAction
|
|
|
|
|
{
|
2018-09-15 14:30:11 +00:00
|
|
|
|
[Description("Left button")]
|
2017-08-10 09:28:43 +00:00
|
|
|
|
LeftButton,
|
2018-08-17 10:33:14 +00:00
|
|
|
|
|
2018-09-15 14:30:11 +00:00
|
|
|
|
[Description("Right button")]
|
2022-09-18 19:08:34 +00:00
|
|
|
|
RightButton,
|
|
|
|
|
|
|
|
|
|
[Description("Smoke")]
|
|
|
|
|
Smoke,
|
2017-08-10 09:28:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|