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
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-04-26 02:35:46 +08:00
|
|
|
using osu.Framework.Graphics;
|
2019-03-27 18:29:27 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2021-07-15 11:50:34 +08:00
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Input.Bindings;
|
2021-08-12 09:53:31 +08:00
|
|
|
using osu.Game.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-07-21 12:18:24 +08:00
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
public class GlobalKeyBindingsSection : SettingsSection
|
|
|
|
{
|
2020-04-26 02:35:46 +08: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 17:19:50 +08:00
|
|
|
|
|
|
|
public GlobalKeyBindingsSection(GlobalActionContainer manager)
|
|
|
|
{
|
|
|
|
Add(new DefaultBindingsSubsection(manager));
|
2019-08-13 11:40:20 +08:00
|
|
|
Add(new AudioControlKeyBindingsSubsection(manager));
|
2020-06-03 13:55:15 +08:00
|
|
|
Add(new SongSelectKeyBindingSubsection(manager));
|
2018-04-13 17:19:50 +08:00
|
|
|
Add(new InGameKeyBindingsSubsection(manager));
|
2020-09-22 14:55:25 +08:00
|
|
|
Add(new EditorKeyBindingsSubsection(manager));
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private class DefaultBindingsSubsection : KeyBindingsSubsection
|
|
|
|
{
|
2021-07-15 11:50:34 +08:00
|
|
|
protected override LocalisableString Header => string.Empty;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
public DefaultBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.GlobalKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-03 13:55:15 +08:00
|
|
|
private class SongSelectKeyBindingSubsection : KeyBindingsSubsection
|
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
protected override LocalisableString Header => InputSettingsStrings.SongSelectSection;
|
2020-06-03 13:55:15 +08:00
|
|
|
|
|
|
|
public SongSelectKeyBindingSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.SongSelectKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
private class InGameKeyBindingsSubsection : KeyBindingsSubsection
|
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
protected override LocalisableString Header => InputSettingsStrings.InGameSection;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-02-28 12:31:40 +08:00
|
|
|
public InGameKeyBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Defaults = manager.InGameKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
2019-08-13 11:40:20 +08:00
|
|
|
|
|
|
|
private class AudioControlKeyBindingsSubsection : KeyBindingsSubsection
|
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
protected override LocalisableString Header => InputSettingsStrings.AudioSection;
|
2019-08-13 11:40:20 +08:00
|
|
|
|
|
|
|
public AudioControlKeyBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.AudioControlKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
2020-09-22 14:55:25 +08:00
|
|
|
|
|
|
|
private class EditorKeyBindingsSubsection : KeyBindingsSubsection
|
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
protected override LocalisableString Header => InputSettingsStrings.EditorSection;
|
2020-09-22 14:55:25 +08:00
|
|
|
|
|
|
|
public EditorKeyBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.EditorKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|