1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Input/MouseSettings.cs

130 lines
5.1 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;
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.Game.Configuration;
using osu.Game.Graphics.UserInterface;
using osu.Game.Input;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.Input
{
public class MouseSettings : SettingsSubsection
{
protected override string Header => "Mouse";
private readonly BindableBool rawInputToggle = new BindableBool();
private Bindable<double> sensitivityBindable = new BindableDouble();
private Bindable<string> ignoredInputHandlers;
2018-04-13 17:19:50 +08:00
private Bindable<WindowMode> windowMode;
private SettingsEnumDropdown<OsuConfineMouseMode> confineMouseModeSetting;
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager osuConfig, FrameworkConfigManager config)
{
var configSensitivity = config.GetBindable<double>(FrameworkSetting.CursorSensitivity);
// use local bindable to avoid changing enabled state of game host's bindable.
sensitivityBindable = configSensitivity.GetUnboundCopy();
configSensitivity.BindValueChanged(val => sensitivityBindable.Value = val.NewValue);
sensitivityBindable.BindValueChanged(val => configSensitivity.Value = val.NewValue);
2018-04-13 17:19:50 +08:00
Children = new Drawable[]
{
new SettingsCheckbox
{
2018-09-15 22:30:11 +08:00
LabelText = "Raw input",
Current = rawInputToggle
2018-04-13 17:19:50 +08:00
},
2020-05-16 10:03:27 +08:00
new SensitivitySetting
2018-04-13 17:19:50 +08:00
{
2018-09-15 22:30:11 +08:00
LabelText = "Cursor sensitivity",
Current = sensitivityBindable
2018-04-13 17:19:50 +08:00
},
new SettingsCheckbox
{
LabelText = "Map absolute input to window",
Current = config.GetBindable<bool>(FrameworkSetting.MapAbsoluteInputToWindow)
2018-04-13 17:19:50 +08:00
},
confineMouseModeSetting = new SettingsEnumDropdown<OsuConfineMouseMode>
2018-04-13 17:19:50 +08:00
{
LabelText = "Confine mouse cursor to window",
Current = osuConfig.GetBindable<OsuConfineMouseMode>(OsuSetting.ConfineMouseMode)
2018-04-13 17:19:50 +08:00
},
new SettingsCheckbox
{
LabelText = "Disable mouse wheel during gameplay",
Current = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableWheel)
2018-04-13 17:19:50 +08:00
},
new SettingsCheckbox
{
LabelText = "Disable mouse buttons during gameplay",
Current = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableButtons)
2018-04-13 17:19:50 +08:00
},
};
windowMode = config.GetBindable<WindowMode>(FrameworkSetting.WindowMode);
windowMode.BindValueChanged(mode =>
{
var isFullscreen = mode.NewValue == WindowMode.Fullscreen;
if (isFullscreen)
{
confineMouseModeSetting.Current.Disabled = true;
confineMouseModeSetting.TooltipText = "Not applicable in full screen mode";
}
else
{
confineMouseModeSetting.Current.Disabled = false;
confineMouseModeSetting.TooltipText = string.Empty;
}
}, true);
if (RuntimeInfo.OS != RuntimeInfo.Platform.Windows)
2018-04-13 17:19:50 +08:00
{
rawInputToggle.Disabled = true;
sensitivityBindable.Disabled = true;
}
else
{
rawInputToggle.ValueChanged += enabled =>
{
// this is temporary until we support per-handler settings.
const string raw_mouse_handler = @"OsuTKRawMouseHandler";
2020-12-03 02:45:59 +08:00
const string standard_mouse_handlers = @"OsuTKMouseHandler MouseHandler";
2018-04-13 17:19:50 +08:00
2020-12-03 02:45:59 +08:00
ignoredInputHandlers.Value = enabled.NewValue ? standard_mouse_handlers : raw_mouse_handler;
};
2018-04-13 17:19:50 +08:00
ignoredInputHandlers = config.GetBindable<string>(FrameworkSetting.IgnoredInputHandlers);
ignoredInputHandlers.ValueChanged += handler =>
{
bool raw = !handler.NewValue.Contains("Raw");
rawInputToggle.Value = raw;
sensitivityBindable.Disabled = !raw;
};
2018-04-13 17:19:50 +08:00
ignoredInputHandlers.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>
{
2020-01-15 03:26:54 +08:00
public override string TooltipText => Current.Disabled ? "enable raw input to adjust sensitivity" : $"{base.TooltipText}x";
2018-04-13 17:19:50 +08:00
}
}
}