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
|
|
|
|
|
2019-08-09 19:05:28 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-08-09 19:05:28 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Audio
|
|
|
|
|
{
|
|
|
|
|
public class MainMenuSettings : SettingsSubsection
|
|
|
|
|
{
|
|
|
|
|
protected override string Header => "Main Menu";
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
2019-08-09 19:05:28 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Interface voices",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuSetting.MenuVoice)
|
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "osu! music theme",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuSetting.MenuMusic)
|
|
|
|
|
},
|
2019-08-09 19:05:28 +08:00
|
|
|
|
new SettingsDropdown<IntroSequence>
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Intro sequence",
|
|
|
|
|
Bindable = config.GetBindable<IntroSequence>(OsuSetting.IntroSequence),
|
|
|
|
|
Items = Enum.GetValues(typeof(IntroSequence)).Cast<IntroSequence>()
|
|
|
|
|
},
|
2019-11-22 01:38:31 +08:00
|
|
|
|
new SettingsDropdown<BackgroundSource>
|
2019-09-24 17:42:06 +08:00
|
|
|
|
{
|
2019-11-22 01:38:31 +08:00
|
|
|
|
LabelText = "Background source",
|
|
|
|
|
Bindable = config.GetBindable<BackgroundSource>(OsuSetting.MenuBackgroundSource),
|
|
|
|
|
Items = Enum.GetValues(typeof(BackgroundSource)).Cast<BackgroundSource>()
|
2019-09-24 17:42:06 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|