2023-06-23 00:37:25 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
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
|
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
|
public partial 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)]
|
2023-10-12 20:51:19 +08:00
|
|
|
|
private void load(RulesetStore rulesets)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2023-10-12 20:51:19 +08:00
|
|
|
|
AddSection(new GlobalKeyBindingsSection());
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|