-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsources.cmake
562 lines (506 loc) · 16.9 KB
/
sources.cmake
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
set(BASE_HEADERS
src/base/log.hpp
src/base/exception.hpp
src/base/utils.hpp
src/base/properties.hpp
src/base/sdl_surface.hpp
)
set(BASE_GEOMETRY_HEADERS
src/base/geometry/aabb.hpp
src/base/geometry/trianglemeshutils.hpp
src/base/geometry/plane.hpp
src/base/geometry/triangle.hpp
src/base/geometry/line.hpp
)
set(BASE_MATH_HEADERS
src/base/math/quaternion.hpp
src/base/math/matrix3.hpp
src/base/math/matrix4.hpp
src/base/math/vector3.hpp
src/base/math/bluntmath.hpp
)
set(BASE_SOURCES
src/base/exception.cpp
src/base/sdl_surface.cpp
src/base/utils.cpp
src/base/properties.cpp
src/base/log.cpp
src/base/geometry/triangle.cpp
src/base/geometry/line.cpp
src/base/geometry/trianglemeshutils.cpp
src/base/geometry/aabb.cpp
src/base/geometry/plane.cpp
src/base/math/vector3.cpp
src/base/math/matrix3.cpp
src/base/math/bluntmath.cpp
src/base/math/quaternion.cpp
src/base/math/matrix4.cpp
)
set(SYSTEMS_COMMON_HEADERS
src/systems/isystemscene.hpp
src/systems/isystem.hpp
src/systems/isystemtask.hpp
src/systems/isystemobject.hpp
)
set(SYSTEMS_COMMON_SOURCES
src/systems/isystemtask.cpp
)
set(SYSTEMS_GRAPHICS_HEADERS
src/systems/graphics/graphics_task.hpp
src/systems/graphics/graphics_scene.hpp
src/systems/graphics/graphics_object.hpp
src/systems/graphics/graphics_system.hpp
)
set(SYSTEMS_GRAPHICS_OBJECTS_HEADERS
src/systems/graphics/objects/graphics_overlay2d.hpp
src/systems/graphics/objects/graphics_camera.hpp
src/systems/graphics/objects/graphics_light.hpp
src/systems/graphics/objects/graphics_geometry.hpp
)
set(SYSTEMS_GRAPHICS_RESOURCES_HEADERS
src/systems/graphics/resources/vertexbuffer.hpp
src/systems/graphics/resources/texture.hpp
)
set(SYSTEMS_GRAPHICS_RENDERING_HEADERS
src/systems/graphics/rendering/interface_renderer3d.hpp
src/systems/graphics/rendering/opengl_renderer3d.hpp
src/systems/graphics/rendering/r3d_messages.hpp
)
set(SYSTEMS_GRAPHICS_SOURCES
src/systems/graphics/graphics_object.cpp
src/systems/graphics/graphics_task.cpp
src/systems/graphics/objects/graphics_geometry.cpp
src/systems/graphics/objects/graphics_camera.cpp
src/systems/graphics/objects/graphics_light.cpp
src/systems/graphics/objects/graphics_overlay2d.cpp
src/systems/graphics/graphics_scene.cpp
src/systems/graphics/resources/vertexbuffer.cpp
src/systems/graphics/resources/texture.cpp
src/systems/graphics/rendering/r3d_messages.cpp
src/systems/graphics/rendering/opengl_renderer3d.cpp
src/systems/graphics/graphics_system.cpp
)
set(SYSTEMS_PHYSICS_HEADERS
src/systems/physics/physics_scene.hpp
src/systems/physics/physics_object.hpp
src/systems/physics/objects/physics_geometry.hpp
src/systems/physics/objects/physics_joint.hpp
src/systems/physics/wrappers/ode_physics.hpp
src/systems/physics/wrappers/interface_physics.hpp
src/systems/physics/resources/vertexbuffer.hpp
src/systems/physics/physics_system.hpp
src/systems/physics/physics_task.hpp
)
set(SYSTEMS_PHYSICS_SOURCES
src/systems/physics/physics_scene.cpp
src/systems/physics/physics_task.cpp
src/systems/physics/physics_system.cpp
src/systems/physics/physics_object.cpp
src/systems/physics/objects/physics_joint.cpp
src/systems/physics/objects/physics_geometry.cpp
src/systems/physics/wrappers/ode_physics.cpp
src/systems/physics/resources/vertexbuffer.cpp
)
set(SYSTEMS_AUDIO_OBJECTS_HEADERS
src/systems/audio/objects/audio_sound.hpp
src/systems/audio/objects/audio_audioreceiver.hpp
)
set(SYSTEMS_AUDIO_HEADERS
src/systems/audio/audio_object.hpp
src/systems/audio/audio_scene.hpp
src/systems/audio/audio_system.hpp
)
set(SYSTEMS_AUDIO_RESOURCES_HEADERS
src/systems/audio/resources/audio_soundbuffer.hpp
)
set(SYSTEMS_AUDIO_RENDERING_HEADERS
src/systems/audio/rendering/openal_renderer.hpp
src/systems/audio/rendering/interface_audiorenderer.hpp
src/systems/audio/rendering/audio_messages.hpp
)
set(SYSTEMS_AUDIO_SOURCES
src/systems/audio/audio_system.cpp
src/systems/audio/audio_scene.cpp
src/systems/audio/objects/audio_audioreceiver.cpp
src/systems/audio/objects/audio_sound.cpp
src/systems/audio/resources/audio_soundbuffer.cpp
src/systems/audio/rendering/openal_renderer.cpp
src/systems/audio/rendering/audio_messages.cpp
src/systems/audio/audio_object.cpp
)
set(LOADERS_HEADERS
src/loaders/aseloader.hpp
src/loaders/wavloader.hpp
src/loaders/imageloader.hpp
)
set(LOADERS_SOURCES
src/loaders/imageloader.cpp
src/loaders/aseloader.cpp
src/loaders/wavloader.cpp
)
set(TYPES_HEADERS
src/types/trianglemesh.hpp
src/types/subject.hpp
src/types/spatial.hpp
src/types/iusertask.hpp
src/types/lockable.hpp
src/types/resource.hpp
src/types/material.hpp
src/types/observer.hpp
src/types/singleton.hpp
src/types/interpreter.hpp
src/types/refcounted.hpp
src/types/command.hpp
src/types/loader.hpp
src/types/thread.hpp
src/types/messagequeue.hpp
)
set(TYPES_SOURCES
src/types/iusertask.cpp
src/types/spatial.cpp
src/types/refcounted.cpp
src/types/trianglemesh.cpp
src/types/observer.cpp
src/types/command.cpp
)
set(FRAMEWORK_HEADERS
src/framework/workerthread.hpp
src/framework/tasksequence.hpp
src/framework/scheduler.hpp
)
set(FRAMEWORK_SOURCES
src/framework/workerthread.cpp
src/framework/tasksequence.cpp
src/framework/scheduler.cpp
)
set(SCENE_HEADERS
src/scene/scene.hpp
src/scene/iscene.hpp
src/scene/object.hpp
src/scene/objectfactory.hpp
)
set(SCENE2D_HEADERS
src/scene/scene2d/scene2d.hpp
)
set(SCENE_OBJECTS_HEADERS
src/scene/objects/skybox.hpp
src/scene/objects/geometry.hpp
src/scene/objects/light.hpp
src/scene/objects/audioreceiver.hpp
src/scene/objects/sound.hpp
src/scene/objects/joint.hpp
src/scene/objects/image2d.hpp
src/scene/objects/camera.hpp
)
set(SCENE3D_HEADERS
src/scene/scene3d/scene3d.hpp
src/scene/scene3d/node.hpp
)
set(SCENE_RESOURCES_HEADERS
src/scene/resources/geometrydata.hpp
src/scene/resources/soundbuffer.hpp
src/scene/resources/surface.hpp
)
set(SCENE_SOURCES
src/scene/objectfactory.cpp
src/scene/scene2d/scene2d.cpp
src/scene/scene.cpp
src/scene/objects/image2d.cpp
src/scene/objects/sound.cpp
src/scene/objects/light.cpp
src/scene/objects/audioreceiver.cpp
src/scene/objects/geometry.cpp
src/scene/objects/skybox.cpp
src/scene/objects/joint.cpp
src/scene/objects/camera.cpp
src/scene/scene3d/scene3d.cpp
src/scene/scene3d/node.cpp
src/scene/object.cpp
src/scene/resources/surface.cpp
src/scene/resources/soundbuffer.cpp
src/scene/resources/geometrydata.cpp
)
set(MANAGERS_HEADERS
src/managers/resourcemanager.hpp
src/managers/taskmanager.hpp
src/managers/resourcemanagerpool.hpp
src/managers/environmentmanager.hpp
src/managers/usereventmanager.hpp
src/managers/scenemanager.hpp
src/managers/systemmanager.hpp
)
set(MANAGERS_SOURCES
src/managers/taskmanager.cpp
src/managers/scenemanager.cpp
src/managers/resourcemanagerpool.cpp
src/managers/usereventmanager.cpp
src/managers/environmentmanager.cpp
src/managers/systemmanager.cpp
)
set(UTILS_HEADERS
src/utils/animation.hpp
src/utils/objectloader.hpp
src/utils/database.hpp
src/utils/xmlloader.hpp
src/utils/splitgeometry.hpp
src/utils/orbitcamera.hpp
src/utils/text2d.hpp
src/utils/directoryparser.hpp
src/utils/threadhud.hpp
src/utils/console.hpp
)
set(UTILS_EXT_HEADERS
src/utils/animationextensions/animationextension.hpp
src/utils/animationextensions/footballanimationextension.hpp
)
set(UTILS_SOURCES
src/utils/database.cpp
src/utils/text2d.cpp
src/utils/orbitcamera.cpp
src/utils/animation.cpp
src/utils/splitgeometry.cpp
src/utils/objectloader.cpp
src/utils/directoryparser.cpp
src/utils/threadhud.cpp
src/utils/xmlloader.cpp
src/utils/animationextensions/footballanimationextension.cpp
src/utils/console.cpp
)
set(UTILS_GUI2_HEADERS
src/utils/gui2/events.hpp
src/utils/gui2/windowmanager.hpp
src/utils/gui2/page.hpp
src/utils/gui2/style.hpp
src/utils/gui2/guitask.hpp
src/utils/gui2/view.hpp
)
set(UTILS_GUI2_WIDGETS_HEADERS
src/utils/gui2/widgets/slider.hpp
src/utils/gui2/widgets/image.hpp
src/utils/gui2/widgets/dialog.hpp
src/utils/gui2/widgets/editline.hpp
src/utils/gui2/widgets/caption.hpp
src/utils/gui2/widgets/filebrowser.hpp
src/utils/gui2/widgets/pulldown.hpp
src/utils/gui2/widgets/frame.hpp
src/utils/gui2/widgets/iconselector.hpp
src/utils/gui2/widgets/capturekey.hpp
src/utils/gui2/widgets/scrollbar.hpp
src/utils/gui2/widgets/grid.hpp
src/utils/gui2/widgets/text.hpp
src/utils/gui2/widgets/menu.hpp
src/utils/gui2/widgets/root.hpp
src/utils/gui2/widgets/button.hpp
)
set(UTILS_GUI2_SOURCES
src/utils/gui2/style.cpp
src/utils/gui2/widgets/caption.cpp
src/utils/gui2/widgets/menu.cpp
src/utils/gui2/widgets/editline.cpp
src/utils/gui2/widgets/button.cpp
src/utils/gui2/widgets/image.cpp
src/utils/gui2/widgets/grid.cpp
src/utils/gui2/widgets/root.cpp
src/utils/gui2/widgets/iconselector.cpp
src/utils/gui2/widgets/frame.cpp
src/utils/gui2/widgets/filebrowser.cpp
src/utils/gui2/widgets/scrollbar.cpp
src/utils/gui2/widgets/capturekey.cpp
src/utils/gui2/widgets/text.cpp
src/utils/gui2/widgets/slider.cpp
src/utils/gui2/widgets/dialog.cpp
src/utils/gui2/widgets/pulldown.cpp
src/utils/gui2/events.cpp
src/utils/gui2/view.cpp
src/utils/gui2/windowmanager.cpp
src/utils/gui2/guitask.cpp
src/utils/gui2/page.cpp
)
set(BLUNTED_CORE_HEADERS
src/defines.hpp
src/blunted.hpp
)
set(BLUNTED_CORE_SOURCES
src/blunted.cpp
)
set(LIBS_SQLITE3_HEADERS
src/libs/sqlite3/sqlite3ext.h
src/libs/sqlite3/sqlite3.h
)
set(LIBS_HEADERS
)
set(ALL_LIBS_HEADERS ${LIBS_HEADERS}
${LIBS_SQLITE3_HEADERS})
set(LIBS_SOURCES
src/libs/sqlite3/sqlite3.c
)
set(LEAGUE_HEADERS
src/league/leaguecode.hpp
)
set(LEAGUE_SOURCES
src/league/leaguecode.cpp
)
set(CORE_HEADERS
src/gamedefines.hpp
src/utils.hpp
src/main.hpp
src/gametask.hpp
src/dbquery.hpp
src/misc/hungarian.h
)
set(CORE_SOURCES
src/misc/perlin.cpp
src/misc/hungarian.c
src/gametask.cpp
src/utils.cpp
src/main.cpp
src/dbquery.cpp
src/gamedefines.cpp
)
set(GAME_HEADERS
src/onthepitch/humangamer.hpp
src/onthepitch/officials.hpp
src/onthepitch/player/humanoid/humanoidbase.hpp
src/onthepitch/player/humanoid/humanoid.hpp
src/onthepitch/player/humanoid/animcollection.hpp
src/onthepitch/player/humanoid/humanoid_utils.hpp
src/onthepitch/player/playerofficial.hpp
src/onthepitch/player/playerbase.hpp
src/onthepitch/player/player.hpp
src/onthepitch/player/controller/icontroller.hpp
src/onthepitch/player/controller/elizacontroller.hpp
src/onthepitch/player/controller/humancontroller.hpp
src/onthepitch/player/controller/playercontroller.hpp
src/onthepitch/player/controller/strategies/special/celebration.hpp
src/onthepitch/player/controller/strategies/strategy.hpp
src/onthepitch/player/controller/strategies/offtheball/default_off.hpp
src/onthepitch/player/controller/strategies/offtheball/default_def.hpp
src/onthepitch/player/controller/strategies/offtheball/default_mid.hpp
src/onthepitch/player/controller/strategies/offtheball/goalie_default.hpp
src/onthepitch/player/controller/refereecontroller.hpp
src/onthepitch/referee.hpp
src/onthepitch/ball.hpp
src/onthepitch/team.hpp
src/onthepitch/match.hpp
src/onthepitch/AIsupport/AIfunctions.hpp
src/onthepitch/AIsupport/mentalimage.hpp
src/onthepitch/teamAIcontroller.hpp
src/onthepitch/proceduralpitch.hpp
)
set(GAME_SOURCES
src/onthepitch/officials.cpp
src/onthepitch/player/humanoid/humanoid_utils.cpp
src/onthepitch/player/humanoid/animcollection.cpp
src/onthepitch/player/humanoid/humanoidbase.cpp
src/onthepitch/player/humanoid/humanoid.cpp
src/onthepitch/player/playerofficial.cpp
src/onthepitch/player/player.cpp
src/onthepitch/player/playerbase.cpp
src/onthepitch/player/controller/playercontroller.cpp
src/onthepitch/player/controller/humancontroller.cpp
src/onthepitch/player/controller/icontroller.cpp
src/onthepitch/player/controller/refereecontroller.cpp
src/onthepitch/player/controller/elizacontroller.cpp
src/onthepitch/player/controller/strategies/special/celebration.cpp
src/onthepitch/player/controller/strategies/strategy.cpp
src/onthepitch/player/controller/strategies/offtheball/default_mid.cpp
src/onthepitch/player/controller/strategies/offtheball/default_off.cpp
src/onthepitch/player/controller/strategies/offtheball/default_def.cpp
src/onthepitch/player/controller/strategies/offtheball/goalie_default.cpp
src/onthepitch/humangamer.cpp
src/onthepitch/ball.cpp
src/onthepitch/match.cpp
src/onthepitch/referee.cpp
src/onthepitch/AIsupport/mentalimage.cpp
src/onthepitch/AIsupport/AIfunctions.cpp
src/onthepitch/proceduralpitch.cpp
src/onthepitch/team.cpp
src/onthepitch/teamAIcontroller.cpp
)
set(HID_HEADERS
src/hid/gamepad.hpp
src/hid/ihidevice.hpp
src/hid/keyboard.hpp
)
set(HID_SOURCES
src/hid/gamepad.cpp
src/hid/keyboard.cpp
)
set(MENU_HEADERS
src/menu/league/league_calendar.hpp
src/menu/league/league_standings.hpp
src/menu/league/league_team.hpp
src/menu/league/league.hpp
src/menu/league/league_management.hpp
src/menu/league/league_system.hpp
src/menu/league/league_inbox.hpp
src/menu/league/league_forward.hpp
src/menu/gameplan.hpp
src/menu/cameramenu.hpp
src/menu/pagefactory.hpp
src/menu/widgets/gameplansubmenu.hpp
src/menu/widgets/planmap.hpp
src/menu/startmatch/matchoptions.hpp
src/menu/startmatch/loadingmatch.hpp
src/menu/startmatch/teamselect.hpp
src/menu/menutask.hpp
src/menu/settings.hpp
src/menu/controllerselect.hpp
src/menu/mainmenu.hpp
src/menu/menuscene.hpp
src/menu/visualoptions.hpp
src/menu/credits.hpp
src/menu/ingame/phasemenu.hpp
src/menu/ingame/replaymenu.hpp
src/menu/ingame/tacticsdebug.hpp
src/menu/ingame/gamepage.hpp
src/menu/ingame/gameover.hpp
src/menu/ingame/ingame.hpp
src/menu/ingame/playerhud.hpp
src/menu/ingame/scoreboard.hpp
src/menu/ingame/radar.hpp
)
set(MENU_SOURCES
src/menu/credits.cpp
src/menu/league/league_system.cpp
src/menu/league/league_team.cpp
src/menu/league/league_management.cpp
src/menu/league/league.cpp
src/menu/league/league_calendar.cpp
src/menu/league/league_inbox.cpp
src/menu/league/league_forward.cpp
src/menu/league/league_standings.cpp
src/menu/gameplan.cpp
src/menu/widgets/planmap.cpp
src/menu/widgets/gameplansubmenu.cpp
src/menu/startmatch/teamselect.cpp
src/menu/startmatch/loadingmatch.cpp
src/menu/startmatch/matchoptions.cpp
src/menu/visualoptions.cpp
src/menu/pagefactory.cpp
src/menu/menutask.cpp
src/menu/cameramenu.cpp
src/menu/menuscene.cpp
src/menu/controllerselect.cpp
src/menu/mainmenu.cpp
src/menu/ingame/radar.cpp
src/menu/ingame/tacticsdebug.cpp
src/menu/ingame/gamepage.cpp
src/menu/ingame/replaymenu.cpp
src/menu/ingame/gameover.cpp
src/menu/ingame/phasemenu.cpp
src/menu/ingame/ingame.cpp
src/menu/ingame/scoreboard.cpp
src/menu/ingame/playerhud.cpp
src/menu/settings.cpp
)
set(DATA_HEADERS
src/data/matchdata.hpp
src/data/teamdata.hpp
src/data/playerdata.hpp
)
set(DATA_SOURCES
src/data/matchdata.cpp
src/data/playerdata.cpp
src/data/teamdata.cpp
)