2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
2017-02-07 13:52:19 +09:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-06-25 19:10:04 +02:00
|
|
|
|
using osu.Framework.Localisation;
|
2017-02-07 13:52:19 +09:00
|
|
|
|
using osu.Game.Configuration;
|
2021-08-12 10:48:29 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2022-06-21 13:03:46 +02:00
|
|
|
|
using osu.Game.Overlays.Mods.Input;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2020-11-29 22:00:15 +01:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.UserInterface
|
2017-02-07 13:52:19 +09:00
|
|
|
|
{
|
2017-05-15 10:55:29 +09:00
|
|
|
|
public partial class SongSelectSettings : SettingsSubsection
|
2017-02-07 13:52:19 +09:00
|
|
|
|
{
|
2021-08-14 10:56:52 +08:00
|
|
|
|
protected override LocalisableString Header => UserInterfaceStrings.SongSelectHeader;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2016-11-30 10:32:07 -05:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2018-04-13 19:50:37 +09:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
2022-04-26 15:06:27 +09:00
|
|
|
|
ClassicDefault = true,
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.RightMouseScroll,
|
2020-10-06 17:18:41 +09:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.SongSelectRightMouseScroll),
|
2018-04-13 19:50:37 +09:00
|
|
|
|
},
|
2017-11-24 18:34:20 +09:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.ShowConvertedBeatmaps,
|
2020-10-06 17:18:41 +09:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.ShowConvertedBeatmaps),
|
2017-11-24 18:34:20 +09:00
|
|
|
|
},
|
2017-12-13 18:10:32 +09:00
|
|
|
|
new SettingsEnumDropdown<RandomSelectAlgorithm>
|
2017-05-31 18:41:15 +02:00
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.RandomSelectionAlgorithm,
|
2020-10-06 17:18:41 +09:00
|
|
|
|
Current = config.GetBindable<RandomSelectAlgorithm>(OsuSetting.RandomSelectAlgorithm),
|
2022-06-21 13:03:46 +02:00
|
|
|
|
},
|
|
|
|
|
new SettingsEnumDropdown<ModSelectHotkeyStyle>
|
|
|
|
|
{
|
|
|
|
|
LabelText = UserInterfaceStrings.ModSelectHotkeyStyle,
|
|
|
|
|
Current = config.GetBindable<ModSelectHotkeyStyle>(OsuSetting.ModSelectHotkeyStyle),
|
|
|
|
|
ClassicDefault = ModSelectHotkeyStyle.Classic
|
2023-01-23 13:53:31 +01:00
|
|
|
|
},
|
2023-01-24 09:19:53 +01:00
|
|
|
|
new SettingsCheckbox
|
2023-12-14 10:04:37 +01:00
|
|
|
|
{
|
|
|
|
|
LabelText = UserInterfaceStrings.ModSelectTextSearchStartsActive,
|
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.ModSelectTextSearchStartsActive),
|
|
|
|
|
ClassicDefault = false
|
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
2023-01-23 13:53:31 +01:00
|
|
|
|
{
|
2023-01-24 10:18:00 +01:00
|
|
|
|
LabelText = GameplaySettingsStrings.BackgroundBlur,
|
2023-01-25 16:31:41 +09:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.SongSelectBackgroundBlur),
|
|
|
|
|
ClassicDefault = false,
|
2017-11-24 18:34:20 +09:00
|
|
|
|
}
|
2016-11-30 10:32:07 -05:00
|
|
|
|
};
|
|
|
|
|
}
|
2017-02-07 13:52:19 +09:00
|
|
|
|
}
|
|
|
|
|
}
|