2017-08-09 16:10:32 +08:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
2017-08-10 18:52:45 +08:00
|
|
|
using System.ComponentModel;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Graphics;
|
2017-12-21 12:58:24 +08:00
|
|
|
using osu.Framework.Input;
|
2017-08-11 15:11:46 +08:00
|
|
|
using osu.Framework.Input.Bindings;
|
2017-08-09 16:10:32 +08:00
|
|
|
|
2017-08-11 15:11:46 +08:00
|
|
|
namespace osu.Game.Input.Bindings
|
2017-08-09 16:10:32 +08:00
|
|
|
{
|
2017-12-21 12:58:24 +08:00
|
|
|
public class GlobalKeyBindingInputManager : DatabasedKeyBindingInputManager<GlobalAction>, IHandleGlobalInput
|
2017-08-09 16:10:32 +08:00
|
|
|
{
|
2017-08-10 18:52:45 +08:00
|
|
|
private readonly Drawable handler;
|
|
|
|
|
2017-08-16 16:34:49 +08:00
|
|
|
public GlobalKeyBindingInputManager(OsuGameBase game)
|
2017-08-10 18:52:45 +08:00
|
|
|
{
|
2017-08-12 18:54:07 +08:00
|
|
|
if (game is IKeyBindingHandler<GlobalAction>)
|
2017-08-10 18:52:45 +08:00
|
|
|
handler = game;
|
|
|
|
}
|
|
|
|
|
2017-08-16 16:34:49 +08:00
|
|
|
public override IEnumerable<KeyBinding> DefaultKeyBindings => new[]
|
2017-08-09 16:10:32 +08:00
|
|
|
{
|
2017-08-18 17:22:00 +08:00
|
|
|
new KeyBinding(InputKey.F8, GlobalAction.ToggleChat),
|
|
|
|
new KeyBinding(InputKey.F9, GlobalAction.ToggleSocial),
|
|
|
|
new KeyBinding(new[] { InputKey.Control, InputKey.Alt, InputKey.R }, GlobalAction.ResetInputSettings),
|
|
|
|
new KeyBinding(new[] { InputKey.Control, InputKey.T }, GlobalAction.ToggleToolbar),
|
|
|
|
new KeyBinding(new[] { InputKey.Control, InputKey.O }, GlobalAction.ToggleSettings),
|
2017-08-22 13:44:13 +08:00
|
|
|
new KeyBinding(new[] { InputKey.Up }, GlobalAction.IncreaseVolume),
|
|
|
|
new KeyBinding(new[] { InputKey.MouseWheelUp }, GlobalAction.IncreaseVolume),
|
|
|
|
new KeyBinding(new[] { InputKey.Down }, GlobalAction.DecreaseVolume),
|
|
|
|
new KeyBinding(new[] { InputKey.MouseWheelDown }, GlobalAction.DecreaseVolume),
|
2017-08-09 16:10:32 +08:00
|
|
|
};
|
2017-08-10 18:52:45 +08:00
|
|
|
|
2017-08-18 17:22:00 +08:00
|
|
|
protected override IEnumerable<Drawable> KeyBindingInputQueue =>
|
|
|
|
handler == null ? base.KeyBindingInputQueue : new[] { handler }.Concat(base.KeyBindingInputQueue);
|
2017-08-10 18:52:45 +08: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,
|
2017-08-22 13:44:13 +08:00
|
|
|
[Description("Increase Volume")]
|
|
|
|
IncreaseVolume,
|
|
|
|
[Description("Decrease Volume")]
|
|
|
|
DecreaseVolume,
|
2017-08-09 16:10:32 +08:00
|
|
|
}
|
|
|
|
}
|