-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmapping.d
304 lines (284 loc) · 7.28 KB
/
mapping.d
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
module mapping;
import core.sys.windows.windows;
import std.conv;
import std.json;
import std.algorithm;
import std.array;
import reneo;
const uint KEYSYM_VOID = 0xFFFFFF;
const NeoKey VOID_KEY = NeoKey(KEYSYM_VOID, NeoKeyType.VKEY, VKEY.VK_VOID);
NeoLayout[] layouts;
enum VKEY {
VK_LBUTTON = 0x01,
VK_RBUTTON = 0x02,
VK_CANCEL = 0x03,
VK_MBUTTON = 0x04,
VK_XBUTTON1 = 0x05,
VK_XBUTTON2 = 0x06,
// undefined 0x07
VK_BACK = 0x08,
VK_TAB = 0x09,
// reserved 0x0A-0x0B
VK_CLEAR = 0x0C,
VK_RETURN = 0x0D,
// undefined 0x0E-0x0F
VK_SHIFT = 0x10,
VK_CONTROL = 0x11,
VK_MENU = 0x12,
VK_PAUSE = 0x13,
VK_CAPITAL = 0x14,
VK_KANA = 0x15,
VK_HANGEUL = 0x15,
VK_HANGUL = 0x15,
VK_JUNJA = 0x17,
VK_FINAL = 0x18,
VK_HANJA = 0x19,
VK_KANJI = 0x19,
VK_ESCAPE = 0x1B,
VK_CONVERT = 0x1C,
VK_NONCONVERT = 0x1D,
VK_ACCEPT = 0x1E,
VK_MODECHANGE = 0x1F,
VK_SPACE = 0x20,
VK_PRIOR = 0x21,
VK_NEXT = 0x22,
VK_END = 0x23,
VK_HOME = 0x24,
VK_LEFT = 0x25,
VK_UP = 0x26,
VK_RIGHT = 0x27,
VK_DOWN = 0x28,
VK_SELECT = 0x29,
VK_PRINT = 0x2A,
VK_EXECUTE = 0x2B,
VK_SNAPSHOT = 0x2C,
VK_INSERT = 0x2D,
VK_DELETE = 0x2E,
VK_HELP = 0x2F,
VK_KEY_0 = 0x30,
VK_KEY_1,
VK_KEY_2,
VK_KEY_3,
VK_KEY_4,
VK_KEY_5,
VK_KEY_6,
VK_KEY_7,
VK_KEY_8,
VK_KEY_9,
// undefined 0x3A-0x40
VK_KEY_A = 0x41,
VK_KEY_B,
VK_KEY_C,
VK_KEY_D,
VK_KEY_E,
VK_KEY_F,
VK_KEY_G,
VK_KEY_H,
VK_KEY_I,
VK_KEY_J,
VK_KEY_K,
VK_KEY_L,
VK_KEY_M,
VK_KEY_N,
VK_KEY_O,
VK_KEY_P,
VK_KEY_Q,
VK_KEY_R,
VK_KEY_S,
VK_KEY_T,
VK_KEY_U,
VK_KEY_V,
VK_KEY_W,
VK_KEY_X,
VK_KEY_Y,
VK_KEY_Z,
VK_LWIN = 0x5B,
VK_RWIN = 0x5C,
VK_APPS = 0x5D,
// reserved 0x5E
VK_SLEEP = 0x5F,
VK_NUMPAD0 = 0x60,
VK_NUMPAD1 = 0x61,
VK_NUMPAD2 = 0x62,
VK_NUMPAD3 = 0x63,
VK_NUMPAD4 = 0x64,
VK_NUMPAD5 = 0x65,
VK_NUMPAD6 = 0x66,
VK_NUMPAD7 = 0x67,
VK_NUMPAD8 = 0x68,
VK_NUMPAD9 = 0x69,
VK_MULTIPLY = 0x6A,
VK_ADD = 0x6B,
VK_SEPARATOR = 0x6C,
VK_SUBTRACT = 0x6D,
VK_DECIMAL = 0x6E,
VK_DIVIDE = 0x6F,
VK_F1 = 0x70,
VK_F2 = 0x71,
VK_F3 = 0x72,
VK_F4 = 0x73,
VK_F5 = 0x74,
VK_F6 = 0x75,
VK_F7 = 0x76,
VK_F8 = 0x77,
VK_F9 = 0x78,
VK_F10 = 0x79,
VK_F11 = 0x7A,
VK_F12 = 0x7B,
VK_F13 = 0x7C,
VK_F14 = 0x7D,
VK_F15 = 0x7E,
VK_F16 = 0x7F,
VK_F17 = 0x80,
VK_F18 = 0x81,
VK_F19 = 0x82,
VK_F20 = 0x83,
VK_F21 = 0x84,
VK_F22 = 0x85,
VK_F23 = 0x86,
VK_F24 = 0x87,
// unassigned 0x88-0x8F
// Fake VK for Ctrl+Z combo
VK_UNDO = 0x89,
VK_NUMLOCK = 0x90,
VK_SCROLL = 0x91,
// OEM specific 0x92-0x96
// unassigned 0x97-0x9F
VK_LSHIFT = 0xA0,
VK_RSHIFT = 0xA1,
VK_LCONTROL = 0xA2,
VK_RCONTROL = 0xA3,
VK_LMENU = 0xA4,
VK_RMENU = 0xA5,
VK_BROWSER_BACK = 0xA6,
VK_BROWSER_FORWARD = 0xA7,
VK_BROWSER_REFRESH = 0xA8,
VK_BROWSER_STOP = 0xA9,
VK_BROWSER_SEARCH = 0xAA,
VK_BROWSER_FAVORITES = 0xAB,
VK_BROWSER_HOME = 0xAC,
VK_VOLUME_MUTE = 0xAD,
VK_VOLUME_DOWN = 0xAE,
VK_VOLUME_UP = 0xAF,
VK_MEDIA_NEXT_TRACK = 0xB0,
VK_MEDIA_PREV_TRACK = 0xB1,
VK_MEDIA_STOP = 0xB2,
VK_MEDIA_PLAY_PAUSE = 0xB3,
VK_LAUNCH_MAIL = 0xB4,
VK_LAUNCH_MEDIA_SELECT = 0xB5,
VK_LAUNCH_APP1 = 0xB6,
VK_LAUNCH_APP2 = 0xB7,
// reserved 0xB8-0xB9
VK_OEM_1 = 0xBA,
VK_OEM_PLUS = 0xBB,
VK_OEM_COMMA = 0xBC,
VK_OEM_MINUS = 0xBD,
VK_OEM_PERIOD = 0xBE,
VK_OEM_2 = 0xBF,
VK_OEM_3 = 0xC0,
// reserved 0xC1-0xD7
// unassigned 0xD8-0xDA
VK_OEM_4 = 0xDB,
VK_OEM_5 = 0xDC,
VK_OEM_6 = 0xDD,
VK_OEM_7 = 0xDE,
VK_OEM_8 = 0xDF,
// reserved 0xE0
// OEM specific 0xE1
VK_OEM_102 = 0xE2,
// OEM specific 0xE3-0xE4
VK_PROCESSKEY = 0xE5,
// OEM specific 0xE6
VK_PACKET = 0xE7,
// unassigned 0xE8
// OEM specific 0xE9-0xF5
VK_ATTN = 0xF6,
VK_CRSEL = 0xF7,
VK_EXSEL = 0xF8,
VK_EREOF = 0xF9,
VK_PLAY = 0xFA,
VK_ZOOM = 0xFB,
VK_NONAME = 0xFC,
VK_PA1 = 0xFD,
VK_OEM_CLEAR = 0xFE,
VK_VOID = 0xFF
}
struct Scancode {
uint scan;
bool extended; // whether the extended bit is set for this physical key
}
struct MapEntry {
NeoKey[6] layers;
bool capslockable; // is this key affected by capslock
}
struct NeoLayout {
wstring name;
wstring dllName;
struct Modifiers {
Scancode shiftLeft;
Scancode shiftRight;
Scancode mod3Left;
Scancode mod3Right;
Scancode mod4Left;
Scancode mod4Right;
}
Modifiers modifiers;
MapEntry[Scancode] map; // map scancodes to a 6-array of keys for each layer and misc other info
}
void initLayouts(JSONValue jsonLayoutArray) {
layouts = [];
foreach (JSONValue jsonLayout; jsonLayoutArray.array) {
NeoLayout layout;
layout.name = jsonLayout["name"].str.to!wstring;
if ("dllName" in jsonLayout) {
// if there is no dllName this is a pure standalone layout
layout.dllName = jsonLayout["dllName"].str.to!wstring;
}
layout.modifiers.shiftLeft = parseScancode(jsonLayout["modifiers"]["shiftLeft"].str);
layout.modifiers.shiftRight = parseScancode(jsonLayout["modifiers"]["shiftRight"].str);
layout.modifiers.mod3Left = parseScancode(jsonLayout["modifiers"]["mod3Left"].str);
layout.modifiers.mod3Right = parseScancode(jsonLayout["modifiers"]["mod3Right"].str);
layout.modifiers.mod4Left = parseScancode(jsonLayout["modifiers"]["mod4Left"].str);
layout.modifiers.mod4Right = parseScancode(jsonLayout["modifiers"]["mod4Right"].str);
foreach (string scancodeString, JSONValue jsonLayersArray; jsonLayout["map"]) {
MapEntry entry;
for (int i = 0; i < 6; i++) {
entry.layers[i] = parseNeoKey(jsonLayersArray.array[i]);
}
layout.map[parseScancode(scancodeString)] = entry;
}
foreach (JSONValue scancodeJson; jsonLayout["capslockableKeys"].array) {
auto scan = parseScancode(scancodeJson.str);
layout.map[scan].capslockable = true;
}
layouts ~= layout;
}
}
NeoKey parseNeoKey(JSONValue jsonKey) {
NeoKey key;
key.vk_code = VKEY.VK_VOID;
if ("keysym" in jsonKey) {
key.keysym = parseKeysym(jsonKey["keysym"].str);
} else {
key.keysym = KEYSYM_VOID;
}
if ("vk" in jsonKey) {
key.keytype = NeoKeyType.VKEY;
key.vk_code = jsonKey["vk"].str.to!VKEY;
} else if ("char" in jsonKey) {
key.keytype = NeoKeyType.CHAR;
key.char_code = jsonKey["char"].str.to!wstring[0];
}
if ("label" in jsonKey) {
key.label = jsonKey["label"].str;
} else if ("char" in jsonKey) {
key.label = jsonKey["char"].str;
}
return key;
}
Scancode parseScancode(string scancodeString) {
// scancode is a byte in hex, a + after the code means the extended bit is set
bool extended = scancodeString.length == 3 && scancodeString[2] == '+';
uint scan = scancodeString[0..2].to!uint(16);
return Scancode(scan, extended);
}