mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 21:52:55 +08:00
Ignore certain banned InputKey
s for gameplay purposes
This commit is contained in:
parent
7961dba1d3
commit
57640810b5
@ -16,6 +16,17 @@ namespace osu.Game.Input
|
|||||||
{
|
{
|
||||||
public event Action KeyBindingChanged;
|
public event Action KeyBindingChanged;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Keys which should not be allowed for gameplay input purposes.
|
||||||
|
/// </summary>
|
||||||
|
private static readonly IEnumerable<InputKey> banned_keys = new[]
|
||||||
|
{
|
||||||
|
InputKey.MouseWheelDown,
|
||||||
|
InputKey.MouseWheelLeft,
|
||||||
|
InputKey.MouseWheelUp,
|
||||||
|
InputKey.MouseWheelRight
|
||||||
|
};
|
||||||
|
|
||||||
public KeyBindingStore(DatabaseContextFactory contextFactory, RulesetStore rulesets, Storage storage = null)
|
public KeyBindingStore(DatabaseContextFactory contextFactory, RulesetStore rulesets, Storage storage = null)
|
||||||
: base(contextFactory, storage)
|
: base(contextFactory, storage)
|
||||||
{
|
{
|
||||||
@ -103,5 +114,16 @@ namespace osu.Game.Input
|
|||||||
|
|
||||||
KeyBindingChanged?.Invoke();
|
KeyBindingChanged?.Invoke();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static bool CheckValidForGameplay(KeyCombination combination)
|
||||||
|
{
|
||||||
|
foreach (var key in banned_keys)
|
||||||
|
{
|
||||||
|
if (combination.Keys.Contains(key))
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -13,6 +13,7 @@ using osu.Framework.Input.Events;
|
|||||||
using osu.Framework.Input.StateChanges.Events;
|
using osu.Framework.Input.StateChanges.Events;
|
||||||
using osu.Framework.Input.States;
|
using osu.Framework.Input.States;
|
||||||
using osu.Game.Configuration;
|
using osu.Game.Configuration;
|
||||||
|
using osu.Game.Input;
|
||||||
using osu.Game.Input.Bindings;
|
using osu.Game.Input.Bindings;
|
||||||
using osu.Game.Input.Handlers;
|
using osu.Game.Input.Handlers;
|
||||||
using osu.Game.Screens.Play;
|
using osu.Game.Screens.Play;
|
||||||
@ -169,6 +170,13 @@ namespace osu.Game.Rulesets.UI
|
|||||||
: base(ruleset, variant, unique)
|
: base(ruleset, variant, unique)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void ReloadMappings()
|
||||||
|
{
|
||||||
|
base.ReloadMappings();
|
||||||
|
|
||||||
|
KeyBindings = KeyBindings.Where(b => KeyBindingStore.CheckValidForGameplay(b.KeyCombination)).ToList();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user