2016-12-06 09:56:20 +00:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Framework;
|
2016-11-10 22:40:42 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-12-01 22:30:53 +00:00
|
|
|
|
using osu.Framework.Configuration;
|
2016-11-09 03:38:40 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-11-03 04:26:49 +00:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2016-11-09 03:38:40 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2016-11-03 04:26:49 +00:00
|
|
|
|
|
2016-11-10 22:40:42 +00:00
|
|
|
|
namespace osu.Game.Overlays.Options.Input
|
|
|
|
|
{
|
|
|
|
|
public class MouseOptions : OptionsSubsection
|
|
|
|
|
{
|
2016-11-09 03:38:40 +00:00
|
|
|
|
protected override string Header => "Mouse";
|
|
|
|
|
|
2016-11-12 10:44:16 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
2016-11-09 03:38:40 +00:00
|
|
|
|
{
|
2016-11-10 22:40:42 +00:00
|
|
|
|
Children = new Drawable[]
|
2016-11-09 03:38:40 +00:00
|
|
|
|
{
|
2016-11-10 22:40:42 +00:00
|
|
|
|
new SpriteText { Text = "Sensitivity: TODO slider" },
|
2016-12-01 22:31:21 +00:00
|
|
|
|
new SliderOption<double>
|
2016-12-01 22:30:53 +00:00
|
|
|
|
{
|
2016-12-01 22:31:21 +00:00
|
|
|
|
LabelText = "Sensitivity",
|
2016-12-01 22:30:53 +00:00
|
|
|
|
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.MouseSpeed),
|
|
|
|
|
},
|
2016-12-01 22:28:20 +00:00
|
|
|
|
new CheckBoxOption
|
2016-11-10 22:40:42 +00:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Raw input",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.RawInput)
|
|
|
|
|
},
|
2016-12-01 22:28:20 +00:00
|
|
|
|
new CheckBoxOption
|
2016-11-10 22:40:42 +00:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Map absolute raw input to the osu! window",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.AbsoluteToOsuWindow)
|
|
|
|
|
},
|
2016-12-01 22:33:30 +00:00
|
|
|
|
new DropdownOption<ConfineMouseMode>
|
2016-12-01 22:28:20 +00:00
|
|
|
|
{
|
2016-12-01 22:33:30 +00:00
|
|
|
|
LabelText = "Confine mouse cursor",
|
2016-12-01 22:28:20 +00:00
|
|
|
|
Bindable = config.GetBindable<ConfineMouseMode>(OsuConfig.ConfineMouse),
|
|
|
|
|
},
|
|
|
|
|
new CheckBoxOption
|
2016-11-10 22:40:42 +00:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Disable mouse wheel in play mode",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.MouseDisableWheel)
|
|
|
|
|
},
|
2016-12-01 22:28:20 +00:00
|
|
|
|
new CheckBoxOption
|
2016-11-10 22:40:42 +00:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Disable mouse buttons in play mode",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.MouseDisableButtons)
|
|
|
|
|
},
|
2016-12-01 22:28:20 +00:00
|
|
|
|
new CheckBoxOption
|
2016-11-10 22:40:42 +00:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Cursor ripples",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.CursorRipple)
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-14 17:36:16 +00:00
|
|
|
|
}
|