2017-08-09 10:50:34 +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 16:14:30 +08:00
|
|
|
|
using System.ComponentModel;
|
2017-08-11 15:11:46 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
|
using osu.Game.Input.Bindings;
|
2017-08-09 10:50:34 +08:00
|
|
|
|
using OpenTK.Input;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch
|
|
|
|
|
{
|
2017-08-11 15:11:46 +08:00
|
|
|
|
public class CatchInputManager : DatabasedKeyBindingInputManager<CatchAction>
|
2017-08-09 10:50:34 +08:00
|
|
|
|
{
|
2017-08-12 18:54:07 +08:00
|
|
|
|
public CatchInputManager(RulesetInfo ruleset) : base(ruleset, simultaneousMode: SimultaneousBindingMode.Unique)
|
2017-08-09 10:50:34 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
2017-08-09 16:10:32 +08:00
|
|
|
|
|
2017-08-12 18:54:07 +08:00
|
|
|
|
protected override IEnumerable<KeyBinding> CreateDefaultMappings() => new[]
|
2017-08-09 16:10:32 +08:00
|
|
|
|
{
|
2017-08-12 18:54:07 +08:00
|
|
|
|
new KeyBinding( Key.Z, CatchAction.MoveLeft),
|
|
|
|
|
new KeyBinding( Key.Left, CatchAction.MoveLeft),
|
|
|
|
|
new KeyBinding( Key.X, CatchAction.MoveRight),
|
|
|
|
|
new KeyBinding( Key.Right, CatchAction.MoveRight),
|
|
|
|
|
new KeyBinding( Key.LShift, CatchAction.Dash),
|
|
|
|
|
new KeyBinding( Key.RShift, CatchAction.Dash),
|
2017-08-09 16:10:32 +08:00
|
|
|
|
};
|
2017-08-09 10:50:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum CatchAction
|
|
|
|
|
{
|
2017-08-10 16:14:30 +08:00
|
|
|
|
[Description("Move left")]
|
2017-08-09 10:50:34 +08:00
|
|
|
|
MoveLeft,
|
2017-08-10 16:14:30 +08:00
|
|
|
|
[Description("Move right")]
|
2017-08-09 10:50:34 +08:00
|
|
|
|
MoveRight,
|
2017-08-10 16:14:30 +08:00
|
|
|
|
[Description("Engage dash")]
|
2017-08-09 10:50:34 +08:00
|
|
|
|
Dash
|
|
|
|
|
}
|
|
|
|
|
}
|