2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-08-12 21:10:57 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-08-17 16:47:44 +08:00
using System ;
2017-08-14 19:19:25 +08:00
using System.Collections.Generic ;
2017-08-11 15:11:46 +08:00
using osu.Framework.Allocation ;
using osu.Framework.Input.Bindings ;
using osu.Game.Rulesets ;
2017-10-21 22:39:31 +08:00
using System.Linq ;
2017-08-11 15:11:46 +08:00
namespace osu.Game.Input.Bindings
{
/// <summary>
/// A KeyBindingInputManager with a database backing for custom overrides.
/// </summary>
/// <typeparam name="T">The type of the custom action.</typeparam>
2018-01-30 13:49:12 +08:00
public class DatabasedKeyBindingContainer < T > : KeyBindingContainer < T >
2017-08-11 15:11:46 +08:00
where T : struct
{
private readonly RulesetInfo ruleset ;
2017-08-17 16:47:44 +08:00
private readonly int? variant ;
2017-08-11 15:11:46 +08:00
2017-08-14 19:19:25 +08:00
private KeyBindingStore store ;
2018-01-15 18:25:14 +08:00
public override IEnumerable < KeyBinding > DefaultKeyBindings = > ruleset . CreateInstance ( ) . GetDefaultKeyBindings ( variant ? ? 0 ) ;
2017-08-11 15:11:46 +08:00
/// <summary>
/// Create a new instance.
/// </summary>
/// <param name="ruleset">A reference to identify the current <see cref="Ruleset"/>. Used to lookup mappings. Null for global mappings.</param>
/// <param name="variant">An optional variant for the specified <see cref="Ruleset"/>. Used when a ruleset has more than one possible keyboard layouts.</param>
2017-08-12 18:54:07 +08:00
/// <param name="simultaneousMode">Specify how to deal with multiple matches of <see cref="KeyCombination"/>s and <see cref="T"/>s.</param>
2018-01-30 13:49:12 +08:00
public DatabasedKeyBindingContainer ( RulesetInfo ruleset = null , int? variant = null , SimultaneousBindingMode simultaneousMode = SimultaneousBindingMode . None )
2017-08-12 18:54:07 +08:00
: base ( simultaneousMode )
2017-08-11 15:11:46 +08:00
{
this . ruleset = ruleset ;
this . variant = variant ;
2017-08-17 16:47:44 +08:00
if ( ruleset ! = null & & variant = = null )
throw new InvalidOperationException ( $"{nameof(variant)} can not be null when a non-null {nameof(ruleset)} is provided." ) ;
2017-08-11 15:11:46 +08:00
}
[BackgroundDependencyLoader]
2017-08-14 19:19:25 +08:00
private void load ( KeyBindingStore keyBindings )
2017-08-11 15:11:46 +08:00
{
2017-08-14 19:19:25 +08:00
store = keyBindings ;
2017-10-21 22:39:31 +08:00
store . KeyBindingChanged + = ReloadMappings ;
2017-08-11 15:11:46 +08:00
}
2017-10-21 22:39:31 +08:00
protected override void Dispose ( bool isDisposing )
2017-08-11 15:11:46 +08:00
{
2017-10-21 22:39:31 +08:00
base . Dispose ( isDisposing ) ;
2017-11-13 12:58:44 +08:00
if ( store ! = null )
store . KeyBindingChanged - = ReloadMappings ;
2017-08-11 15:11:46 +08:00
}
2017-10-21 22:39:31 +08:00
protected override void ReloadMappings ( ) = > KeyBindings = store . Query ( ruleset ? . ID , variant ) . ToList ( ) ;
2017-08-11 15:11:46 +08:00
}
2017-10-06 05:23:26 +08:00
}