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