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