2023-06-23 01:37:25 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 17:43:03 +09:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-08-12 09:53:31 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
|
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 KeyBindingPanel : SettingsSubPanel
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
|
protected override Drawable CreateHeader() => new SettingsHeader(InputSettingsStrings.KeyBindingPanelHeader, InputSettingsStrings.KeyBindingPanelDescription);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
2023-10-12 14:51:19 +02:00
|
|
|
|
private void load(RulesetStore rulesets)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2023-10-12 14:51:19 +02:00
|
|
|
|
AddSection(new GlobalKeyBindingsSection());
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
foreach (var ruleset in rulesets.AvailableRulesets)
|
|
|
|
|
AddSection(new RulesetBindingsSection(ruleset));
|
2019-02-03 14:34:04 +03:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|