1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 16:07:25 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/UserInterface/MainMenuSettings.cs

69 lines
2.5 KiB
C#
Raw Normal View History

// 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;
using osu.Framework.Bindables;
2019-08-09 19:05:28 +08:00
using osu.Framework.Graphics;
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;
using osu.Game.Online.API;
using osu.Game.Users;
2018-04-13 17:19:50 +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
private IBindable<User> user;
private SettingsEnumDropdown<BackgroundSource> backgroundSourceDropdown;
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config, IAPIProvider api)
2018-04-13 17:19:50 +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,
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,
Current = config.GetBindable<bool>(OsuSetting.MenuMusic)
2018-04-13 17:19:50 +08:00
},
new SettingsEnumDropdown<IntroSequence>
2019-08-09 19:05:28 +08:00
{
2021-08-12 10:48:29 +08:00
LabelText = UserInterfaceStrings.IntroSequence,
Current = config.GetBindable<IntroSequence>(OsuSetting.IntroSequence),
2019-08-09 19:05:28 +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,
Current = config.GetBindable<BackgroundSource>(OsuSetting.MenuBackgroundSource),
},
new SettingsEnumDropdown<SeasonalBackgroundMode>
{
2021-08-12 10:48:29 +08:00
LabelText = UserInterfaceStrings.SeasonalBackgrounds,
Current = config.GetBindable<SeasonalBackgroundMode>(OsuSetting.SeasonalBackgroundMode),
2019-09-24 17:42:06 +08:00
}
2018-04-13 17:19:50 +08:00
};
}
protected override void LoadComplete()
{
base.LoadComplete();
user.BindValueChanged(u =>
{
backgroundSourceDropdown.WarningText = u.NewValue?.IsSupporter != true ? UserInterfaceStrings.NotSupporterNote : default;
}, true);
}
2018-04-13 17:19:50 +08:00
}
}