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
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2016-11-11 06:40:42 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-09-19 13:04:51 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-06-26 01:10:04 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2016-11-09 11:38:40 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2020-11-30 15:15:35 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2021-08-12 10:48:29 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-11-30 05:00:15 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.UserInterface
|
2016-11-11 06:40:42 +08:00
|
|
|
|
{
|
2020-11-30 05:00:15 +08:00
|
|
|
|
public partial class GeneralSettings : SettingsSubsection
|
2016-11-11 06:40:42 +08:00
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
protected override LocalisableString Header => UserInterfaceStrings.GeneralHeader;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
2016-11-09 11:38:40 +08:00
|
|
|
|
{
|
2019-09-19 13:04:51 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-11-09 11:38:40 +08:00
|
|
|
|
{
|
2019-09-18 01:15:18 +08:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.CursorRotation,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.CursorRotation)
|
2019-09-18 01:15:18 +08:00
|
|
|
|
},
|
2022-04-29 13:02:07 +08:00
|
|
|
|
new SettingsSlider<float, SizeSlider<float>>
|
2020-11-30 15:14:15 +08:00
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.MenuCursorSize,
|
2020-11-30 15:14:15 +08:00
|
|
|
|
Current = config.GetBindable<float>(OsuSetting.MenuCursorSize),
|
|
|
|
|
KeyboardStep = 0.01f
|
|
|
|
|
},
|
2017-05-15 09:55:29 +08:00
|
|
|
|
new SettingsCheckbox
|
2016-11-11 06:40:42 +08:00
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.Parallax,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuParallax)
|
2016-11-11 06:40:42 +08:00
|
|
|
|
},
|
2022-03-04 11:21:05 +08:00
|
|
|
|
new SettingsSlider<double, TimeSlider>
|
2020-11-30 15:15:35 +08:00
|
|
|
|
{
|
2022-04-26 14:06:27 +08:00
|
|
|
|
ClassicDefault = 0,
|
2021-08-14 21:52:09 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.HoldToConfirmActivationTime,
|
2022-03-04 11:21:05 +08:00
|
|
|
|
Current = config.GetBindable<double>(OsuSetting.UIHoldActivationDelay),
|
2022-04-14 18:27:06 +08:00
|
|
|
|
Keywords = new[] { @"delay" },
|
2020-11-30 15:15:35 +08:00
|
|
|
|
KeyboardStep = 50
|
|
|
|
|
},
|
2016-11-11 06:40:42 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-04 22:07:24 +08:00
|
|
|
|
}
|