mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:18:22 +08:00
38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
// 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 System.ComponentModel;
|
|
using osu.Game.Input;
|
|
using OpenTK.Input;
|
|
|
|
namespace osu.Game.Rulesets.Catch
|
|
{
|
|
public class CatchInputManager : ActionMappingInputManager<CatchAction>
|
|
{
|
|
public CatchInputManager(RulesetInfo ruleset) : base(ruleset, concurrencyMode: ConcurrentActionMode.UniqueActions)
|
|
{
|
|
}
|
|
|
|
protected override IDictionary<KeyCombination, CatchAction> CreateDefaultMappings() => new Dictionary<KeyCombination, 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 },
|
|
};
|
|
}
|
|
|
|
public enum CatchAction
|
|
{
|
|
[Description("Move left")]
|
|
MoveLeft,
|
|
[Description("Move right")]
|
|
MoveRight,
|
|
[Description("Engage dash")]
|
|
Dash
|
|
}
|
|
}
|