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
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
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
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
2021-07-21 12:18:24 +08:00
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2019-05-27 00:36:07 +08:00
|
|
|
public class KeyBindingPanel : SettingsSubPanel
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
protected override Drawable CreateHeader() => new SettingsHeader(InputSettingsStrings.KeyBindingPanelHeader, InputSettingsStrings.KeyBindingPanelDescription);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
|
|
|
private void load(RulesetStore rulesets, GlobalActionContainer global)
|
|
|
|
{
|
|
|
|
AddSection(new GlobalKeyBindingsSection(global));
|
|
|
|
|
|
|
|
foreach (var ruleset in rulesets.AvailableRulesets)
|
|
|
|
AddSection(new RulesetBindingsSection(ruleset));
|
2019-02-03 19:34:04 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|