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
|
|
|
|
2023-10-12 14:51:19 +02:00
|
|
|
using osu.Framework.Allocation;
|
2020-04-25 20:35:46 +02:00
|
|
|
using osu.Framework.Graphics;
|
2019-03-27 19:29:27 +09:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2021-07-15 12:50:34 +09:00
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 18:19:50 +09:00
|
|
|
using osu.Game.Input.Bindings;
|
2021-08-12 09:53:31 +08:00
|
|
|
using osu.Game.Localisation;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2021-07-20 21:18:24 -07:00
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
2022-11-24 14:32:20 +09:00
|
|
|
public partial class GlobalKeyBindingsSection : SettingsSection
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
2020-04-25 20:35:46 +02:00
|
|
|
public override Drawable CreateIcon() => new SpriteIcon
|
|
|
|
{
|
|
|
|
Icon = FontAwesome.Solid.Globe
|
|
|
|
};
|
|
|
|
|
2021-08-12 09:53:31 +08:00
|
|
|
public override LocalisableString Header => InputSettingsStrings.GlobalKeyBindingHeader;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2023-10-12 14:51:19 +02:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
2023-10-12 14:51:19 +02:00
|
|
|
AddRange(new[]
|
2020-09-22 15:55:25 +09:00
|
|
|
{
|
2023-10-12 14:51:19 +02:00
|
|
|
new GlobalKeyBindingsSubsection(string.Empty, GlobalActionCategory.General),
|
|
|
|
new GlobalKeyBindingsSubsection(InputSettingsStrings.OverlaysSection, GlobalActionCategory.Overlays),
|
|
|
|
new GlobalKeyBindingsSubsection(InputSettingsStrings.AudioSection, GlobalActionCategory.AudioControl),
|
|
|
|
new GlobalKeyBindingsSubsection(InputSettingsStrings.SongSelectSection, GlobalActionCategory.SongSelect),
|
|
|
|
new GlobalKeyBindingsSubsection(InputSettingsStrings.InGameSection, GlobalActionCategory.InGame),
|
|
|
|
new GlobalKeyBindingsSubsection(InputSettingsStrings.ReplaySection, GlobalActionCategory.Replay),
|
|
|
|
new GlobalKeyBindingsSubsection(InputSettingsStrings.EditorSection, GlobalActionCategory.Editor),
|
|
|
|
});
|
2020-09-22 15:55:25 +09:00
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
}
|
|
|
|
}
|