mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
Fix tests by using the correct setting for touch input
This commit is contained in:
parent
c1967a5cbb
commit
ea357bafdd
@ -33,7 +33,7 @@ namespace osu.Game.Rulesets.Osu.UI
|
|||||||
|
|
||||||
private readonly OsuInputManager osuInputManager;
|
private readonly OsuInputManager osuInputManager;
|
||||||
|
|
||||||
private Bindable<bool> mouseDisabled = null!;
|
private Bindable<bool> tapsDisabled = null!;
|
||||||
|
|
||||||
public OsuTouchInputMapper(OsuInputManager inputManager)
|
public OsuTouchInputMapper(OsuInputManager inputManager)
|
||||||
{
|
{
|
||||||
@ -43,9 +43,7 @@ namespace osu.Game.Rulesets.Osu.UI
|
|||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(OsuConfigManager config)
|
private void load(OsuConfigManager config)
|
||||||
{
|
{
|
||||||
// The mouse button disable setting affects touch. It's a bit weird.
|
tapsDisabled = config.GetBindable<bool>(OsuSetting.GameplayDisableTaps);
|
||||||
// This is mostly just doing the same as what is done in RulesetInputManager to match behaviour.
|
|
||||||
mouseDisabled = config.GetBindable<bool>(OsuSetting.MouseDisableButtons);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Required to handle touches outside of the playfield when screen scaling is enabled.
|
// Required to handle touches outside of the playfield when screen scaling is enabled.
|
||||||
@ -64,7 +62,7 @@ namespace osu.Game.Rulesets.Osu.UI
|
|||||||
: OsuAction.LeftButton;
|
: OsuAction.LeftButton;
|
||||||
|
|
||||||
// Ignore any taps which trigger an action which is already handled. But track them for potential positional input in the future.
|
// Ignore any taps which trigger an action which is already handled. But track them for potential positional input in the future.
|
||||||
bool shouldResultInAction = osuInputManager.AllowGameplayInputs && !mouseDisabled.Value && trackedTouches.All(t => t.Action != action);
|
bool shouldResultInAction = osuInputManager.AllowGameplayInputs && !tapsDisabled.Value && trackedTouches.All(t => t.Action != action);
|
||||||
|
|
||||||
// If we can actually accept as an action, check whether this tap was on a circle's receptor.
|
// If we can actually accept as an action, check whether this tap was on a circle's receptor.
|
||||||
// This case gets special handling to allow for empty-space stream tapping.
|
// This case gets special handling to allow for empty-space stream tapping.
|
||||||
|
@ -72,6 +72,7 @@ namespace osu.Game.Rulesets.UI
|
|||||||
private void load(OsuConfigManager config)
|
private void load(OsuConfigManager config)
|
||||||
{
|
{
|
||||||
mouseDisabled = config.GetBindable<bool>(OsuSetting.MouseDisableButtons);
|
mouseDisabled = config.GetBindable<bool>(OsuSetting.MouseDisableButtons);
|
||||||
|
tapsDisabled = config.GetBindable<bool>(OsuSetting.GameplayDisableTaps);
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Action mapping (for replays)
|
#region Action mapping (for replays)
|
||||||
@ -124,6 +125,7 @@ namespace osu.Game.Rulesets.UI
|
|||||||
#region Setting application (disables etc.)
|
#region Setting application (disables etc.)
|
||||||
|
|
||||||
private Bindable<bool> mouseDisabled;
|
private Bindable<bool> mouseDisabled;
|
||||||
|
private Bindable<bool> tapsDisabled;
|
||||||
|
|
||||||
protected override bool Handle(UIEvent e)
|
protected override bool Handle(UIEvent e)
|
||||||
{
|
{
|
||||||
@ -147,9 +149,9 @@ namespace osu.Game.Rulesets.UI
|
|||||||
|
|
||||||
protected override bool HandleMouseTouchStateChange(TouchStateChangeEvent e)
|
protected override bool HandleMouseTouchStateChange(TouchStateChangeEvent e)
|
||||||
{
|
{
|
||||||
if (mouseDisabled.Value)
|
if (tapsDisabled.Value)
|
||||||
{
|
{
|
||||||
// Only propagate positional data when mouse buttons are disabled.
|
// Only propagate positional data when taps are disabled.
|
||||||
e = new TouchStateChangeEvent(e.State, e.Input, e.Touch, false, e.LastPosition);
|
e = new TouchStateChangeEvent(e.State, e.Input, e.Touch, false, e.LastPosition);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user