osu/osu.Game/Input/Bindings/GlobalKeyBindingInputManager.cs

53 lines
1.9 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK.Input;
using System.Collections.Generic;
2017-08-10 10:52:45 +00:00
using System.ComponentModel;
using System.Linq;
using osu.Framework.Graphics;
2017-08-11 07:11:46 +00:00
using osu.Framework.Input.Bindings;
2017-08-11 07:11:46 +00:00
namespace osu.Game.Input.Bindings
{
2017-08-16 08:34:49 +00:00
public class GlobalKeyBindingInputManager : DatabasedKeyBindingInputManager<GlobalAction>
{
2017-08-10 10:52:45 +00:00
private readonly Drawable handler;
2017-08-16 08:34:49 +00:00
public GlobalKeyBindingInputManager(OsuGameBase game)
2017-08-10 10:52:45 +00:00
{
2017-08-12 10:54:07 +00:00
if (game is IKeyBindingHandler<GlobalAction>)
2017-08-10 10:52:45 +00:00
handler = game;
}
2017-08-16 08:34:49 +00:00
public override IEnumerable<KeyBinding> DefaultKeyBindings => new[]
{
2017-08-12 10:54:07 +00:00
new KeyBinding(Key.F8, GlobalAction.ToggleChat),
new KeyBinding(Key.F9, GlobalAction.ToggleSocial),
new KeyBinding(new[] { Key.LControl, Key.LAlt, Key.R }, GlobalAction.ResetInputSettings),
new KeyBinding(new[] { Key.LControl, Key.T }, GlobalAction.ToggleToolbar),
new KeyBinding(new[] { Key.LControl, Key.O }, GlobalAction.ToggleSettings),
new KeyBinding(new[] { Key.LControl, Key.D }, GlobalAction.ToggleDirect),
};
2017-08-10 10:52:45 +00:00
2017-08-16 14:20:08 +00:00
protected override IEnumerable<Drawable> GetKeyboardInputQueue() =>
handler == null ? base.GetKeyboardInputQueue() : new[] { handler }.Concat(base.GetKeyboardInputQueue());
2017-08-10 10:52:45 +00:00
}
public enum GlobalAction
{
[Description("Toggle chat overlay")]
ToggleChat,
[Description("Toggle social overlay")]
ToggleSocial,
[Description("Reset input settings")]
ResetInputSettings,
[Description("Toggle toolbar")]
ToggleToolbar,
[Description("Toggle settings")]
ToggleSettings,
[Description("Toggle osu!direct")]
ToggleDirect,
}
}