mirror of
https://github.com/ppy/osu.git
synced 2024-11-16 03:47:26 +08:00
51cf85a9ab
Also updates touch settings so the touch handler can't be disabled on mobile.
51 lines
1.7 KiB
C#
51 lines
1.7 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.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Input.Handlers;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Localisation;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
|
{
|
|
/// <summary>
|
|
/// Touch input settings subsection common to all touch handlers (even on different platforms).
|
|
/// </summary>
|
|
public partial class TouchSettings : SettingsSubsection
|
|
{
|
|
private readonly InputHandler handler;
|
|
|
|
protected override LocalisableString Header => TouchSettingsStrings.Touch;
|
|
|
|
public TouchSettings(InputHandler handler)
|
|
{
|
|
this.handler = handler;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager osuConfig)
|
|
{
|
|
if (!RuntimeInfo.IsMobile) // don't allow disabling the only input method (touch) on mobile.
|
|
{
|
|
Add(new SettingsCheckbox
|
|
{
|
|
LabelText = CommonStrings.Enabled,
|
|
Current = handler.Enabled
|
|
});
|
|
}
|
|
|
|
Add(new SettingsCheckbox
|
|
{
|
|
LabelText = TouchSettingsStrings.DisableTapsDuringGameplay,
|
|
Current = osuConfig.GetBindable<bool>(OsuSetting.TouchDisableGameplayTaps)
|
|
});
|
|
}
|
|
|
|
public override IEnumerable<LocalisableString> FilterTerms => base.FilterTerms.Concat(new LocalisableString[] { @"touchscreen" });
|
|
}
|
|
}
|