1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 05:57:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Input/MouseSettings.cs

94 lines
3.5 KiB
C#
Raw Normal View History

// 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 17:19:50 +08:00
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-04-13 17:19:50 +08:00
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Input;
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Settings.Sections.Input
{
public class MouseSettings : SettingsSubsection
{
protected override string Header => "Mouse";
private readonly BindableBool rawInputToggle = new BindableBool();
private Bindable<string> ignoredInputHandler;
2018-04-13 17:19:50 +08:00
private SensitivitySetting sensitivity;
[BackgroundDependencyLoader]
private void load(OsuConfigManager osuConfig, FrameworkConfigManager config)
{
Children = new Drawable[]
{
new SettingsCheckbox
{
2018-09-15 22:30:11 +08:00
LabelText = "Raw input",
2018-04-13 17:19:50 +08:00
Bindable = rawInputToggle
},
sensitivity = new SensitivitySetting
{
2018-09-15 22:30:11 +08:00
LabelText = "Cursor sensitivity",
2018-04-13 17:19:50 +08:00
Bindable = config.GetBindable<double>(FrameworkSetting.CursorSensitivity)
},
new SettingsCheckbox
{
LabelText = "Map absolute input to window",
Bindable = config.GetBindable<bool>(FrameworkSetting.MapAbsoluteInputToWindow)
},
new SettingsEnumDropdown<ConfineMouseMode>
{
LabelText = "Confine mouse cursor to window",
Bindable = config.GetBindable<ConfineMouseMode>(FrameworkSetting.ConfineMouseMode),
},
new SettingsCheckbox
{
LabelText = "Disable mouse wheel during gameplay",
Bindable = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableWheel)
},
new SettingsCheckbox
{
LabelText = "Disable mouse buttons during gameplay",
Bindable = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableButtons)
},
};
2019-02-21 17:56:34 +08:00
rawInputToggle.ValueChanged += e =>
2018-04-13 17:19:50 +08:00
{
// this is temporary until we support per-handler settings.
2018-11-20 15:51:59 +08:00
const string raw_mouse_handler = @"OsuTKRawMouseHandler";
const string standard_mouse_handler = @"OsuTKMouseHandler";
2018-04-13 17:19:50 +08:00
2019-02-21 17:56:34 +08:00
ignoredInputHandler.Value = e.NewValue ? standard_mouse_handler : raw_mouse_handler;
2018-04-13 17:19:50 +08:00
};
2018-04-13 20:46:17 +08:00
ignoredInputHandler = config.GetBindable<string>(FrameworkSetting.IgnoredInputHandlers);
2019-02-21 17:56:34 +08:00
ignoredInputHandler.ValueChanged += e =>
2018-04-13 17:19:50 +08:00
{
2019-02-21 17:56:34 +08:00
bool raw = !e.NewValue.Contains("Raw");
2018-04-13 17:19:50 +08:00
rawInputToggle.Value = raw;
sensitivity.Bindable.Disabled = !raw;
};
ignoredInputHandler.TriggerChange();
2018-04-13 17:19:50 +08:00
}
private class SensitivitySetting : SettingsSlider<double, SensitivitySlider>
{
public SensitivitySetting()
{
KeyboardStep = 0.01f;
TransferValueOnCommit = true;
2018-04-13 17:19:50 +08:00
}
}
private class SensitivitySlider : OsuSliderBar<double>
{
public override string TooltipText => Current.Disabled ? "Enable raw input to adjust sensitivity" : $"{base.TooltipText}x";
2018-04-13 17:19:50 +08:00
}
}
}