mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
88 lines
2.9 KiB
C#
88 lines
2.9 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Input.Bindings;
|
|
using osu.Game.Localisation;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
|
{
|
|
public class GlobalKeyBindingsSection : SettingsSection
|
|
{
|
|
public override Drawable CreateIcon() => new SpriteIcon
|
|
{
|
|
Icon = FontAwesome.Solid.Globe
|
|
};
|
|
|
|
public override LocalisableString Header => InputSettingsStrings.GlobalKeyBindingHeader;
|
|
|
|
public GlobalKeyBindingsSection(GlobalActionContainer manager)
|
|
{
|
|
Add(new DefaultBindingsSubsection(manager));
|
|
Add(new AudioControlKeyBindingsSubsection(manager));
|
|
Add(new SongSelectKeyBindingSubsection(manager));
|
|
Add(new InGameKeyBindingsSubsection(manager));
|
|
Add(new EditorKeyBindingsSubsection(manager));
|
|
}
|
|
|
|
private class DefaultBindingsSubsection : KeyBindingsSubsection
|
|
{
|
|
protected override LocalisableString Header => string.Empty;
|
|
|
|
public DefaultBindingsSubsection(GlobalActionContainer manager)
|
|
: base(null)
|
|
{
|
|
Defaults = manager.GlobalKeyBindings;
|
|
}
|
|
}
|
|
|
|
private class SongSelectKeyBindingSubsection : KeyBindingsSubsection
|
|
{
|
|
protected override LocalisableString Header => InputSettingsStrings.SongSelectSection;
|
|
|
|
public SongSelectKeyBindingSubsection(GlobalActionContainer manager)
|
|
: base(null)
|
|
{
|
|
Defaults = manager.SongSelectKeyBindings;
|
|
}
|
|
}
|
|
|
|
private class InGameKeyBindingsSubsection : KeyBindingsSubsection
|
|
{
|
|
protected override LocalisableString Header => InputSettingsStrings.InGameSection;
|
|
|
|
public InGameKeyBindingsSubsection(GlobalActionContainer manager)
|
|
: base(null)
|
|
{
|
|
Defaults = manager.InGameKeyBindings;
|
|
}
|
|
}
|
|
|
|
private class AudioControlKeyBindingsSubsection : KeyBindingsSubsection
|
|
{
|
|
protected override LocalisableString Header => InputSettingsStrings.AudioSection;
|
|
|
|
public AudioControlKeyBindingsSubsection(GlobalActionContainer manager)
|
|
: base(null)
|
|
{
|
|
Defaults = manager.AudioControlKeyBindings;
|
|
}
|
|
}
|
|
|
|
private class EditorKeyBindingsSubsection : KeyBindingsSubsection
|
|
{
|
|
protected override LocalisableString Header => InputSettingsStrings.EditorSection;
|
|
|
|
public EditorKeyBindingsSubsection(GlobalActionContainer manager)
|
|
: base(null)
|
|
{
|
|
Defaults = manager.EditorKeyBindings;
|
|
}
|
|
}
|
|
}
|
|
}
|