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
|
|
|
|
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
|
|
|
|
|
|
|
public GlobalKeyBindingsSection(GlobalActionContainer manager)
|
|
|
|
{
|
|
|
|
Add(new DefaultBindingsSubsection(manager));
|
2022-08-09 17:01:36 +09:00
|
|
|
Add(new OverlayBindingsSubsection(manager));
|
2019-08-13 12:40:20 +09:00
|
|
|
Add(new AudioControlKeyBindingsSubsection(manager));
|
2020-06-03 17:55:15 +12:00
|
|
|
Add(new SongSelectKeyBindingSubsection(manager));
|
2018-04-13 18:19:50 +09:00
|
|
|
Add(new InGameKeyBindingsSubsection(manager));
|
2023-02-02 15:25:45 +09:00
|
|
|
Add(new ReplayKeyBindingsSubsection(manager));
|
2020-09-22 15:55:25 +09:00
|
|
|
Add(new EditorKeyBindingsSubsection(manager));
|
2018-04-13 18:19:50 +09:00
|
|
|
}
|
|
|
|
|
2022-11-24 14:32:20 +09:00
|
|
|
private partial class DefaultBindingsSubsection : KeyBindingsSubsection
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
2021-07-15 12:50:34 +09:00
|
|
|
protected override LocalisableString Header => string.Empty;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
public DefaultBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.GlobalKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-24 14:32:20 +09:00
|
|
|
private partial class OverlayBindingsSubsection : KeyBindingsSubsection
|
2022-08-09 17:01:36 +09:00
|
|
|
{
|
|
|
|
protected override LocalisableString Header => InputSettingsStrings.OverlaysSection;
|
|
|
|
|
|
|
|
public OverlayBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.OverlayKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-24 14:32:20 +09:00
|
|
|
private partial class SongSelectKeyBindingSubsection : KeyBindingsSubsection
|
2020-06-03 17:55:15 +12:00
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
protected override LocalisableString Header => InputSettingsStrings.SongSelectSection;
|
2020-06-03 17:55:15 +12:00
|
|
|
|
|
|
|
public SongSelectKeyBindingSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.SongSelectKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-24 14:32:20 +09:00
|
|
|
private partial class InGameKeyBindingsSubsection : KeyBindingsSubsection
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
protected override LocalisableString Header => InputSettingsStrings.InGameSection;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2019-02-28 13:31:40 +09:00
|
|
|
public InGameKeyBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
|
|
|
Defaults = manager.InGameKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
2019-08-13 12:40:20 +09:00
|
|
|
|
2023-02-02 15:25:45 +09:00
|
|
|
private partial class ReplayKeyBindingsSubsection : KeyBindingsSubsection
|
|
|
|
{
|
|
|
|
protected override LocalisableString Header => InputSettingsStrings.ReplaySection;
|
|
|
|
|
|
|
|
public ReplayKeyBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.ReplayKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-24 14:32:20 +09:00
|
|
|
private partial class AudioControlKeyBindingsSubsection : KeyBindingsSubsection
|
2019-08-13 12:40:20 +09:00
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
protected override LocalisableString Header => InputSettingsStrings.AudioSection;
|
2019-08-13 12:40:20 +09:00
|
|
|
|
|
|
|
public AudioControlKeyBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.AudioControlKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
2020-09-22 15:55:25 +09:00
|
|
|
|
2022-11-24 14:32:20 +09:00
|
|
|
private partial class EditorKeyBindingsSubsection : KeyBindingsSubsection
|
2020-09-22 15:55:25 +09:00
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
protected override LocalisableString Header => InputSettingsStrings.EditorSection;
|
2020-09-22 15:55:25 +09:00
|
|
|
|
|
|
|
public EditorKeyBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.EditorKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
}
|
|
|
|
}
|