2021-01-07 13:35:15 +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.
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
using osu.Game.Database;
|
|
|
|
using osu.Game.Input.Bindings;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
2021-01-12 13:55:45 +08:00
|
|
|
#nullable enable
|
|
|
|
|
2021-01-07 13:35:15 +08:00
|
|
|
namespace osu.Game.Input
|
|
|
|
{
|
2021-01-13 17:13:30 +08:00
|
|
|
public class RealmKeyBindingStore
|
2021-01-07 13:35:15 +08:00
|
|
|
{
|
2021-01-13 17:13:30 +08:00
|
|
|
private readonly RealmContextFactory realmFactory;
|
|
|
|
|
|
|
|
public RealmKeyBindingStore(RealmContextFactory realmFactory)
|
2021-01-07 13:35:15 +08:00
|
|
|
{
|
2021-01-13 17:13:30 +08:00
|
|
|
this.realmFactory = realmFactory;
|
2021-01-07 13:35:15 +08:00
|
|
|
}
|
|
|
|
|
2021-01-07 14:51:16 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Retrieve all user-defined key combinations (in a format that can be displayed) for a specific action.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="globalAction">The action to lookup.</param>
|
|
|
|
/// <returns>A set of display strings for all the user's key configuration for the action.</returns>
|
2021-06-18 16:01:51 +08:00
|
|
|
public IReadOnlyList<string> GetReadableKeyCombinationsFor(GlobalAction globalAction)
|
2021-01-07 14:51:16 +08:00
|
|
|
{
|
2021-06-18 16:01:51 +08:00
|
|
|
List<string> combinations = new List<string>();
|
2021-01-07 14:51:16 +08:00
|
|
|
|
2021-06-18 16:01:51 +08:00
|
|
|
using (var context = realmFactory.GetForRead())
|
|
|
|
{
|
2021-06-18 16:12:01 +08:00
|
|
|
foreach (var action in context.Realm.All<RealmKeyBinding>().Where(b => b.RulesetID == null && (GlobalAction)b.ActionInt == globalAction))
|
2021-06-18 16:01:51 +08:00
|
|
|
{
|
|
|
|
string str = action.KeyCombination.ReadableString();
|
|
|
|
|
|
|
|
// even if found, the readable string may be empty for an unbound action.
|
|
|
|
if (str.Length > 0)
|
|
|
|
combinations.Add(str);
|
|
|
|
}
|
2021-01-07 14:51:16 +08:00
|
|
|
}
|
2021-06-18 16:01:51 +08:00
|
|
|
|
|
|
|
return combinations;
|
2021-01-07 14:51:16 +08:00
|
|
|
}
|
|
|
|
|
2021-01-11 15:18:25 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Register a new type of <see cref="KeyBindingContainer{T}"/>, adding default bindings from <see cref="KeyBindingContainer.DefaultKeyBindings"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="container">The container to populate defaults from.</param>
|
|
|
|
public void Register(KeyBindingContainer container) => insertDefaults(container.DefaultKeyBindings);
|
2021-01-07 13:35:15 +08:00
|
|
|
|
2021-01-12 13:59:48 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Register a ruleset, adding default bindings for each of its variants.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="ruleset">The ruleset to populate defaults from.</param>
|
|
|
|
public void Register(RulesetInfo ruleset)
|
|
|
|
{
|
|
|
|
var instance = ruleset.CreateInstance();
|
|
|
|
|
2021-01-14 15:13:10 +08:00
|
|
|
foreach (var variant in instance.AvailableVariants)
|
|
|
|
insertDefaults(instance.GetDefaultKeyBindings(variant), ruleset.ID, variant);
|
2021-01-12 13:59:48 +08:00
|
|
|
}
|
|
|
|
|
2021-01-08 14:49:01 +08:00
|
|
|
private void insertDefaults(IEnumerable<IKeyBinding> defaults, int? rulesetId = null, int? variant = null)
|
2021-01-07 13:35:15 +08:00
|
|
|
{
|
2021-01-13 17:13:30 +08:00
|
|
|
using (var usage = realmFactory.GetForWrite())
|
2021-01-07 13:35:15 +08:00
|
|
|
{
|
|
|
|
// compare counts in database vs defaults
|
2021-01-14 15:36:24 +08:00
|
|
|
foreach (var defaultsForAction in defaults.GroupBy(k => k.Action))
|
2021-01-07 13:35:15 +08:00
|
|
|
{
|
2021-01-14 15:36:24 +08:00
|
|
|
int existingCount = usage.Realm.All<RealmKeyBinding>().Count(k => k.RulesetID == rulesetId && k.Variant == variant && k.ActionInt == (int)defaultsForAction.Key);
|
2021-01-07 13:35:15 +08:00
|
|
|
|
2021-01-14 15:36:24 +08:00
|
|
|
if (defaultsForAction.Count() <= existingCount)
|
2021-01-07 13:35:15 +08:00
|
|
|
continue;
|
|
|
|
|
2021-01-14 15:36:24 +08:00
|
|
|
foreach (var k in defaultsForAction.Skip(existingCount))
|
2021-01-07 13:35:15 +08:00
|
|
|
{
|
|
|
|
// insert any defaults which are missing.
|
2021-01-14 15:13:10 +08:00
|
|
|
usage.Realm.Add(new RealmKeyBinding
|
2021-01-07 13:35:15 +08:00
|
|
|
{
|
2021-01-14 15:36:24 +08:00
|
|
|
KeyCombinationString = k.KeyCombination.ToString(),
|
|
|
|
ActionInt = (int)k.Action,
|
2021-01-07 13:35:15 +08:00
|
|
|
RulesetID = rulesetId,
|
|
|
|
Variant = variant
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2021-01-14 15:13:10 +08:00
|
|
|
|
|
|
|
usage.Commit();
|
2021-01-07 13:35:15 +08:00
|
|
|
}
|
|
|
|
}
|
2021-05-25 16:18:33 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Keys which should not be allowed for gameplay input purposes.
|
|
|
|
/// </summary>
|
|
|
|
private static readonly IEnumerable<InputKey> banned_keys = new[]
|
|
|
|
{
|
|
|
|
InputKey.MouseWheelDown,
|
|
|
|
InputKey.MouseWheelLeft,
|
|
|
|
InputKey.MouseWheelUp,
|
|
|
|
InputKey.MouseWheelRight
|
|
|
|
};
|
|
|
|
|
|
|
|
public static bool CheckValidForGameplay(KeyCombination combination)
|
|
|
|
{
|
|
|
|
foreach (var key in banned_keys)
|
|
|
|
{
|
|
|
|
if (combination.Keys.Contains(key))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2021-01-07 13:35:15 +08:00
|
|
|
}
|
|
|
|
}
|