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
|
|
|
|
|
2023-10-12 20:51:19 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Input.Bindings;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2023-10-12 20:51:19 +08:00
|
|
|
|
using osu.Game.Input.Bindings;
|
2017-08-23 11:49:30 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
2023-10-12 20:51:19 +08:00
|
|
|
|
using Realms;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-07-21 12:18:24 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
2017-08-23 11:49:30 +08:00
|
|
|
|
{
|
|
|
|
|
public partial class VariantBindingsSubsection : KeyBindingsSubsection
|
|
|
|
|
{
|
2022-11-17 14:23:20 +08:00
|
|
|
|
protected override bool AutoAdvanceTarget => true;
|
|
|
|
|
|
2021-07-15 11:50:34 +08:00
|
|
|
|
protected override LocalisableString Header { get; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-10-12 20:51:19 +08:00
|
|
|
|
public RulesetInfo Ruleset { get; }
|
|
|
|
|
private readonly int variant;
|
|
|
|
|
|
2017-08-23 11:49:30 +08:00
|
|
|
|
public VariantBindingsSubsection(RulesetInfo ruleset, int variant)
|
|
|
|
|
{
|
|
|
|
|
Ruleset = ruleset;
|
2023-10-12 20:51:19 +08:00
|
|
|
|
this.variant = variant;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-08-23 13:19:14 +08:00
|
|
|
|
var rulesetInstance = ruleset.CreateInstance();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-11-12 17:45:42 +08:00
|
|
|
|
Header = rulesetInstance.GetVariantName(variant);
|
2017-08-23 13:19:14 +08:00
|
|
|
|
Defaults = rulesetInstance.GetDefaultKeyBindings(variant);
|
2017-08-23 11:49:30 +08:00
|
|
|
|
}
|
2023-10-12 20:51:19 +08:00
|
|
|
|
|
|
|
|
|
protected override IEnumerable<RealmKeyBinding> GetKeyBindings(Realm realm)
|
|
|
|
|
{
|
|
|
|
|
string rulesetName = Ruleset.ShortName;
|
|
|
|
|
|
|
|
|
|
return realm.All<RealmKeyBinding>()
|
|
|
|
|
.Where(b => b.RulesetName == rulesetName && b.Variant == variant);
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 17:08:10 +08:00
|
|
|
|
protected override KeyBindingRow CreateKeyBindingRow(object action, IEnumerable<KeyBinding> defaults)
|
|
|
|
|
=> new KeyBindingRow(action)
|
2023-10-12 20:51:19 +08:00
|
|
|
|
{
|
|
|
|
|
AllowMainMouseButtons = true,
|
|
|
|
|
Defaults = defaults.Select(d => d.KeyCombination),
|
|
|
|
|
};
|
2017-08-23 11:49:30 +08:00
|
|
|
|
}
|
2018-01-05 19:21:19 +08:00
|
|
|
|
}
|