1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game.Rulesets.Mania/ManiaInputManager.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
1.8 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2017-08-23 11:49:50 +08:00
using System.ComponentModel;
using osu.Framework.Allocation;
using osu.Framework.Input.Bindings;
using osu.Game.Rulesets.UI;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Mania
{
[Cached] // Used for touch input, see ColumnTouchInputArea.
public class ManiaInputManager : RulesetInputManager<ManiaAction>
{
2017-08-23 11:49:50 +08:00
public ManiaInputManager(RulesetInfo ruleset, int variant)
: base(ruleset, variant, SimultaneousBindingMode.Unique)
{
}
}
2018-04-13 17:19:50 +08:00
public enum ManiaAction
{
2018-01-15 16:43:45 +08:00
[Description("Special 1")]
Special1 = 1,
2019-02-28 12:31:40 +08:00
2018-01-15 16:43:45 +08:00
[Description("Special 2")]
Special2,
2018-04-13 17:19:50 +08:00
// This offsets the start value of normal keys in-case we add more special keys
// above at a later time, without breaking replays/configs.
2017-08-23 11:49:50 +08:00
[Description("Key 1")]
Key1 = 10,
2019-02-28 12:31:40 +08:00
2017-08-23 11:49:50 +08:00
[Description("Key 2")]
Key2,
2019-02-28 12:31:40 +08:00
2017-08-23 11:49:50 +08:00
[Description("Key 3")]
Key3,
2019-02-28 12:31:40 +08:00
2017-08-23 11:49:50 +08:00
[Description("Key 4")]
Key4,
2019-02-28 12:31:40 +08:00
2017-08-23 11:49:50 +08:00
[Description("Key 5")]
Key5,
2019-02-28 12:31:40 +08:00
2017-08-23 11:49:50 +08:00
[Description("Key 6")]
Key6,
2019-02-28 12:31:40 +08:00
2017-08-23 11:49:50 +08:00
[Description("Key 7")]
Key7,
2019-02-28 12:31:40 +08:00
2017-08-23 11:49:50 +08:00
[Description("Key 8")]
Key8,
2019-02-28 12:31:40 +08:00
2017-08-23 11:49:50 +08:00
[Description("Key 9")]
2018-01-15 16:43:45 +08:00
Key9,
2019-02-28 12:31:40 +08:00
2018-01-15 16:43:45 +08:00
[Description("Key 10")]
Key10,
2019-02-28 12:31:40 +08:00
2018-01-15 16:43:45 +08:00
[Description("Key 11")]
Key11,
2019-02-28 12:31:40 +08:00
2018-01-15 16:43:45 +08:00
[Description("Key 12")]
Key12,
2019-02-28 12:31:40 +08:00
2018-01-15 16:43:45 +08:00
[Description("Key 13")]
Key13,
2019-02-28 12:31:40 +08:00
2018-01-15 16:43:45 +08:00
[Description("Key 14")]
Key14,
2019-02-28 12:31:40 +08:00
2018-01-15 16:43:45 +08:00
[Description("Key 15")]
Key15,
2019-02-28 12:31:40 +08:00
2018-01-15 16:43:45 +08:00
[Description("Key 16")]
Key16,
2019-02-28 12:31:40 +08:00
2018-01-15 16:43:45 +08:00
[Description("Key 17")]
Key17,
2019-02-28 12:31:40 +08:00
2018-01-15 16:43:45 +08:00
[Description("Key 18")]
Key18,
[Description("Key 19")]
Key19,
[Description("Key 20")]
Key20,
}
}