forked from WohlSoft/LunaLua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LunaDLL.pro
534 lines (526 loc) · 23.5 KB
/
LunaDLL.pro
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
TEMPLATE = lib
CONFIG -= app_bundle
CONFIG -= qt
CONFIG += dll
CONFIG += static
CONFIG += c++11
TARGET = LunaDLL
QMAKE_CXXFLAGS += -Wno-unused-variable -Wno-unused-parameter -Wno-write-strings -mwindows
DEFINES += LunaDLL_LIBRARY LunaDLL_EXPORTS
DEFINES += DX_EXPORT=Q_DECL_EXPORT _USRDLL LUNADLL_EXPORTS
INCLUDEPATH += $$PWD/LunaDll
INCLUDEPATH += $$PWD/LunaDll/libs/boost/
INCLUDEPATH += $$PWD/LunaDll/libs/lua_mingw/include
INCLUDEPATH += $$PWD/LunaDll/libs/luabind-include
INCLUDEPATH += $$PWD/LunaDll/libs/sdl/include
INCLUDEPATH += $$PWD/LunaDll/libs/glew/include
INCLUDEPATH += $$PWD/LunaDll/libs/glew/include
INCLUDEPATH += $$PWD/LunaDll/libs/freeimage
LIBS += -L$$PWD/LunaDll/libs/lua_mingw/lib
LIBS += -L$$PWD/LunaDll/libs/sdl_mingw/lib
LIBS += -static -lkernel32 -static -luser32 -static -lgdi32 -static -lcomdlg32 -static -lmsimg32 #-static -lcomsuppw
LIBS += -static -lmsimg32 -static -ldsound -static -lwinspool -static -ladvapi32 -static -lole32 -static -loleaut32 -static -llua5.1
LIBS += -static -lwinmm -static -lSDL2main -lSDL2.dll -static -lSDL2_mixer.dll libversion -lDbghelp -lvorbisfile -lvorbis -lmad -lmikmod.dll -lflac -logg
SOURCES += \
LunaDll/Autocode/Commands/AC_HeartSystem.cpp \
LunaDll/Autocode/Commands/AC_LunaControl.cpp \
LunaDll/Autocode/Commands/EnumCmd.cpp \
LunaDll/Autocode/Commands/GenComp.cpp \
LunaDll/Autocode/Autocode.cpp \
LunaDll/Autocode/AutocodeManager.cpp \
LunaDll/CellManager/CellManager.cpp \
LunaDll/CustomSprites/Hitbox/Hitbox.cpp \
LunaDll/CustomSprites/SpritesFuncs/SpriteBehaviorFuncs.cpp \
LunaDll/CustomSprites/SpritesFuncs/SpriteDrawFuncs.cpp \
LunaDll/CustomSprites/CSprite.cpp \
LunaDll/CustomSprites/CSpriteManager.cpp \
LunaDll/CustomSprites/SpriteComponent.cpp \
LunaDll/DeathCounter/DeathCounter.cpp \
LunaDll/DeathCounter/DeathRecord.cpp \
LunaDll/FileManager/CustomParamStore.cpp \
LunaDll/FileManager/config_manager.cpp \
LunaDll/GameConfig/GameAutostart.cpp \
LunaDll/GameConfig/GameConfiguration.cpp \
LunaDll/GameConfig/GeneralLunaConfig.cpp \
LunaDll/HardcodedGraphics/HardcodedGraphicsManager.cpp \
LunaDll/HardcodedGraphics/HardocodeGFXMap.cpp \
LunaDll/Input/Input.cpp \
LunaDll/IPC/IPCPipeServer.cpp \
LunaDll/Input/LunaGameController.cpp \
LunaDll/LevelCodes/dlltestlvlCode.cpp \
LunaDll/LevelCodes/Docopoper-AbstractAssault.lvl.cpp \
LunaDll/LevelCodes/Docopoper-Calleoca.cpp \
LunaDll/LevelCodes/Docopoper-TheFloorisLava.lvl..cpp \
LunaDll/LevelCodes/EuroShellRandD.lvl.cpp \
LunaDll/LevelCodes/JosephStaleknight-CurtainTortoise.lvl.cpp \
LunaDll/LevelCodes/Kil-DemosBrain.cpp \
LunaDll/LevelCodes/KilArmoryCode.cpp \
LunaDll/LevelCodes/SAJewers-QraestoliaCaverns.lvl.cpp \
LunaDll/LevelCodes/SAJewers-Snowboardin.cpp \
LunaDll/LevelCodes/Talkhaus-Science_Final_Battle.cpp \
LunaDll/LuaMain/LunaPathValidator.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookNpcHarm.cpp \
LunaDll/libs/ini-reader/INIReader.cpp \
LunaDll/libs/luabind-src/class.cpp \
LunaDll/libs/luabind-src/class_info.cpp \
LunaDll/libs/luabind-src/class_registry.cpp \
LunaDll/libs/luabind-src/class_rep.cpp \
LunaDll/libs/luabind-src/create_class.cpp \
LunaDll/libs/luabind-src/error.cpp \
LunaDll/libs/luabind-src/exception_handler.cpp \
LunaDll/libs/luabind-src/function.cpp \
LunaDll/libs/luabind-src/inheritance.cpp \
LunaDll/libs/luabind-src/link_compatibility.cpp \
LunaDll/libs/luabind-src/object_rep.cpp \
LunaDll/libs/luabind-src/open.cpp \
LunaDll/libs/luabind-src/pcall.cpp \
LunaDll/libs/luabind-src/scope.cpp \
LunaDll/libs/luabind-src/stack_content_by_name.cpp \
LunaDll/libs/luabind-src/weak_ref.cpp \
LunaDll/libs/luabind-src/wrapper_base.cpp \
LunaDll/libs/luasocket/luasocket.cpp \
LunaDll/libs/luasocket/mime.cpp \
LunaDll/libs/stackwalker/StackWalker.cpp \
LunaDll/Logging/Logger.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncEffects.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncGraphics.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncLevel.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncMisc.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncNative.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncText.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyAnimation.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyAsyncHTTPRequest.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyAudio.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyBGO.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyBlock.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyCameraInfo.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyConsole.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyData.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyLayer.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyLogger.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyMusicbox.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyNativeInput.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyNPC.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyPath.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyPlayer.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyPlayerSettings.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxySaveBank.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyScenery.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxySection.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyShader.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyTile.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyVBStr.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyWarp.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyWorld.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyWorldLevel.cpp \
LunaDll/LuaMain/LuaHelper.cpp \
LunaDll/LuaMain/LuaProxy.cpp \
LunaDll/LuaMain/LuaProxyFFI.cpp \
LunaDll/LuaMain/LuaSharedProxy.cpp \
LunaDll/LuaMain/LunaLuaMain.cpp \
LunaDll/MciEmulator/mciEmulator.cpp \
LunaDll/Minigames/CGUI/CGUIContainer.cpp \
LunaDll/Minigames/GameboyRPG.cpp \
LunaDll/Minigames/Minigames.cpp \
LunaDll/Misc/FreeImageUtils/FreeImageData.cpp \
LunaDll/Misc/FreeImageUtils/FreeImageGifData.cpp \
LunaDll/Misc/FreeImageUtils/FreeImageHelper.cpp \
LunaDll/Misc/FreeImageUtils/FreeImageInit.cpp \
LunaDll/Misc/Gui/GuiCrashNotify.cpp \
LunaDll/Misc/Gui/RichTextDialog.cpp \
LunaDll/Misc/MemoryScanner/MemoryScanner.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookCharacterId.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookFixups.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookGeneral.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookHooks.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookPublicFunctions.cpp \
LunaDll/Misc/RuntimeHookManagers/LevelHUDController.cpp \
LunaDll/Misc/RuntimeHookUtils/APIHook.cpp \
LunaDll/Misc/AsyncHTTPClient.cpp \
LunaDll/Misc/ErrorReporter.cpp \
LunaDll/Misc/MiscFuncs.cpp \
LunaDll/Misc/PerfTracker.cpp \
LunaDll/Misc/PGEEditorCmdSender.cpp \
LunaDll/Misc/Playground.cpp \
LunaDll/Misc/RuntimeHook.cpp \
LunaDll/Misc/SafeFPUControl.cpp \
LunaDll/Misc/SHMemServer.cpp \
LunaDll/Misc/TestMode.cpp \
LunaDll/Misc/TestModeMenu.cpp \
LunaDll/Misc/TypeLib.cpp \
LunaDll/Misc/UniPath.cpp \
LunaDll/Misc/VariantHelper.cpp \
LunaDll/Misc/VB6StrPtr.cpp \
LunaDll/Misc/WaitForTickEnd.cpp \
LunaDll/Misc/win32_Unicode.cpp \
LunaDll/Rendering/GL/GLContextManager.cpp \
LunaDll/Rendering/GL/GLDraw.cpp \
LunaDll/Rendering/GL/GLEngine.cpp \
LunaDll/Rendering/GL/GLEngineCmds.cpp \
LunaDll/Rendering/GL/GLEngineProxy.cpp \
LunaDll/Rendering/GL/GLFramebuffer.cpp \
LunaDll/Rendering/GL/GLInitTest.cpp \
LunaDll/Rendering/GL/GLSplitSprite.cpp \
LunaDll/Rendering/GL/GLSprite.cpp \
LunaDll/Rendering/GL/GLTextureStore.cpp \
LunaDll/Rendering/RenderOps/RenderBitmapOp.cpp \
LunaDll/Rendering/RenderOps/RenderEffectOp.cpp \
LunaDll/Rendering/RenderOps/RenderGLOp.cpp \
LunaDll/Rendering/RenderOps/RenderRectOp.cpp \
LunaDll/Rendering/RenderOps/RenderSpriteOp.cpp \
LunaDll/Rendering/Shaders/GLShader.cpp \
LunaDll/Rendering/Shaders/GLShaderAttributeInfo.cpp \
LunaDll/Rendering/Shaders/GLShaderUniformInfo.cpp \
LunaDll/Rendering/Shaders/GLShaderVariableEntry.cpp \
LunaDll/Rendering/Shaders/GLShaderVariableInfo.cpp \
LunaDll/Rendering/AsyncGifRecorder.cpp \
LunaDll/Rendering/BitBltEmulation.cpp \
LunaDll/Rendering/BMPBox.cpp \
LunaDll/Rendering/FrameCapture.cpp \
LunaDll/Rendering/Rendering.cpp \
LunaDll/Rendering/RenderOverrideManager.cpp \
LunaDll/Rendering/RenderUtils.cpp \
LunaDll/Rendering/SMBXMaskedImage.cpp \
LunaDll/SdlMusic/MusicDefList.cpp \
LunaDll/SdlMusic/MusicManager.cpp \
LunaDll/SdlMusic/SdlMusPlayer.cpp \
LunaDll/SMBXInternal/Reconstructed/Util/NpcToCoins.cpp \
LunaDll/SMBXInternal/Animation.cpp \
LunaDll/SMBXInternal/Blocks.cpp \
LunaDll/SMBXInternal/CustomGraphics.cpp \
LunaDll/SMBXInternal/HardcodedGraphicsAccess.cpp \
LunaDll/SMBXInternal/Layer.cpp \
LunaDll/SMBXInternal/Level.cpp \
LunaDll/SMBXInternal/NPCs.cpp \
LunaDll/SMBXInternal/Overworld.cpp \
LunaDll/SMBXInternal/PlayerMOB.cpp \
LunaDll/SMBXInternal/SMBXEvents.cpp \
LunaDll/SMBXInternal/Sound.cpp \
LunaDll/SMBXInternal/WorldLevel.cpp \
LunaDll/UserSaves/UserSaving.cpp \
LunaDll/EventStateMachine.cpp \
LunaDll/GlobalFuncs.cpp \
LunaDll/Globals.cpp \
LunaDll/Main.cpp \
LunaDll/PerformanceTimer.cpp \
LunaDll/PngRender.cpp \
LunaDll/SMBXEvents.cpp \
LunaDll/libs/ini-reader/ini.c \
LunaDll/libs/luasocket/auxiliar.c \
LunaDll/libs/luasocket/buffer.c \
LunaDll/libs/luasocket/except.c \
LunaDll/libs/luasocket/inet.c \
LunaDll/libs/luasocket/io.c \
LunaDll/libs/luasocket/options.c \
LunaDll/libs/luasocket/select.c \
LunaDll/libs/luasocket/serial.c \
LunaDll/libs/luasocket/tcp.c \
LunaDll/libs/luasocket/timeout.c \
LunaDll/libs/luasocket/udp.c \
LunaDll/libs/luasocket/unix.c \
LunaDll/libs/luasocket/usocket.c \
LunaDll/libs/luasocket/wsocket.c \
LunaDll/Autocode/Commands/AC_HeartSystem.cpp \
LunaDll/Autocode/Commands/AC_LunaControl.cpp \
LunaDll/Autocode/Commands/EnumCmd.cpp \
LunaDll/Autocode/Commands/GenComp.cpp \
LunaDll/Autocode/Autocode.cpp \
LunaDll/Autocode/AutocodeManager.cpp \
LunaDll/CellManager/CellManager.cpp \
LunaDll/CustomSprites/Hitbox/Hitbox.cpp \
LunaDll/CustomSprites/SpritesFuncs/SpriteBehaviorFuncs.cpp \
LunaDll/CustomSprites/SpritesFuncs/SpriteDrawFuncs.cpp \
LunaDll/CustomSprites/CSprite.cpp \
LunaDll/CustomSprites/CSpriteManager.cpp \
LunaDll/CustomSprites/SpriteComponent.cpp \
LunaDll/FileManager/LoadFile_Level.cpp \
LunaDll/FileManager/SMBXFileManager.cpp \
LunaDll/GameConfig/GameAutostart.cpp \
LunaDll/GameConfig/GameConfiguration.cpp \
LunaDll/GameConfig/GeneralLunaConfig.cpp \
LunaDll/HardcodedGraphics/HardcodedGraphicsManager.cpp \
LunaDll/HardcodedGraphics/HardocodeGFXMap.cpp \
LunaDll/Input/Input.cpp \
LunaDll/IPC/IPCPipeServer.cpp \
LunaDll/LevelCodes/dlltestlvlCode.cpp \
LunaDll/LevelCodes/Docopoper-AbstractAssault.lvl.cpp \
LunaDll/LevelCodes/Docopoper-Calleoca.cpp \
LunaDll/LevelCodes/Docopoper-TheFloorisLava.lvl..cpp \
LunaDll/LevelCodes/EuroShellRandD.lvl.cpp \
LunaDll/LevelCodes/JosephStaleknight-CurtainTortoise.lvl.cpp \
LunaDll/LevelCodes/Kil-DemosBrain.cpp \
LunaDll/LevelCodes/KilArmoryCode.cpp \
LunaDll/LevelCodes/SAJewers-QraestoliaCaverns.lvl.cpp \
LunaDll/LevelCodes/SAJewers-Snowboardin.cpp \
LunaDll/LevelCodes/Talkhaus-Science_Final_Battle.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncEffects.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncGraphics.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncLevel.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncMisc.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncNative.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions/LuaProxyGlobalFuncText.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyAnimation.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyAsyncHTTPRequest.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyAudio.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyBGO.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyBlock.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyCameraInfo.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyConsole.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyData.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyGlobalFunctions.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyLayer.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyLogger.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyMusicbox.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyNativeInput.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyNPC.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyPath.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyPlayer.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyPlayerSettings.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxySaveBank.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyScenery.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxySection.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyShader.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyTile.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyWarp.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyWorld.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyWorldLevel.cpp \
LunaDll/LuaMain/LuaHelper.cpp \
LunaDll/LuaMain/LuaProxy.cpp \
LunaDll/LuaMain/LuaProxyFFI.cpp \
LunaDll/LuaMain/LuaProxyFFIGraphics.cpp \
LunaDll/LuaMain/LuaSharedProxy.cpp \
LunaDll/LuaMain/LunaLuaMain.cpp \
LunaDll/MciEmulator/mciEmulator.cpp \
LunaDll/Minigames/CGUI/CGUIContainer.cpp \
LunaDll/Minigames/GameboyRPG.cpp \
LunaDll/Minigames/Minigames.cpp \
LunaDll/Misc/FreeImageUtils/FreeImageData.cpp \
LunaDll/Misc/FreeImageUtils/FreeImageGifData.cpp \
LunaDll/Misc/FreeImageUtils/FreeImageHelper.cpp \
LunaDll/Misc/FreeImageUtils/FreeImageInit.cpp \
LunaDll/Misc/Gui/GuiCrashNotify.cpp \
LunaDll/Misc/Gui/RichTextDialog.cpp \
LunaDll/Misc/MemoryScanner/MemoryScanner.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookCharacterId.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookFixups.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookGeneral.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookHooks.cpp \
LunaDll/Misc/RuntimeHookComponents/RuntimeHookPublicFunctions.cpp \
LunaDll/Misc/RuntimeHookManagers/LevelHUDController.cpp \
LunaDll/Misc/RuntimeHookUtils/APIHook.cpp \
LunaDll/Misc/AsyncHTTPClient.cpp \
LunaDll/Misc/ErrorReporter.cpp \
LunaDll/Misc/LoadScreen.cpp \
LunaDll/Misc/MiscFuncs.cpp \
LunaDll/Misc/NpcIdExtender.cpp \
LunaDll/Misc/PerfTracker.cpp \
LunaDll/Misc/PGEEditorCmdSender.cpp \
LunaDll/Misc/Playground.cpp \
LunaDll/Misc/ResourceFileMapper.cpp \
LunaDll/Misc/RuntimeHook.cpp \
LunaDll/Misc/SafeFPUControl.cpp \
LunaDll/Misc/SHMemServer.cpp \
LunaDll/Misc/TestMode.cpp \
LunaDll/Misc/TestModeMenu.cpp \
LunaDll/Misc/TypeLib.cpp \
LunaDll/Misc/UniPath.cpp \
LunaDll/Misc/VariantHelper.cpp \
LunaDll/Misc/VB6StrPtr.cpp \
LunaDll/Misc/WaitForTickEnd.cpp \
LunaDll/Misc/win32_Unicode.cpp \
LunaDll/Rendering/GL/GLContextManager.cpp \
LunaDll/Rendering/GL/GLDraw.cpp \
LunaDll/Rendering/GL/GLEngine.cpp \
LunaDll/Rendering/GL/GLEngineCmds.cpp \
LunaDll/Rendering/GL/GLEngineProxy.cpp \
LunaDll/Rendering/GL/GLFramebuffer.cpp \
LunaDll/Rendering/GL/GLInitTest.cpp \
LunaDll/Rendering/GL/GLSplitSprite.cpp \
LunaDll/Rendering/GL/GLSprite.cpp \
LunaDll/Rendering/GL/GLTextureStore.cpp \
LunaDll/Rendering/RenderOps/RenderBitmapOp.cpp \
LunaDll/Rendering/RenderOps/RenderEffectOp.cpp \
LunaDll/Rendering/RenderOps/RenderGLOp.cpp \
LunaDll/Rendering/RenderOps/RenderRectOp.cpp \
LunaDll/Rendering/Shaders/GLShader.cpp \
LunaDll/Rendering/Shaders/GLShaderAttributeInfo.cpp \
LunaDll/Rendering/Shaders/GLShaderUniformInfo.cpp \
LunaDll/Rendering/Shaders/GLShaderVariableEntry.cpp \
LunaDll/Rendering/Shaders/GLShaderVariableInfo.cpp \
LunaDll/Rendering/AsyncGifRecorder.cpp \
LunaDll/Rendering/BitBltEmulation.cpp \
LunaDll/Rendering/FrameCapture.cpp \
LunaDll/Rendering/ImageLoader.cpp \
LunaDll/Rendering/LunaImage.cpp \
LunaDll/Rendering/Rendering.cpp \
LunaDll/Rendering/RenderUtils.cpp \
LunaDll/SdlMusic/MusicDefList.cpp \
LunaDll/SdlMusic/MusicManager.cpp \
LunaDll/SdlMusic/SdlMusPlayer.cpp \
LunaDll/SMBXInternal/Reconstructed/Util/NpcToCoins.cpp \
LunaDll/SMBXInternal/Animation.cpp \
LunaDll/SMBXInternal/Blocks.cpp \
LunaDll/SMBXInternal/CustomGraphics.cpp \
LunaDll/SMBXInternal/HardcodedGraphicsAccess.cpp \
LunaDll/SMBXInternal/Layer.cpp \
LunaDll/SMBXInternal/Level.cpp \
LunaDll/SMBXInternal/NPCs.cpp \
LunaDll/SMBXInternal/Overworld.cpp \
LunaDll/SMBXInternal/PlayerMOB.cpp \
LunaDll/SMBXInternal/SMBXEvents.cpp \
LunaDll/SMBXInternal/Sound.cpp \
LunaDll/SMBXInternal/WorldLevel.cpp \
LunaDll/UserSaves/UserSaving.cpp \
LunaDll/EventStateMachine.cpp \
LunaDll/GlobalFuncs.cpp \
LunaDll/Globals.cpp \
LunaDll/Main.cpp \
LunaDll/PerformanceTimer.cpp \
LunaDll/PngRender.cpp \
LunaDll/SMBXEvents.cpp \
LunaDll/VersionString.cpp \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyFileFormats.cpp
DISTFILES += \
LunaDll/LunaDll.rc
HEADERS += \
LunaDll/Autocode/Autocode.h \
LunaDll/Autocode/AutocodeManager.h \
LunaDll/CellManager/CellManager.h \
LunaDll/CustomSprites/Hitbox/Hitbox.h \
LunaDll/CustomSprites/SpritesFuncs/SpriteFuncs.h \
LunaDll/CustomSprites/CSprite.h \
LunaDll/CustomSprites/CSpriteManager.h \
LunaDll/CustomSprites/SpriteComponent.h \
LunaDll/FileManager/CustomParamStore.h \
LunaDll/FileManager/SMBXFileManager.h \
LunaDll/FileManager/config_manager.h \
LunaDll/GameConfig/GameAutostart.h \
LunaDll/GameConfig/GameConfiguration.h \
LunaDll/GameConfig/GeneralLunaConfig.h \
LunaDll/HardcodedGraphics/HardcodedGraphicsManager.h \
LunaDll/Input/Input.h \
LunaDll/IPC/IPCPipeServer.h \
LunaDll/Input/LunaGameController.h \
LunaDll/LevelCodes/LevelCodes.h \
LunaDll/LuaMain/LuaProxyComponent/LuaProxyAudio.h \
LunaDll/LuaMain/LuabindIncludes.h \
LunaDll/LuaMain/LuaHelper.h \
LunaDll/LuaMain/LuaProxy.h \
LunaDll/LuaMain/LuaProxyFFIGraphics.h \
LunaDll/LuaMain/LuaSharedProxy.h \
LunaDll/LuaMain/LunaLuaMain.h \
LunaDll/LuaMain/LunaPathValidator.h \
LunaDll/MciEmulator/mciEmulator.h \
LunaDll/Minigames/CGUI/CGUI.h \
LunaDll/Minigames/GameboyRPG.h \
LunaDll/Minigames/Minigames.h \
LunaDll/Misc/FreeImageUtils/FreeImageData.h \
LunaDll/Misc/FreeImageUtils/FreeImageGifData.h \
LunaDll/Misc/FreeImageUtils/FreeImageHelper.h \
LunaDll/Misc/FreeImageUtils/FreeImageInit.h \
LunaDll/Misc/Gui/GuiCrashNotify.h \
LunaDll/Misc/Gui/GuiUtils.h \
LunaDll/Misc/Gui/RichTextDialog.h \
LunaDll/Misc/MemoryScanner/MemoryScanner.h \
LunaDll/Misc/MemoryScanner/MemoryScannerDefines.h \
LunaDll/Misc/RuntimeHookManagers/LevelHUDController.h \
LunaDll/Misc/RuntimeHookUtils/APIHook.h \
LunaDll/Misc/RuntimeHookUtils/CmnHdr.h \
LunaDll/Misc/RuntimeHookUtils/Toolhelp.h \
LunaDll/Misc/AsmPatch.h \
LunaDll/Misc/AsyncHTTPClient.h \
LunaDll/Misc/ErrorReporter.h \
LunaDll/Misc/LoadScreen.h \
LunaDll/Misc/MiscFuncs.h \
LunaDll/Misc/NpcIdExtender.h \
LunaDll/Misc/PerfTracker.h \
LunaDll/Misc/PGEEditorCmdSender.h \
LunaDll/Misc/Playground.h \
LunaDll/Misc/ResourceFileMapper.h \
LunaDll/Misc/RunningStat.h \
LunaDll/Misc/RuntimeHook.h \
LunaDll/Misc/SafeFPUControl.h \
LunaDll/Misc/SHMemServer.h \
LunaDll/Misc/SRect.h \
LunaDll/Misc/TestMode.h \
LunaDll/Misc/TestModeMenu.h \
LunaDll/Misc/ThreadedCmdQueue.h \
LunaDll/Misc/TypeLib.h \
LunaDll/Misc/UniPath.h \
LunaDll/Misc/VariantHelper.h \
LunaDll/Misc/VB6StrPtr.h \
LunaDll/Misc/WaitForTickEnd.h \
LunaDll/Misc/win32_Unicode.h \
LunaDll/Rendering/GL/GLCompat.h \
LunaDll/Rendering/GL/GLContextManager.h \
LunaDll/Rendering/GL/GLDraw.h \
LunaDll/Rendering/GL/GLEngine.h \
LunaDll/Rendering/GL/GLEngineCmds.h \
LunaDll/Rendering/GL/GLEngineProxy.h \
LunaDll/Rendering/GL/GLFramebuffer.h \
LunaDll/Rendering/GL/GLInitTest.h \
LunaDll/Rendering/GL/GLSplitSprite.h \
LunaDll/Rendering/GL/GLSprite.h \
LunaDll/Rendering/GL/GLTextureStore.h \
LunaDll/Rendering/RenderOps/RenderBitmapOp.h \
LunaDll/Rendering/RenderOps/RenderEffectOp.h \
LunaDll/Rendering/RenderOps/RenderGLOp.h \
LunaDll/Rendering/RenderOps/RenderOp.h \
LunaDll/Rendering/RenderOps/RenderRectOp.h \
LunaDll/Rendering/RenderOps/RenderStringOp.h \
LunaDll/Rendering/Shaders/GLShader.h \
LunaDll/Rendering/Shaders/GLShaderAttributeInfo.h \
LunaDll/Rendering/Shaders/GLShaderUniformInfo.h \
LunaDll/Rendering/Shaders/GLShaderVariableEntry.h \
LunaDll/Rendering/Shaders/GLShaderVariableInfo.h \
LunaDll/Rendering/Shaders/GLShaderVariableType.h \
LunaDll/Rendering/AsyncGifRecorder.h \
LunaDll/Rendering/AsyncGifRecorderImgs.h \
LunaDll/Rendering/BitBltEmulation.h \
LunaDll/Rendering/FrameCapture.h \
LunaDll/Rendering/ImageLoader.h \
LunaDll/Rendering/LunaImage.h \
LunaDll/Rendering/Rendering.h \
LunaDll/Rendering/RenderUtils.h \
LunaDll/Rendering/SMBXImageCategories.h \
LunaDll/SdlMusic/MusicManager.h \
LunaDll/SdlMusic/SdlMusPlayer.h \
LunaDll/SMBXInternal/Reconstructed/Util/NpcToCoins.h \
LunaDll/SMBXInternal/Reconstructed/ReconstructedDefines.h \
LunaDll/SMBXInternal/Animation.h \
LunaDll/SMBXInternal/BaseItemArray.h \
LunaDll/SMBXInternal/BGOs.h \
LunaDll/SMBXInternal/Blocks.h \
LunaDll/SMBXInternal/CameraInfo.h \
LunaDll/SMBXInternal/CollectedStarRecord.h \
LunaDll/SMBXInternal/CustomGraphics.h \
LunaDll/SMBXInternal/HardcodedGraphicsAccess.h \
LunaDll/SMBXInternal/Layer.h \
LunaDll/SMBXInternal/Level.h \
LunaDll/SMBXInternal/Menu.h \
LunaDll/SMBXInternal/Musicbox.h \
LunaDll/SMBXInternal/NativeInput.h \
LunaDll/SMBXInternal/NPCs.h \
LunaDll/SMBXInternal/Overworld.h \
LunaDll/SMBXInternal/Path.h \
LunaDll/SMBXInternal/PlayerMOB.h \
LunaDll/SMBXInternal/Scenery.h \
LunaDll/SMBXInternal/SMBXEvents.h \
LunaDll/SMBXInternal/Sound.h \
LunaDll/SMBXInternal/Tile.h \
LunaDll/SMBXInternal/Warp.h \
LunaDll/SMBXInternal/Water.h \
LunaDll/SMBXInternal/WorldLevel.h \
LunaDll/UserSaves/UserSaving.h \
LunaDll/CGUIContainer.h \
LunaDll/Defines.h \
LunaDll/EventStateMachine.h \
LunaDll/GlobalFuncs.h \
LunaDll/Globals.h \
LunaDll/httprequest.h \
LunaDll/Main.h \
LunaDll/PerformanceTimer.h \
LunaDll/PngRender.h \
LunaDll/resource.h \
LunaDll/version.h