mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 13:07:24 +08:00
69 lines
2.5 KiB
C#
69 lines
2.5 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.Game.Configuration;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.UserInterface
|
|
{
|
|
public class MainMenuSettings : SettingsSubsection
|
|
{
|
|
protected override string Header => "Main Menu";
|
|
|
|
private IBindable<User> user;
|
|
|
|
private SettingsEnumDropdown<BackgroundSource> backgroundSourceDropdown;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config, IAPIProvider api)
|
|
{
|
|
user = api.LocalUser.GetBoundCopy();
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new SettingsCheckbox
|
|
{
|
|
LabelText = "Interface voices",
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuVoice)
|
|
},
|
|
new SettingsCheckbox
|
|
{
|
|
LabelText = "osu! music theme",
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuMusic)
|
|
},
|
|
new SettingsEnumDropdown<IntroSequence>
|
|
{
|
|
LabelText = "Intro sequence",
|
|
Current = config.GetBindable<IntroSequence>(OsuSetting.IntroSequence),
|
|
},
|
|
backgroundSourceDropdown = new SettingsEnumDropdown<BackgroundSource>
|
|
{
|
|
LabelText = "Background source",
|
|
Current = config.GetBindable<BackgroundSource>(OsuSetting.MenuBackgroundSource),
|
|
},
|
|
new SettingsEnumDropdown<SeasonalBackgroundMode>
|
|
{
|
|
LabelText = "Seasonal backgrounds",
|
|
Current = config.GetBindable<SeasonalBackgroundMode>(OsuSetting.SeasonalBackgroundMode),
|
|
}
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
backgroundSourceDropdown.Current.BindValueChanged(source =>
|
|
{
|
|
const string not_supporter_note = "Changes to this setting will only apply with an active osu!supporter tag.";
|
|
|
|
backgroundSourceDropdown.WarningText = user.Value?.IsSupporter != true ? not_supporter_note : string.Empty;
|
|
}, true);
|
|
}
|
|
}
|
|
}
|