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
|
---@meta
---
---The `lovr.event` module handles events from the operating system.
---
---Due to its low-level nature, it's rare to use `lovr.event` in simple projects.
---
---
---### NOTE:
---You can define your own custom events by adding a function to the `lovr.handlers` table with a key of the name of the event you want to add.
---
---Then, push the event using `lovr.event.push`.
---
---@class lovr.event
lovr.event = {}
---
---Clears the event queue, removing any unprocessed events.
---
function lovr.event.clear() end
---
---This function returns a Lua iterator for all of the unprocessed items in the event queue.
---
---Each event consists of a name as a string, followed by event-specific arguments.
---
---This function is called in the default implementation of `lovr.run`, so it is normally not necessary to poll for events yourself.
---
---@return function iterator # The iterator function, usable in a for loop.
function lovr.event.poll() end
---
---Fills the event queue with unprocessed events from the operating system.
---
---This function should be called often, otherwise the operating system will consider the application unresponsive. This function is called in the default implementation of `lovr.run`.
---
function lovr.event.pump() end
---
---Pushes an event onto the event queue.
---
---It will be processed the next time `lovr.event.poll` is called.
---
---For an event to be processed properly, there needs to be a function in the `lovr.handlers` table with a key that's the same as the event name.
---
---
---### NOTE:
---Only nil, booleans, numbers, strings, and LÖVR objects are supported types for event data.
---
---@param name string # The name of the event.
function lovr.event.push(name) end
---
---Pushes an event to quit.
---
---An optional number can be passed to set the exit code for the application.
---
---An exit code of zero indicates normal termination, whereas a nonzero exit code indicates that an error occurred.
---
---
---### NOTE:
---This function is equivalent to calling `lovr.event.push('quit', <args>)`.
---
---The event won't be processed until the next time `lovr.event.poll` is called.
---
---The `lovr.quit` callback will be called when the event is processed, which can be used to do any cleanup work.
---
---The callback can also return `false` to abort the quitting process.
---
---@param code? number # The exit code of the program.
function lovr.event.quit(code) end
---
---Pushes an event to restart the framework.
---
---
---### NOTE:
---The event won't be processed until the next time `lovr.event.poll` is called.
---
---The `lovr.restart` callback can be used to persist a value between restarts.
---
function lovr.event.restart() end
---
---Keys that can be pressed on a keyboard.
---
---Notably, numpad keys are missing right now.
---
---@alias lovr.KeyCode
---
---The A key.
---
---| '"a"'
---
---The B key.
---
---| '"b"'
---
---The C key.
---
---| '"c"'
---
---The D key.
---
---| '"d"'
---
---The E key.
---
---| '"e"'
---
---The F key.
---
---| '"f"'
---
---The G key.
---
---| '"g"'
---
---The H key.
---
---| '"h"'
---
---The I key.
---
---| '"i"'
---
---The J key.
---
---| '"j"'
---
---The K key.
---
---| '"k"'
---
---The L key.
---
---| '"l"'
---
---The M key.
---
---| '"m"'
---
---The N key.
---
---| '"n"'
---
---The O key.
---
---| '"o"'
---
---The P key.
---
---| '"p"'
---
---The Q key.
---
---| '"q"'
---
---The R key.
---
---| '"r"'
---
---The S key.
---
---| '"s"'
---
---The T key.
---
---| '"t"'
---
---The U key.
---
---| '"u"'
---
---The V key.
---
---| '"v"'
---
---The W key.
---
---| '"w"'
---
---The X key.
---
---| '"x"'
---
---The Y key.
---
---| '"y"'
---
---The Z key.
---
---| '"z"'
---
---The 0 key.
---
---| '"0"'
---
---The 1 key.
---
---| '"1"'
---
---The 2 key.
---
---| '"2"'
---
---The 3 key.
---
---| '"3"'
---
---The 4 key.
---
---| '"4"'
---
---The 5 key.
---
---| '"5"'
---
---The 6 key.
---
---| '"6"'
---
---The 7 key.
---
---| '"7"'
---
---The 8 key.
---
---| '"8"'
---
---The 9 key.
---
---| '"9"'
---
---The space bar.
---
---| '"space"'
---
---The enter key.
---
---| '"return"'
---
---The tab key.
---
---| '"tab"'
---
---The escape key.
---
---| '"escape"'
---
---The backspace key.
---
---| '"backspace"'
---
---The up arrow key.
---
---| '"up"'
---
---The down arrow key.
---
---| '"down"'
---
---The left arrow key.
---
---| '"left"'
---
---The right arrow key.
---
---| '"right"'
---
---The home key.
---
---| '"home"'
---
---The end key.
---
---| '"end"'
---
---The page up key.
---
---| '"pageup"'
---
---The page down key.
---
---| '"pagedown"'
---
---The insert key.
---
---| '"insert"'
---
---The delete key.
---
---| '"delete"'
---
---The F1 key.
---
---| '"f1"'
---
---The F2 key.
---
---| '"f2"'
---
---The F3 key.
---
---| '"f3"'
---
---The F4 key.
---
---| '"f4"'
---
---The F5 key.
---
---| '"f5"'
---
---The F6 key.
---
---| '"f6"'
---
---The F7 key.
---
---| '"f7"'
---
---The F8 key.
---
---| '"f8"'
---
---The F9 key.
---
---| '"f9"'
---
---The F10 key.
---
---| '"f10"'
---
---The F11 key.
---
---| '"f11"'
---
---The F12 key.
---
---| '"f12"'
---
---The backtick/backquote/grave accent key.
---
---| '"`"'
---
---The dash/hyphen/minus key.
---
---| '"-"'
---
---The equal sign key.
---
---| '"="'
---
---The left bracket key.
---
---| '"["'
---
---The right bracket key.
---
---| '"]"'
---
---The backslash key.
---
---| '"\\"'
---
---The semicolon key.
---
---| '";"'
---
---The single quote key.
---
---| '"\'"'
---
---The comma key.
---
---| '","'
---
---The period key.
---
---| '"."'
---
---The slash key.
---
---| '"/"'
---
---The left control key.
---
---| '"lctrl"'
---
---The left shift key.
---
---| '"lshift"'
---
---The left alt key.
---
---| '"lalt"'
---
---The left OS key (windows, command, super).
---
---| '"lgui"'
---
---The right control key.
---
---| '"rctrl"'
---
---The right shift key.
---
---| '"rshift"'
---
---The right alt key.
---
---| '"ralt"'
---
---The right OS key (windows, command, super).
---
---| '"rgui"'
---
---The caps lock key.
---
---| '"capslock"'
---
---The scroll lock key.
---
---| '"scrolllock"'
---
---The numlock key.
---
---| '"numlock"'
|