feat: KeyLabel enum
parent
06407c97a1
commit
7eae03362b
154
Runtime/Event.cs
154
Runtime/Event.cs
|
@ -21,7 +21,7 @@ namespace SkyHook
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The identified key label from the native assembly.
|
/// The identified key label from the native assembly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public readonly ushort Label;
|
public readonly KeyLabel Label;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The key number that was pressed or released.
|
/// The key number that was pressed or released.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -31,9 +31,161 @@ namespace SkyHook
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of <see cref="SkyHookEvent"/>'s event.
|
/// The type of <see cref="SkyHookEvent"/>'s event.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[SuppressMessage("ReSharper", "UnusedMember.Global")]
|
||||||
public enum EventType
|
public enum EventType
|
||||||
{
|
{
|
||||||
KeyPressed,
|
KeyPressed,
|
||||||
KeyReleased
|
KeyReleased
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The key label identified by native SkyHook.
|
||||||
|
/// This label will be the same regardless of what OS the player is in.
|
||||||
|
/// <br/>
|
||||||
|
/// This is a direct import of the https://git.pikokr.dev/SkyHook/SkyHook/src/branch/main/skyhook/src/keycodes.rs native enum.
|
||||||
|
/// </summary>
|
||||||
|
[SuppressMessage("ReSharper", "UnusedMember.Global")]
|
||||||
|
public enum KeyLabel : ushort
|
||||||
|
{
|
||||||
|
Escape,
|
||||||
|
|
||||||
|
// Function Keys
|
||||||
|
F1,
|
||||||
|
F2,
|
||||||
|
F3,
|
||||||
|
F4,
|
||||||
|
F5,
|
||||||
|
F6,
|
||||||
|
F7,
|
||||||
|
F8,
|
||||||
|
F9,
|
||||||
|
F10,
|
||||||
|
F11,
|
||||||
|
F12,
|
||||||
|
F13,
|
||||||
|
F14,
|
||||||
|
F15,
|
||||||
|
F16,
|
||||||
|
F17,
|
||||||
|
F18,
|
||||||
|
F19,
|
||||||
|
F20,
|
||||||
|
F21,
|
||||||
|
F22,
|
||||||
|
F23,
|
||||||
|
F24,
|
||||||
|
|
||||||
|
// 2nd Layer
|
||||||
|
Grave,
|
||||||
|
Alpha1,
|
||||||
|
Alpha2,
|
||||||
|
Alpha3,
|
||||||
|
Alpha4,
|
||||||
|
Alpha5,
|
||||||
|
Alpha6,
|
||||||
|
Alpha7,
|
||||||
|
Alpha8,
|
||||||
|
Alpha9,
|
||||||
|
Alpha0,
|
||||||
|
Minus,
|
||||||
|
Equal,
|
||||||
|
Backspace,
|
||||||
|
|
||||||
|
// 3rd Layer
|
||||||
|
Tab,
|
||||||
|
Q,
|
||||||
|
W,
|
||||||
|
E,
|
||||||
|
R,
|
||||||
|
T,
|
||||||
|
Y,
|
||||||
|
U,
|
||||||
|
I,
|
||||||
|
O,
|
||||||
|
P,
|
||||||
|
LeftBrace,
|
||||||
|
RightBrace,
|
||||||
|
BackSlash,
|
||||||
|
|
||||||
|
// 4th Layer
|
||||||
|
CapsLock,
|
||||||
|
A,
|
||||||
|
S,
|
||||||
|
D,
|
||||||
|
F,
|
||||||
|
G,
|
||||||
|
H,
|
||||||
|
J,
|
||||||
|
K,
|
||||||
|
L,
|
||||||
|
Semicolon,
|
||||||
|
Apostrophe,
|
||||||
|
Enter,
|
||||||
|
|
||||||
|
// 5th Layer
|
||||||
|
LShift,
|
||||||
|
Z,
|
||||||
|
X,
|
||||||
|
C,
|
||||||
|
V,
|
||||||
|
B,
|
||||||
|
N,
|
||||||
|
M,
|
||||||
|
Comma,
|
||||||
|
Dot,
|
||||||
|
Slash,
|
||||||
|
RShift,
|
||||||
|
|
||||||
|
// 6th Layer
|
||||||
|
LControl,
|
||||||
|
Super,
|
||||||
|
LAlt,
|
||||||
|
Space,
|
||||||
|
RAlt,
|
||||||
|
RControl,
|
||||||
|
|
||||||
|
// Controls
|
||||||
|
PrintScreen,
|
||||||
|
ScrollLock,
|
||||||
|
PauseBreak,
|
||||||
|
Insert,
|
||||||
|
Home,
|
||||||
|
PageUp,
|
||||||
|
Delete,
|
||||||
|
End,
|
||||||
|
PageDown,
|
||||||
|
ArrowUp,
|
||||||
|
ArrowLeft,
|
||||||
|
ArrowDown,
|
||||||
|
ArrowRight,
|
||||||
|
|
||||||
|
// Keypad
|
||||||
|
NumLock,
|
||||||
|
KeypadSlash,
|
||||||
|
KeypadAsterisk,
|
||||||
|
KeypadMinus,
|
||||||
|
Keypad1,
|
||||||
|
Keypad2,
|
||||||
|
Keypad3,
|
||||||
|
Keypad4,
|
||||||
|
Keypad5,
|
||||||
|
Keypad6,
|
||||||
|
Keypad7,
|
||||||
|
Keypad8,
|
||||||
|
Keypad9,
|
||||||
|
Keypad0,
|
||||||
|
KeypadDot,
|
||||||
|
KeypadPlus,
|
||||||
|
KeypadEnter,
|
||||||
|
|
||||||
|
// Mouse
|
||||||
|
MouseLeft,
|
||||||
|
MouseRight,
|
||||||
|
MouseMiddle,
|
||||||
|
MouseX1,
|
||||||
|
MouseX2,
|
||||||
|
|
||||||
|
// Uncategorized
|
||||||
|
Unknown
|
||||||
|
}
|
||||||
}
|
}
|
Reference in New Issue