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
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2017-08-15 23:08:59 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Allocation;
|
2017-08-23 18:26:49 +08:00
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
using osu.Framework.Graphics;
|
2022-05-16 13:09:37 +08:00
|
|
|
using osu.Framework.Localisation;
|
2021-01-11 18:47:51 +08:00
|
|
|
using osu.Game.Database;
|
2021-01-13 15:53:04 +08:00
|
|
|
using osu.Game.Input.Bindings;
|
2017-08-15 23:08:59 +08:00
|
|
|
using osu.Game.Rulesets;
|
2021-08-12 09:53:31 +08:00
|
|
|
using osu.Game.Localisation;
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK;
|
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-15 23:08:59 +08:00
|
|
|
{
|
2017-08-23 11:49:30 +08:00
|
|
|
public abstract class KeyBindingsSubsection : SettingsSubsection
|
2017-08-15 23:08:59 +08:00
|
|
|
{
|
2017-08-16 16:19:27 +08:00
|
|
|
protected IEnumerable<Framework.Input.Bindings.KeyBinding> Defaults;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-01-17 14:59:14 +08:00
|
|
|
public RulesetInfo Ruleset { get; protected set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-08-23 15:10:31 +08:00
|
|
|
private readonly int? variant;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-08-23 15:10:31 +08:00
|
|
|
protected KeyBindingsSubsection(int? variant)
|
2017-08-15 23:08:59 +08:00
|
|
|
{
|
2017-08-23 11:49:30 +08:00
|
|
|
this.variant = variant;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-10-10 02:29:44 +08:00
|
|
|
FlowContent.Spacing = new Vector2(0, 3);
|
2017-08-15 23:08:59 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-08-15 23:08:59 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2022-01-24 18:59:58 +08:00
|
|
|
private void load(RealmAccess realm)
|
2017-08-15 23:08:59 +08:00
|
|
|
{
|
2021-11-22 17:34:04 +08:00
|
|
|
string rulesetName = Ruleset?.ShortName;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-01-24 18:59:58 +08:00
|
|
|
var bindings = realm.Run(r => r.All<RealmKeyBinding>()
|
|
|
|
.Where(b => b.RulesetName == rulesetName && b.Variant == variant)
|
|
|
|
.Detach());
|
2021-01-14 15:33:55 +08:00
|
|
|
|
|
|
|
foreach (var defaultGroup in Defaults.GroupBy(d => d.Action))
|
2017-08-23 11:49:30 +08:00
|
|
|
{
|
2021-01-14 15:33:55 +08:00
|
|
|
int intKey = (int)defaultGroup.Key;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-01-14 15:33:55 +08:00
|
|
|
// one row per valid action.
|
|
|
|
Add(new KeyBindingRow(defaultGroup.Key, bindings.Where(b => b.ActionInt.Equals(intKey)).ToList())
|
2017-08-18 17:22:00 +08:00
|
|
|
{
|
2021-01-14 15:33:55 +08:00
|
|
|
AllowMainMouseButtons = Ruleset != null,
|
|
|
|
Defaults = defaultGroup.Select(d => d.KeyCombination)
|
|
|
|
});
|
2017-08-23 11:49:30 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-08-23 18:26:49 +08:00
|
|
|
Add(new ResetButton
|
|
|
|
{
|
|
|
|
Action = () => Children.OfType<KeyBindingRow>().ForEach(k => k.RestoreDefaults())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-10-11 02:32:56 +08:00
|
|
|
public class ResetButton : DangerousSettingsButton
|
2017-08-23 18:26:49 +08:00
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
2021-05-11 10:00:57 +08:00
|
|
|
private void load()
|
2017-08-23 18:26:49 +08:00
|
|
|
{
|
2021-08-12 09:53:31 +08:00
|
|
|
Text = InputSettingsStrings.ResetSectionButton;
|
2017-08-23 18:26:49 +08:00
|
|
|
RelativeSizeAxes = Axes.X;
|
2021-09-13 13:17:45 +08:00
|
|
|
Width = 0.8f;
|
2021-05-18 12:47:39 +08:00
|
|
|
Anchor = Anchor.TopCentre;
|
|
|
|
Origin = Anchor.TopCentre;
|
|
|
|
Margin = new MarginPadding { Top = 15 };
|
|
|
|
Height = 30;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-08-23 18:26:49 +08:00
|
|
|
Content.CornerRadius = 5;
|
2017-08-15 23:08:59 +08:00
|
|
|
}
|
2021-10-02 21:10:30 +08:00
|
|
|
|
2021-10-03 01:16:46 +08:00
|
|
|
// Empty FilterTerms so that the ResetButton is visible only when the whole subsection is visible.
|
2022-05-16 13:09:37 +08:00
|
|
|
public override IEnumerable<LocalisableString> FilterTerms => Enumerable.Empty<LocalisableString>();
|
2017-08-15 23:08:59 +08:00
|
|
|
}
|
2017-08-23 18:26:49 +08:00
|
|
|
}
|