mirror of
https://github.com/ppy/osu.git
synced 2026-05-27 02:01:18 +08:00
87 lines
3.3 KiB
C#
87 lines
3.3 KiB
C#
// 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.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
|
using osu.Game.Localisation;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.UserInterface
|
|
{
|
|
public partial class MainMenuSettings : SettingsSubsection
|
|
{
|
|
protected override LocalisableString Header => UserInterfaceStrings.MainMenuHeader;
|
|
|
|
private IBindable<APIUser> user = null!;
|
|
|
|
private readonly Bindable<SettingsNote.Data?> backgroundSourceNote = new Bindable<SettingsNote.Data?>();
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config, IAPIProvider api)
|
|
{
|
|
user = api.LocalUser.GetBoundCopy();
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new SettingsItemV2(new FormCheckBox
|
|
{
|
|
Caption = UserInterfaceStrings.ShowMenuTips,
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuTips)
|
|
}),
|
|
new SettingsItemV2(new FormCheckBox
|
|
{
|
|
Caption = UserInterfaceStrings.InterfaceVoices,
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuVoice)
|
|
})
|
|
{
|
|
Keywords = new[] { "intro", "welcome" },
|
|
},
|
|
new SettingsItemV2(new FormCheckBox
|
|
{
|
|
Caption = UserInterfaceStrings.OsuMusicTheme,
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuMusic)
|
|
})
|
|
{
|
|
Keywords = new[] { "intro", "welcome" },
|
|
},
|
|
new SettingsItemV2(new FormEnumDropdown<IntroSequence>
|
|
{
|
|
Caption = UserInterfaceStrings.IntroSequence,
|
|
Current = config.GetBindable<IntroSequence>(OsuSetting.IntroSequence),
|
|
}),
|
|
new SettingsItemV2(new FormEnumDropdown<BackgroundSource>
|
|
{
|
|
Caption = UserInterfaceStrings.BackgroundSource,
|
|
Current = config.GetBindable<BackgroundSource>(OsuSetting.MenuBackgroundSource),
|
|
})
|
|
{
|
|
Note = { BindTarget = backgroundSourceNote },
|
|
},
|
|
new SettingsItemV2(new FormEnumDropdown<SeasonalBackgroundMode>
|
|
{
|
|
Caption = UserInterfaceStrings.SeasonalBackgrounds,
|
|
Current = config.GetBindable<SeasonalBackgroundMode>(OsuSetting.SeasonalBackgroundMode),
|
|
})
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
user.BindValueChanged(u =>
|
|
{
|
|
if (u.NewValue?.IsSupporter != true)
|
|
backgroundSourceNote.Value = new SettingsNote.Data(UserInterfaceStrings.NotSupporterNote, SettingsNote.Type.Informational);
|
|
else
|
|
backgroundSourceNote.Value = null;
|
|
}, true);
|
|
}
|
|
}
|
|
}
|