2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
2021-11-23 04:00:33 +00:00
|
|
|
using System.Diagnostics;
|
2020-04-25 18:35:46 +00:00
|
|
|
using osu.Framework.Graphics;
|
2019-03-27 10:29:27 +00:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2021-08-12 01:53:31 +00:00
|
|
|
using osu.Framework.Localisation;
|
2017-08-15 15:08:59 +00:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Rulesets;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2021-07-21 04:18:24 +00:00
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
2017-08-15 15:08:59 +00:00
|
|
|
{
|
2017-08-23 03:49:30 +00:00
|
|
|
public class RulesetBindingsSection : SettingsSection
|
2017-08-15 15:08:59 +00:00
|
|
|
{
|
2021-11-24 03:22:13 +00:00
|
|
|
public override Drawable CreateIcon() => ruleset?.CreateInstance().CreateIcon() ?? new SpriteIcon
|
2020-04-25 18:35:46 +00:00
|
|
|
{
|
|
|
|
Icon = OsuIcon.Hot
|
|
|
|
};
|
|
|
|
|
2021-08-12 01:53:31 +00:00
|
|
|
public override LocalisableString Header => ruleset.Name;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-23 03:49:30 +00:00
|
|
|
private readonly RulesetInfo ruleset;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-15 15:08:59 +00:00
|
|
|
public RulesetBindingsSection(RulesetInfo ruleset)
|
|
|
|
{
|
2017-08-23 03:49:30 +00:00
|
|
|
this.ruleset = ruleset;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-23 03:49:30 +00:00
|
|
|
var r = ruleset.CreateInstance();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2021-11-23 04:00:33 +00:00
|
|
|
Debug.Assert(r != null);
|
|
|
|
|
2021-10-27 04:04:41 +00:00
|
|
|
foreach (int variant in r.AvailableVariants)
|
2017-08-23 03:49:30 +00:00
|
|
|
Add(new VariantBindingsSubsection(ruleset, variant));
|
2017-08-15 15:08:59 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-05 11:21:19 +00:00
|
|
|
}
|