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
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2021-05-04 16:00:35 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2019-08-09 19:05:28 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2021-08-12 10:48:29 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2021-05-04 16:00:35 +08:00
|
|
|
|
using osu.Game.Online.API;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
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
|
|
|
|
{
|
|
|
|
|
public class MainMenuSettings : SettingsSubsection
|
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
protected override LocalisableString Header => UserInterfaceStrings.MainMenuHeader;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-11-04 17:02:44 +08:00
|
|
|
|
private IBindable<APIUser> user;
|
2021-05-04 16:00:35 +08:00
|
|
|
|
|
|
|
|
|
private SettingsEnumDropdown<BackgroundSource> backgroundSourceDropdown;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2021-05-04 16:00:35 +08:00
|
|
|
|
private void load(OsuConfigManager config, IAPIProvider api)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-05-04 16:00:35 +08:00
|
|
|
|
user = api.LocalUser.GetBoundCopy();
|
|
|
|
|
|
2019-08-09 19:05:28 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.InterfaceVoices,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuVoice)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.OsuMusicTheme,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuMusic)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
2020-12-20 08:57:25 +08:00
|
|
|
|
new SettingsEnumDropdown<IntroSequence>
|
2019-08-09 19:05:28 +08:00
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.IntroSequence,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<IntroSequence>(OsuSetting.IntroSequence),
|
2019-08-09 19:05:28 +08:00
|
|
|
|
},
|
2021-05-04 16:00:35 +08:00
|
|
|
|
backgroundSourceDropdown = new SettingsEnumDropdown<BackgroundSource>
|
2019-09-24 17:42:06 +08:00
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.BackgroundSource,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<BackgroundSource>(OsuSetting.MenuBackgroundSource),
|
2020-10-30 00:28:04 +08:00
|
|
|
|
},
|
2020-12-20 08:57:25 +08:00
|
|
|
|
new SettingsEnumDropdown<SeasonalBackgroundMode>
|
2020-10-30 00:28:04 +08:00
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
|
LabelText = UserInterfaceStrings.SeasonalBackgrounds,
|
2020-10-30 22:54:10 +08:00
|
|
|
|
Current = config.GetBindable<SeasonalBackgroundMode>(OsuSetting.SeasonalBackgroundMode),
|
2019-09-24 17:42:06 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2021-05-04 16:00:35 +08:00
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2021-05-06 13:43:16 +08:00
|
|
|
|
user.BindValueChanged(u =>
|
2021-05-04 16:00:35 +08:00
|
|
|
|
{
|
2022-05-31 13:01:42 +08:00
|
|
|
|
if (u.NewValue?.IsSupporter != true)
|
2022-06-01 15:51:34 +08:00
|
|
|
|
backgroundSourceDropdown.SetNoticeText(UserInterfaceStrings.NotSupporterNote, true);
|
2022-05-31 13:01:42 +08:00
|
|
|
|
else
|
2022-06-01 15:51:34 +08:00
|
|
|
|
backgroundSourceDropdown.ClearNoticeText();
|
2021-05-04 16:00:35 +08:00
|
|
|
|
}, true);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|