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

146 lines
5.6 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-06 17:56:20 +08:00
2016-11-11 06:40:42 +08:00
using osu.Framework.Allocation;
using osu.Framework.Configuration;
2016-11-09 11:38:40 +08:00
using osu.Framework.Graphics;
using osu.Framework.Input;
2016-11-09 11:38:40 +08:00
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
2016-11-03 12:26:49 +08:00
namespace osu.Game.Overlays.Settings.Sections.Input
2016-11-11 06:40:42 +08:00
{
public class MouseSettings : SettingsSubsection
2016-11-11 06:40:42 +08:00
{
2016-11-09 11:38:40 +08:00
protected override string Header => "Mouse";
private readonly BindableBool rawInputToggle = new BindableBool();
private Bindable<string> activeInputHandlers;
private SensitivitySetting sensitivity;
[BackgroundDependencyLoader]
private void load(OsuConfigManager osuConfig, FrameworkConfigManager config)
2016-11-09 11:38:40 +08:00
{
2016-11-11 06:40:42 +08:00
Children = new Drawable[]
2016-11-09 11:38:40 +08:00
{
new SettingsCheckbox
{
LabelText = "Raw Input",
Bindable = rawInputToggle
},
sensitivity = new SensitivitySetting
{
LabelText = "Cursor Sensitivity",
Bindable = config.GetBindable<double>(FrameworkSetting.CursorSensitivity)
},
2018-02-05 15:13:39 +08:00
new SettingsCheckbox
{
LabelText = "Map absolute input to window",
Bindable = config.GetBindable<bool>(FrameworkSetting.MapAbsoluteInputToWindow)
},
new SettingsEnumDropdown<ConfineMouseMode>
2016-12-02 06:28:20 +08:00
{
LabelText = "Confine mouse cursor to window",
Bindable = config.GetBindable<ConfineMouseMode>(FrameworkSetting.ConfineMouseMode),
2016-12-02 06:28:20 +08:00
},
new SettingsCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Disable mouse wheel during gameplay",
2017-05-15 09:56:27 +08:00
Bindable = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableWheel)
2016-11-11 06:40:42 +08:00
},
new SettingsCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Disable mouse buttons during gameplay",
2017-05-15 09:56:27 +08:00
Bindable = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableButtons)
2016-11-11 06:40:42 +08:00
},
};
rawInputToggle.ValueChanged += enabled =>
{
// this is temporary until we support per-handler settings.
const string raw_mouse_handler = @"OpenTKRawMouseHandler";
const string standard_mouse_handler = @"OpenTKMouseHandler";
activeInputHandlers.Value = enabled ?
activeInputHandlers.Value.Replace(standard_mouse_handler, raw_mouse_handler) :
activeInputHandlers.Value.Replace(raw_mouse_handler, standard_mouse_handler);
};
activeInputHandlers = config.GetBindable<string>(FrameworkSetting.ActiveInputHandlers);
activeInputHandlers.ValueChanged += handlers =>
{
bool raw = handlers.Contains("Raw");
rawInputToggle.Value = raw;
sensitivity.Bindable.Disabled = !raw;
};
activeInputHandlers.TriggerChange();
2016-11-11 06:40:42 +08:00
}
2017-04-21 19:59:04 +08:00
private class SensitivitySetting : SettingsSlider<double, SensitivitySlider>
{
public override Bindable<double> Bindable
{
get { return ((SensitivitySlider)Control).Sensitivity; }
set
{
BindableDouble doubleValue = (BindableDouble)value;
// create a second layer of bindable so we can only handle state changes when not being dragged.
((SensitivitySlider)Control).Sensitivity = doubleValue;
// this bindable will still act as the "interactive" bindable displayed during a drag.
base.Bindable = new BindableDouble(doubleValue.Value)
{
Default = doubleValue.Default,
MinValue = doubleValue.MinValue,
MaxValue = doubleValue.MaxValue
};
// one-way binding to update the sliderbar with changes from external actions.
doubleValue.DisabledChanged += disabled => base.Bindable.Disabled = disabled;
doubleValue.ValueChanged += newValue => base.Bindable.Value = newValue;
}
}
2017-12-07 19:53:28 +08:00
public SensitivitySetting()
{
KeyboardStep = 0.01f;
}
}
2017-04-21 19:59:04 +08:00
private class SensitivitySlider : OsuSliderBar<double>
{
public Bindable<double> Sensitivity;
public SensitivitySlider()
{
Current.ValueChanged += newValue =>
{
if (!isDragging && Sensitivity != null)
Sensitivity.Value = newValue;
};
}
private bool isDragging;
protected override bool OnDragStart(InputState state)
{
isDragging = true;
return base.OnDragStart(state);
}
protected override bool OnDragEnd(InputState state)
{
isDragging = false;
Current.TriggerChange();
return base.OnDragEnd(state);
}
public override string TooltipText => Current.Disabled ? "Enable raw input to adjust sensitivity" : Current.Value.ToString(@"0.##x");
2017-04-21 19:59:04 +08:00
}
2016-11-11 06:40:42 +08:00
}
2017-11-30 15:03:26 +08:00
}