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
|
|
|
|
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;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Input.Bindings;
|
|
|
|
using osu.Game.Overlays.Settings;
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.KeyBinding
|
|
|
|
{
|
|
|
|
public class GlobalKeyBindingsSection : SettingsSection
|
|
|
|
{
|
2020-04-26 02:35:46 +08:00
|
|
|
public override Drawable CreateIcon() => new SpriteIcon
|
|
|
|
{
|
|
|
|
Icon = FontAwesome.Solid.Globe
|
|
|
|
};
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
public override string Header => "Global";
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
protected override string Header => string.Empty;
|
|
|
|
|
|
|
|
public DefaultBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.GlobalKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-03 13:55:15 +08:00
|
|
|
private class SongSelectKeyBindingSubsection : KeyBindingsSubsection
|
|
|
|
{
|
|
|
|
protected override string Header => "Song Select";
|
|
|
|
|
|
|
|
public SongSelectKeyBindingSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.SongSelectKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
private class InGameKeyBindingsSubsection : KeyBindingsSubsection
|
|
|
|
{
|
|
|
|
protected override string Header => "In Game";
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
protected override string Header => "Audio";
|
|
|
|
|
|
|
|
public AudioControlKeyBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.AudioControlKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
2020-09-22 14:55:25 +08:00
|
|
|
|
|
|
|
private class EditorKeyBindingsSubsection : KeyBindingsSubsection
|
|
|
|
{
|
|
|
|
protected override string Header => "Editor";
|
|
|
|
|
|
|
|
public EditorKeyBindingsSubsection(GlobalActionContainer manager)
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
Defaults = manager.EditorKeyBindings;
|
|
|
|
}
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|