mirror of https://github.com/ppy/osu
Improve default key binding logic
Defaults will be added to the database as long as the database has unbalanced counts for any actions.
This commit is contained in:
parent
3bee36f6a2
commit
2bd0981738
|
@ -44,7 +44,7 @@ private void load(KeyBindingStore keyBindings)
|
|||
|
||||
protected override void ReloadMappings()
|
||||
{
|
||||
KeyBindings = store.GetProcessedList(DefaultMappings, ruleset?.ID, variant);
|
||||
KeyBindings = store.Query(ruleset?.ID, variant);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -22,14 +22,11 @@ public KeyBindingStore(SQLiteConnection connection, RulesetStore rulesets, Stora
|
|||
{
|
||||
var ruleset = info.CreateInstance();
|
||||
foreach (var variant in ruleset.AvailableVariants)
|
||||
GetProcessedList(ruleset.GetDefaultKeyBindings(), info.ID, variant);
|
||||
insertDefaults(ruleset.GetDefaultKeyBindings(), info.ID, variant);
|
||||
}
|
||||
}
|
||||
|
||||
public void Register(KeyBindingInputManager manager)
|
||||
{
|
||||
GetProcessedList(manager.DefaultMappings);
|
||||
}
|
||||
public void Register(KeyBindingInputManager manager) => insertDefaults(manager.DefaultMappings);
|
||||
|
||||
protected override int StoreVersion => 3;
|
||||
|
||||
|
@ -61,29 +58,37 @@ protected override void Prepare(bool reset = false)
|
|||
Connection.CreateTable<DatabasedKeyBinding>();
|
||||
}
|
||||
|
||||
private void insertDefaults(IEnumerable<KeyBinding> defaults, int? rulesetId = null, int? variant = null)
|
||||
{
|
||||
var query = Query(rulesetId, variant);
|
||||
|
||||
// compare counts in database vs defaults
|
||||
foreach (var group in defaults.GroupBy(k => k.Action))
|
||||
{
|
||||
int count;
|
||||
while (group.Count() > (count = query.Count(k => (int)k.Action == (int)group.Key)))
|
||||
{
|
||||
var insertable = group.Skip(count).First();
|
||||
|
||||
// insert any defaults which are missing.
|
||||
Connection.Insert(new DatabasedKeyBinding
|
||||
{
|
||||
KeyCombination = insertable.KeyCombination,
|
||||
Action = (int)insertable.Action,
|
||||
RulesetID = rulesetId,
|
||||
Variant = variant
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected override Type[] ValidTypes => new[]
|
||||
{
|
||||
typeof(DatabasedKeyBinding)
|
||||
};
|
||||
|
||||
public IEnumerable<KeyBinding> GetProcessedList(IEnumerable<KeyBinding> defaults, int? rulesetId = null, int? variant = null)
|
||||
{
|
||||
var databaseEntries = Query<DatabasedKeyBinding>(b => b.RulesetID == rulesetId && b.Variant == variant);
|
||||
|
||||
if (!databaseEntries.Any())
|
||||
{
|
||||
// if there are no entries for this category in the database, we should populate our defaults.
|
||||
Connection.InsertAll(defaults.Select(k => new DatabasedKeyBinding
|
||||
{
|
||||
KeyCombination = k.KeyCombination,
|
||||
Action = (int)k.Action,
|
||||
RulesetID = rulesetId,
|
||||
Variant = variant
|
||||
}));
|
||||
}
|
||||
|
||||
return databaseEntries;
|
||||
}
|
||||
public IEnumerable<KeyBinding> Query(int? rulesetId = null, int? variant = null) =>
|
||||
Query<DatabasedKeyBinding>(b => b.RulesetID == rulesetId && b.Variant == variant);
|
||||
|
||||
public void Update(KeyBinding keyBinding)
|
||||
{
|
||||
|
|
|
@ -202,6 +202,7 @@ protected override void LoadComplete()
|
|||
}
|
||||
});
|
||||
|
||||
KeyBindingStore.Register(globalBinding);
|
||||
dependencies.Cache(globalBinding);
|
||||
|
||||
// TODO: This is temporary until we reimplement the local FPS display.
|
||||
|
|
Loading…
Reference in New Issue