-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Keybind.cs
567 lines (519 loc) · 15.9 KB
/
Keybind.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using Dalamud.Interface;
using ImGuiNET;
namespace QoLBar;
public static class Keybind
{
// TODO: Stolen from WinForms, swap to Dalamud's
public enum Keys
{
KeyCode = 0xFFFF,
Modifiers = -65536,
None = 0x0,
LButton = 0x1,
RButton = 0x2,
Cancel = 0x3,
MButton = 0x4,
XButton1 = 0x5,
XButton2 = 0x6,
Back = 0x8,
Tab = 0x9,
LineFeed = 0xA,
Clear = 0xC,
Return = 0xD,
Enter = 0xD,
ShiftKey = 0x10,
ControlKey = 0x11,
Menu = 0x12,
Pause = 0x13,
Capital = 0x14,
CapsLock = 0x14,
KanaMode = 0x15,
HanguelMode = 0x15,
HangulMode = 0x15,
JunjaMode = 0x17,
FinalMode = 0x18,
HanjaMode = 0x19,
KanjiMode = 0x19,
Escape = 0x1B,
IMEConvert = 0x1C,
IMENonconvert = 0x1D,
IMEAccept = 0x1E,
IMEAceept = 0x1E,
IMEModeChange = 0x1F,
Space = 0x20,
Prior = 0x21,
PageUp = 0x21,
Next = 0x22,
PageDown = 0x22,
End = 0x23,
Home = 0x24,
Left = 0x25,
Up = 0x26,
Right = 0x27,
Down = 0x28,
Select = 0x29,
Print = 0x2A,
Execute = 0x2B,
Snapshot = 0x2C,
PrintScreen = 0x2C,
Insert = 0x2D,
Delete = 0x2E,
Help = 0x2F,
D0 = 0x30,
D1 = 0x31,
D2 = 0x32,
D3 = 0x33,
D4 = 0x34,
D5 = 0x35,
D6 = 0x36,
D7 = 0x37,
D8 = 0x38,
D9 = 0x39,
A = 0x41,
B = 0x42,
C = 0x43,
D = 0x44,
E = 0x45,
F = 0x46,
G = 0x47,
H = 0x48,
I = 0x49,
J = 0x4A,
K = 0x4B,
L = 0x4C,
M = 0x4D,
N = 0x4E,
O = 0x4F,
P = 0x50,
Q = 0x51,
R = 0x52,
S = 0x53,
T = 0x54,
U = 0x55,
V = 0x56,
W = 0x57,
X = 0x58,
Y = 0x59,
Z = 0x5A,
LWin = 0x5B,
RWin = 0x5C,
Apps = 0x5D,
Sleep = 0x5F,
NumPad0 = 0x60,
NumPad1 = 0x61,
NumPad2 = 0x62,
NumPad3 = 0x63,
NumPad4 = 0x64,
NumPad5 = 0x65,
NumPad6 = 0x66,
NumPad7 = 0x67,
NumPad8 = 0x68,
NumPad9 = 0x69,
Multiply = 0x6A,
Add = 0x6B,
Separator = 0x6C,
Subtract = 0x6D,
Decimal = 0x6E,
Divide = 0x6F,
F1 = 0x70,
F2 = 0x71,
F3 = 0x72,
F4 = 0x73,
F5 = 0x74,
F6 = 0x75,
F7 = 0x76,
F8 = 0x77,
F9 = 0x78,
F10 = 0x79,
F11 = 0x7A,
F12 = 0x7B,
F13 = 0x7C,
F14 = 0x7D,
F15 = 0x7E,
F16 = 0x7F,
F17 = 0x80,
F18 = 0x81,
F19 = 0x82,
F20 = 0x83,
F21 = 0x84,
F22 = 0x85,
F23 = 0x86,
F24 = 0x87,
NumLock = 0x90,
Scroll = 0x91,
LShiftKey = 0xA0,
RShiftKey = 0xA1,
LControlKey = 0xA2,
RControlKey = 0xA3,
LMenu = 0xA4,
RMenu = 0xA5,
BrowserBack = 0xA6,
BrowserForward = 0xA7,
BrowserRefresh = 0xA8,
BrowserStop = 0xA9,
BrowserSearch = 0xAA,
BrowserFavorites = 0xAB,
BrowserHome = 0xAC,
VolumeMute = 0xAD,
VolumeDown = 0xAE,
VolumeUp = 0xAF,
MediaNextTrack = 0xB0,
MediaPreviousTrack = 0xB1,
MediaStop = 0xB2,
MediaPlayPause = 0xB3,
LaunchMail = 0xB4,
SelectMedia = 0xB5,
LaunchApplication1 = 0xB6,
LaunchApplication2 = 0xB7,
OemSemicolon = 0xBA,
Oem1 = 0xBA,
Oemplus = 0xBB,
Oemcomma = 0xBC,
OemMinus = 0xBD,
OemPeriod = 0xBE,
OemQuestion = 0xBF,
Oem2 = 0xBF,
Oemtilde = 0xC0,
Oem3 = 0xC0,
OemOpenBrackets = 0xDB,
Oem4 = 0xDB,
OemPipe = 0xDC,
Oem5 = 0xDC,
OemCloseBrackets = 0xDD,
Oem6 = 0xDD,
OemQuotes = 0xDE,
Oem7 = 0xDE,
Oem8 = 0xDF,
OemBackslash = 0xE2,
Oem102 = 0xE2,
ProcessKey = 0xE5,
Packet = 0xE7,
Attn = 0xF6,
Crsel = 0xF7,
Exsel = 0xF8,
EraseEof = 0xF9,
Play = 0xFA,
Zoom = 0xFB,
NoName = 0xFC,
Pa1 = 0xFD,
OemClear = 0xFE,
Shift = 0x10000,
Control = 0x20000,
Alt = 0x40000
}
private const int modifierMask = -1 << (int)Keys.ShiftKey;
private const int shiftModifier = 1 << (int)Keys.ShiftKey;
private const int controlModifier = 1 << (int)Keys.ControlKey;
private const int altModifier = 1 << (int)Keys.Menu;
public static readonly List<(BarUI, ShortcutUI)> hotkeys = new();
public struct QoLKeyState
{
[Flags]
public enum State
{
None = 0,
Held = 1,
KeyDown = 2,
KeyUp = 4,
ShortHold = 8
}
public State CurrentState { get; private set; }
public float HoldDuration { get; private set; }
public bool wasShortHeld;
public void Update(bool down)
{
if (down)
{
var lastState = CurrentState;
CurrentState = State.Held;
if ((lastState & State.Held) == 0)
CurrentState |= State.KeyDown;
else if (HoldDuration >= 0.2f)
CurrentState |= State.ShortHold;
HoldDuration += (float)DalamudApi.Framework.UpdateDelta.TotalSeconds;
}
else if (CurrentState != State.None)
{
wasShortHeld = (CurrentState & State.ShortHold) != 0;
CurrentState = CurrentState != State.KeyUp ? State.KeyUp : State.None;
HoldDuration = 0;
}
}
}
private static readonly byte[] keyboardState = new byte[256];
private static readonly QoLKeyState[] keyStates = new QoLKeyState[keyboardState.Length];
private static readonly HashSet<int> conflictingHotkeys = new();
private static bool Disabled => Game.IsGameTextInputActive || !Game.IsGameFocused || ImGui.GetIO().WantCaptureKeyboard;
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool GetKeyboardState(byte[] lpKeyState);
public static void Run()
{
GetKeyStates();
DoPieHotkeys();
DoHotkeys();
}
public static void SetupHotkeys(List<BarUI> bars)
{
foreach (var bar in bars.Where(bar => bar.IsVisible))
bar.SetupHotkeys();
}
private static void CheckConflicts(int hotkey)
{
if (hotkeys.Any(kv => kv.Item2.Config.Hotkey == hotkey))
conflictingHotkeys.Add(hotkey);
}
private static void GetKeyStates()
{
GetKeyboardState(keyboardState);
for (int i = 0; i < keyStates.Length; i++)
keyStates[i].Update((keyboardState[i] & 0x80) != 0);
}
public static bool CheckKeyState(int i, QoLKeyState.State state) => i is >= 0 and < 256 && (keyStates[i].CurrentState & state) != 0;
public static bool IsHotkeyActivated(int i, bool onUp) => i is >= 0 and < 256 && (onUp
? CheckKeyState(i, QoLKeyState.State.KeyUp)
: CheckKeyState(i, QoLKeyState.State.KeyDown));
public static int GetModifiers()
{
var modifiers = 0;
var io = ImGui.GetIO();
if (io.KeyShift)
modifiers |= shiftModifier;
if (io.KeyCtrl)
modifiers |= controlModifier;
if (io.KeyAlt)
modifiers |= altModifier;
return modifiers;
}
private static int GetBaseHotkey(int hotkey) => hotkey & ~modifierMask;
public static bool IsHotkeyHeld(int hotkey, bool blockGame)
{
if (Disabled) return false;
var key = GetBaseHotkey(hotkey);
var isDown = CheckKeyState(key, QoLKeyState.State.Held) && hotkey == (key | GetModifiers());
if (isDown)
{
if (conflictingHotkeys.Contains(hotkey))
isDown = CheckKeyState(key, QoLKeyState.State.ShortHold);
if (blockGame)
BlockGameKey(key);
}
return isDown;
}
public static void BlockGameKey(int key)
{
try { DalamudApi.KeyState[key] = false; }
catch { }
}
private static void DoPieHotkeys()
{
conflictingHotkeys.Clear();
if (!PieUI.enabled) return;
foreach (var bar in QoLBar.Plugin.ui.bars.Where(bar => bar.Config.Hotkey > 0 && bar.CheckConditionSet()))
{
var hotkey = bar.Config.Hotkey;
CheckConflicts(hotkey);
if (IsHotkeyHeld(hotkey, true))
{
bar.openPie = true;
return;
}
bar.openPie = false;
}
PieUI.enabled = false; // Used to disable all pies if the UI is hidden
}
private static void DoHotkeys()
{
if (Disabled) { hotkeys.Clear(); return; }
var modifiers = GetModifiers();
foreach (var (bar, sh) in hotkeys)
{
var config = sh.Config;
var key = GetBaseHotkey(config.Hotkey);
var state = keyStates[key];
var onUp = conflictingHotkeys.Contains(config.Hotkey);
var activated = IsHotkeyActivated(key, onUp) && (!onUp || !state.wasShortHeld) && (key | modifiers) == config.Hotkey;
if (!activated) continue;
if (config.Type == ShCfg.ShortcutType.Category && config.Mode == ShCfg.ShortcutMode.Default)
{
// TODO: Make less hacky
bar.ForceReveal();
var parent = sh.parent;
while (parent != null)
{
parent.activated = true;
parent = parent.parent;
}
sh.activated = true;
}
else
{
sh.OnClick(false, false, false, true);
}
if (!config.KeyPassthrough)
BlockGameKey(key);
}
hotkeys.Clear();
}
public static void AddHotkey(ShortcutUI sh) => hotkeys.Add((sh.parentBar, sh));
public static bool InputHotkey(string id, ref int hotkey)
{
var dispKey = GetKeyName(hotkey);
ImGui.InputText($"{id}##{hotkey}", ref dispKey, 200, ImGuiInputTextFlags.ReadOnly | ImGuiInputTextFlags.AllowTabInput); // delete the box to delete focus 4head
if (ImGui.IsItemActive())
{
var modifiers = GetModifiers();
for (var k = 0; k < keyStates.Length; k++)
{
var keyState = keyStates[k];
if (k is >= 16 and <= 18 or >= 160 and <= 165 || k <= 2 && modifiers == 0 || (keyState.CurrentState & QoLKeyState.State.KeyUp) == 0) continue;
hotkey = k | modifiers;
return true;
}
}
if (!ImGui.IsItemDeactivated() || !ImGui.GetIO().KeysDown[(int)Keys.Escape]) return false;
hotkey = 0;
return true;
}
public static bool KeybindInput(ShCfg sh)
{
var ret = false;
if (InputHotkey("Hotkey", ref sh.Hotkey))
{
QoLBar.Config.Save();
ret = true;
}
ImGuiEx.SetItemTooltip("Press escape to clear the hotkey.");
if (sh.Hotkey <= 0) return ret;
if (ImGui.Checkbox("Pass Input to Game", ref sh.KeyPassthrough))
QoLBar.Config.Save();
ImGuiEx.SetItemTooltip("Disables the hotkey from blocking the game input.");
return ret;
}
public static bool KeybindInput(BarCfg bar)
{
var ret = false;
if (InputHotkey("Pie Hotkey", ref bar.Hotkey))
{
QoLBar.Config.Save();
ret = true;
}
ImGuiEx.SetItemTooltip("Use this to specify a held hotkey to bring the bar up as a pie menu.\n" +
"Press escape to clear the hotkey.");
return ret;
}
public static void DrawDebug()
{
ImGui.TextUnformatted($"Active Hotkeys - {hotkeys.Count}");
ImGui.Spacing();
if (hotkeys.Count < 1)
ImGui.Separator();
else
{
ImGui.Columns(2);
ImGui.Separator();
for (int i = 0; i < hotkeys.Count; i++)
{
ImGui.PushID(i);
var (_, ui) = hotkeys[i];
var sh = ui.Config;
if (ImGui.SmallButton("Delete"))
{
sh.Hotkey = 0;
sh.KeyPassthrough = false;
QoLBar.Config.Save();
}
ImGui.SameLine();
ImGui.PushFont(UiBuilder.IconFont);
ImGui.TextUnformatted(sh.KeyPassthrough ? FontAwesomeIcon.CheckCircle.ToIconString() : FontAwesomeIcon.TimesCircle.ToIconString());
ImGui.PopFont();
if (ImGui.IsItemHovered())
{
ImGui.SetTooltip($"Hotkey {(sh.KeyPassthrough ? "doesn't block" : "blocks")} game input.");
if (ImGui.IsMouseReleased(ImGuiMouseButton.Left))
{
sh.KeyPassthrough = !sh.KeyPassthrough;
QoLBar.Config.Save();
}
}
ImGui.SameLine();
ImGui.TextUnformatted(GetKeyName(sh.Hotkey));
ImGui.NextColumn();
if (sh.Type == ShCfg.ShortcutType.Category)
ImGui.TextUnformatted($"{sh.Mode} {(ui.parent == null ? "Category" : "Subcategory")} \"{sh.Name}\" {(string.IsNullOrEmpty(sh.Command) ? "" : "\n" + sh.Command)}");
else
ImGui.TextUnformatted(sh.Command);
ImGui.NextColumn();
if (i != hotkeys.Count - 1) // Shift last separator outside of columns so it doesn't clip with column borders
ImGui.Separator();
ImGui.PopID();
}
ImGui.Columns(1);
ImGui.Separator();
}
}
private static readonly Dictionary<Keys, string> _keynames = new()
{
[Keys.LButton] = "Mouse 1",
[Keys.RButton] = "Mouse 2",
[Keys.MButton] = "Mouse 3",
[Keys.XButton1] = "Mouse 4",
[Keys.XButton2] = "Mouse 5",
[Keys.ShiftKey] = "Shift",
[Keys.ControlKey] = "Ctrl",
[Keys.Menu] = "Alt",
[Keys.PageUp] = "PageUp",
[Keys.PageDown] = "PageDown",
[Keys.PrintScreen] = "PrintScreen",
[Keys.D0] = "0",
[Keys.D1] = "1",
[Keys.D2] = "2",
[Keys.D3] = "3",
[Keys.D4] = "4",
[Keys.D5] = "5",
[Keys.D6] = "6",
[Keys.D7] = "7",
[Keys.D8] = "8",
[Keys.D9] = "9",
[Keys.Scroll] = "ScrollLock",
[Keys.OemSemicolon] = ";",
[Keys.Oemplus] = "=",
[Keys.OemMinus] = "-",
[Keys.Oemcomma] = ",",
[Keys.OemPeriod] = ".",
[Keys.OemQuestion] = "/",
[Keys.Oemtilde] = "`",
[Keys.OemOpenBrackets] = "[",
[Keys.OemPipe] = "\\",
[Keys.OemCloseBrackets] = "]",
[Keys.OemQuotes] = "'"
};
public static string GetKeyName(int k)
{
var key = (Keys)k;
string mod = string.Empty;
if ((key & Keys.Shift) != 0)
{
mod += "Shift + ";
key -= Keys.Shift;
}
if ((key & Keys.Control) != 0)
{
mod += "Ctrl + ";
key -= Keys.Control;
}
if ((key & Keys.Alt) != 0)
{
mod += "Alt + ";
key -= Keys.Alt;
}
if (_keynames.TryGetValue(key, out var name))
return mod + name;
else
return mod + key;
}
}