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
|
|
|
|
|
|
|
|
|
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-05-04 16:00:35 +08:00
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using osu.Game.Users;
|
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-07-15 11:50:34 +08:00
|
|
|
|
protected override LocalisableString Header => "Main Menu";
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-05-04 16:00:35 +08:00
|
|
|
|
private IBindable<User> user;
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Interface voices",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuVoice)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "osu! music theme",
|
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
|
|
|
|
{
|
|
|
|
|
LabelText = "Intro sequence",
|
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
|
|
|
|
{
|
2019-11-22 01:38:31 +08:00
|
|
|
|
LabelText = "Background source",
|
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
|
|
|
|
{
|
|
|
|
|
LabelText = "Seasonal backgrounds",
|
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
|
|
|
|
{
|
|
|
|
|
const string not_supporter_note = "Changes to this setting will only apply with an active osu!supporter tag.";
|
|
|
|
|
|
2021-05-06 13:43:16 +08:00
|
|
|
|
backgroundSourceDropdown.WarningText = u.NewValue?.IsSupporter != true ? not_supporter_note : string.Empty;
|
2021-05-04 16:00:35 +08:00
|
|
|
|
}, true);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|