2019-01-24 16:43:03 +08:00
|
|
|
|
// 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-09-19 13:04:51 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2020-11-30 15:15:35 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-11-30 05:00:15 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.UserInterface
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-11-30 05:00:15 +08:00
|
|
|
|
public class GeneralSettings : SettingsSubsection
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-11-30 05:00:15 +08:00
|
|
|
|
protected override string Header => "General";
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
2019-09-19 13:04:51 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-09-18 01:15:18 +08:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Rotate cursor when dragging",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.CursorRotation)
|
2019-09-18 01:15:18 +08:00
|
|
|
|
},
|
2020-11-30 15:14:15 +08:00
|
|
|
|
new SettingsSlider<float, SizeSlider>
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Menu cursor size",
|
|
|
|
|
Current = config.GetBindable<float>(OsuSetting.MenuCursorSize),
|
|
|
|
|
KeyboardStep = 0.01f
|
|
|
|
|
},
|
2018-04-13 17:19:50 +08:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Parallax",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuParallax)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
2020-11-30 15:15:35 +08:00
|
|
|
|
new SettingsSlider<float, TimeSlider>
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Hold-to-confirm activation time",
|
|
|
|
|
Current = config.GetBindable<float>(OsuSetting.UIHoldActivationDelay),
|
|
|
|
|
KeyboardStep = 50
|
|
|
|
|
},
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2020-11-30 15:15:35 +08:00
|
|
|
|
|
|
|
|
|
private class TimeSlider : OsuSliderBar<float>
|
|
|
|
|
{
|
|
|
|
|
public override string TooltipText => Current.Value.ToString("N0") + "ms";
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|