mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
116 lines
4.0 KiB
C#
116 lines
4.0 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using osu.Framework.Input;
|
|
using osu.Framework.Input.Bindings;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Framework.Input.StateChanges.Events;
|
|
using osu.Game.Input.Bindings;
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
namespace osu.Game.Rulesets.Osu
|
|
{
|
|
public partial class OsuInputManager : RulesetInputManager<OsuAction>
|
|
{
|
|
public IEnumerable<OsuAction> PressedActions => KeyBindingContainer.PressedActions;
|
|
|
|
/// <summary>
|
|
/// Whether gameplay input buttons should be allowed.
|
|
/// Defaults to <c>true</c>, generally used for mods like Relax which turn off main inputs.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Of note, auxiliary inputs like the "smoke" key are left usable.
|
|
/// </remarks>
|
|
public bool AllowGameplayInputs
|
|
{
|
|
set => ((OsuKeyBindingContainer)KeyBindingContainer).AllowGameplayInputs = value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Whether the user's cursor movement events should be accepted.
|
|
/// Can be used to block only movement while still accepting button input.
|
|
/// </summary>
|
|
public bool AllowUserCursorMovement { get; set; } = true;
|
|
|
|
protected override KeyBindingContainer<OsuAction> CreateKeyBindingContainer(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique)
|
|
=> new OsuKeyBindingContainer(ruleset, variant, unique);
|
|
|
|
public OsuInputManager(RulesetInfo ruleset)
|
|
: base(ruleset, 0, SimultaneousBindingMode.Unique)
|
|
{
|
|
}
|
|
|
|
protected override bool Handle(UIEvent e)
|
|
{
|
|
if ((e is MouseMoveEvent || e is TouchMoveEvent) && !AllowUserCursorMovement) return false;
|
|
|
|
return base.Handle(e);
|
|
}
|
|
|
|
protected override bool HandleMouseTouchStateChange(TouchStateChangeEvent e)
|
|
{
|
|
if (!AllowUserCursorMovement)
|
|
{
|
|
// 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);
|
|
}
|
|
|
|
return base.HandleMouseTouchStateChange(e);
|
|
}
|
|
|
|
private partial class OsuKeyBindingContainer : RulesetKeyBindingContainer
|
|
{
|
|
private bool allowGameplayInputs = true;
|
|
|
|
/// <summary>
|
|
/// Whether gameplay input buttons should be allowed.
|
|
/// Defaults to <c>true</c>, generally used for mods like Relax which turn off main inputs.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Of note, auxiliary inputs like the "smoke" key are left usable.
|
|
/// </remarks>
|
|
public bool AllowGameplayInputs
|
|
{
|
|
get => allowGameplayInputs;
|
|
set
|
|
{
|
|
allowGameplayInputs = value;
|
|
ReloadMappings();
|
|
}
|
|
}
|
|
|
|
public OsuKeyBindingContainer(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique)
|
|
: base(ruleset, variant, unique)
|
|
{
|
|
}
|
|
|
|
protected override void ReloadMappings(IQueryable<RealmKeyBinding> realmKeyBindings)
|
|
{
|
|
base.ReloadMappings(realmKeyBindings);
|
|
|
|
if (!AllowGameplayInputs)
|
|
KeyBindings = KeyBindings.Where(b => b.GetAction<OsuAction>() == OsuAction.Smoke).ToList();
|
|
}
|
|
}
|
|
}
|
|
|
|
public enum OsuAction
|
|
{
|
|
[Description("Left button")]
|
|
LeftButton,
|
|
|
|
[Description("Right button")]
|
|
RightButton,
|
|
|
|
[Description("Smoke")]
|
|
Smoke,
|
|
}
|
|
}
|