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
|
|
|
|
|
2023-10-12 14:51:19 +02:00
|
|
|
|
using osu.Framework.Allocation;
|
2020-04-25 20:35:46 +02:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-08-12 09:53:31 +08:00
|
|
|
|
using osu.Framework.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 RulesetBindingsSection : SettingsSection
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2023-06-24 00:59:36 +09:00
|
|
|
|
public override Drawable CreateIcon() => ruleset.CreateInstance().CreateIcon();
|
2020-04-25 20:35:46 +02:00
|
|
|
|
|
2021-08-12 09:53:31 +08:00
|
|
|
|
public override LocalisableString Header => ruleset.Name;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
private readonly RulesetInfo ruleset;
|
|
|
|
|
|
|
|
|
|
public RulesetBindingsSection(RulesetInfo ruleset)
|
|
|
|
|
{
|
|
|
|
|
this.ruleset = ruleset;
|
2023-10-12 14:51:19 +02:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2023-10-12 14:51:19 +02:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2018-04-13 18:19:50 +09:00
|
|
|
|
var r = ruleset.CreateInstance();
|
|
|
|
|
|
2021-10-27 13:04:41 +09:00
|
|
|
|
foreach (int variant in r.AvailableVariants)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
Add(new VariantBindingsSubsection(ruleset, variant));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|