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;
|
|
|
|
|
using osu.Game.Input;
|
|
|
|
|
using OpenTK.Input;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch
|
|
|
|
|
{
|
|
|
|
|
public class CatchInputManager : ActionMappingInputManager<CatchAction>
|
|
|
|
|
{
|
2017-08-09 12:04:11 +08:00
|
|
|
|
public CatchInputManager(RulesetInfo ruleset) : base(ruleset)
|
2017-08-09 10:50:34 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
2017-08-09 16:10:32 +08:00
|
|
|
|
|
|
|
|
|
protected override IDictionary<Key, CatchAction> CreateDefaultMappings() => new Dictionary<Key, CatchAction>
|
|
|
|
|
{
|
|
|
|
|
{ Key.Z, CatchAction.MoveLeft },
|
|
|
|
|
{ Key.Left, CatchAction.MoveLeft },
|
|
|
|
|
{ Key.X, CatchAction.MoveRight },
|
|
|
|
|
{ Key.Right, CatchAction.MoveRight },
|
|
|
|
|
{ Key.LShift, CatchAction.Dash },
|
|
|
|
|
{ Key.RShift, CatchAction.Dash },
|
|
|
|
|
};
|
2017-08-09 10:50:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum CatchAction
|
|
|
|
|
{
|
|
|
|
|
MoveLeft,
|
|
|
|
|
MoveRight,
|
|
|
|
|
Dash
|
|
|
|
|
}
|
|
|
|
|
}
|