-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackages.lisp
428 lines (355 loc) · 9.37 KB
/
packages.lisp
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
(in-package :cl-bodge.definition)
(defpackage :cl-bodge.utils
(:nicknames :ge.util)
(:use :cl :local-time :alexandria)
(:export with-gensyms
once-only
symbolicate
make-keyword
when-let
when-let*
if-let
switch
define-constant
alist-hash-table
read-file-into-string
nconcf
starts-with-subseq
positive-integer
copy-array
deletef
alist-hash-table
log-errors
with-hash-entries
make-hash-table-with-entries
stream->byte-array
file->byte-array
defenum
f
epoch-seconds
definline
copy-memory
ensure-not-null
if-unbound
when-bound
class-name-of
dolines
parent
adopt
abandon
dochildren
children-of
dotree
search-sorted))
(defpackage :cl-bodge.concurrency
(:nicknames :ge.mt)
(:use :cl-bodge.utils
:cl :bordeaux-threads :cl-muth)
(:import-from :blackbird
promisep
promise-finished-p
create-promise
with-promise
promisify
attach
catcher
tap
finally
alet
alet*
aif
multiple-promise-bind
all)
(:export make-job-queue
push-job
push-body-into
drain
clearup
->
execute
promisep
promise-finished-p
create-promise
with-promise
promisify
attach
catcher
tap
finally
when-all
when-all*
wait-let
wait
alet
alet*
aif
multiple-promise-bind
all))
(defpackage :cl-bodge.math
(:nicknames :ge.math)
(:use :cl :cl-bodge.utils)
(:export lerp
nlerp
mult
sum
div
subt
normalize
vec
vec2
vec3
vec4
vec->array
make-vec3
make-vec3*
make-vec2*
make-vec4*
sequence->vec3
vref
mat
square-mat
mat2
mat3
mat4
square-matrix-size
mref
mat->array
identity-mat4
rotation-mat4
rotation-mat4*
translation-mat4
translation-mat4*
scaling-mat4*
mat4->mat3
make-mat3*
perspective-projection-mat
quat
make-quat*
make-quat-from-euler-axis
quat->rotation-mat3
quat->rotation-mat4))
(defpackage :cl-bodge.memory
(:nicknames :ge.mem)
(:use :cl-bodge.utils
:cl :trivial-garbage)
(:export define-destructor
dispose
disposable
disposable-container
with-disposable))
(defpackage :cl-bodge.engine
(:nicknames :ge.ng)
(:use :cl-bodge.utils :cl-bodge.concurrency
:cl :bordeaux-threads :cl-muth)
(:export system
enable
disable
enabledp
system-object
system-of
generic-system
with-system-lock-held
initialize-system
discard-system
thread-bound-system
make-system-context
destroy-system-context
start-system-loop
*system-context*
check-system-context
thread-bound-object
engine-system
property
startup
shutdown))
(defpackage :cl-bodge.event
(:nicknames :ge.eve)
(:use :cl-bodge.engine :cl-bodge.utils
:cl :bordeaux-threads :cl-muth)
(:export event-system
event
defevent
register-event-class
register-event-classes
post
subscribe-to
subscribe-with-handler-body-to))
(defpackage :cl-bodge.host
(:nicknames :ge.host)
(:use :cl-bodge.engine :cl-bodge.utils :cl-bodge.concurrency :cl-bodge.event
:cl :bordeaux-threads :cl-muth :trivial-main-thread)
(:export host-system
bind-rendering-context
swap-buffers
state-from
keyboard-event
key-from
mouse-event
button-from
cursor-event
x-from
y-from
scroll-event
x-offset-from
y-offset-from
framebuffer-size-change-event
width-from
height-from))
(defpackage :cl-bodge.graphics.resources
(:nicknames :ge.gx.rsc)
(:use :cl-bodge.utils
:cl)
(:export pixel-format
pixel-format-of
image->array
size-of
shader-text-of
shader-type-of
shader-name-of
reload-shader-text))
(defpackage :cl-bodge.graphics
(:nicknames :ge.gx)
(:use :cl-bodge.engine :cl-bodge.host :cl-bodge.concurrency :cl-bodge.utils
:cl-bodge.math :cl-bodge.event :cl-bodge.memory :cl-bodge.graphics.resources
:cl :cl-muth :bordeaux-threads)
(:export graphics-system
in-wireframe-mode
render
make-vertex-array
attach-gpu-buffer
make-array-buffer
make-index-buffer
primitive
make-mesh
make-patch-mesh
compile-shader
make-shading-program
make-separable-shading-program
link-separable-shading-program
build-separable-shading-program
use-shading-program
program-uniform-variable
with-bound-texture
make-2d-texture
make-shading-pipeline
use-shading-program-stages
with-bound-shading-pipeline))
(defpackage :cl-bodge.audio
(:use :cl-bodge.engine :cl-bodge.math :cl-bodge.memory :cl-bodge.concurrency
:cl-bodge.utils
:cl :cl-muth)
(:nicknames :ge.snd)
(:export audio-system
listener-gain
listener-position
listener-velocity
listener-orientation
make-audio-source
play-audio
pause-audio
stop-audio
make-audio-buffer
attach-audio-buffer))
(defpackage :cl-bodge.physics
(:use :cl-bodge.engine :cl-bodge.utils :cl-bodge.math :cl-bodge.memory
:cl-bodge.concurrency :cl-bodge.utils
:cl :local-time)
(:nicknames :ge.phx)
(:export physics-system
observe-universe
make-rigid-body
position-of
rotation-of
linear-velocity-of
angular-velocity-of
mass-of
make-ball-joint
make-hinge-joint
make-slider-joint
make-universal-joint
make-double-hinge-joint
make-angular-motor-joint
make-sphere-geom
make-box-geom
make-plane-geom
make-capped-cylinder-geom
make-ray-geom
bind-geom
make-box-mass))
(defpackage :cl-bodge.resources
(:nicknames :ge.rsc)
(:use :cl-bodge.utils :cl-bodge.graphics :cl-bodge.graphics.resources
:cl-bodge.concurrency :cl-bodge.memory
:cl :cl-muth)
(:export load-shader-source
load-png-image
build-shading-program))
(defpackage :cl-bodge.animation
(:nicknames :ge.ani)
(:use :cl-bodge.utils :cl-bodge.math
:cl)
(:export make-keyframe
make-keyframe-sequence
rotation-at
make-keyframed-animation
frame-at
frame-rotation-of
start-animation
reset-animation
keyframed))
(defpackage :cl-bodge.scene
(:nicknames :ge.sg)
(:use :cl-bodge.utils :cl-bodge.engine :cl-bodge.graphics :cl-bodge.physics
:cl-bodge.math :cl-bodge.concurrency :cl-bodge.host :cl-bodge.memory
:cl-bodge.resources :cl-bodge.animation
:cl :cl-muth)
(:export node
find-node
node-attaching
node-detached
parent-of
make-scene
root-of
simulation-pass
rendering-pass
animate
node-enabled-p
initialize-node
discard-node
*scene*
*projection-matrix*
*transform-matrix*
body-transform-node
shading-pipeline-node
texture-node
mesh-node
make-node-mesh
projection-node
update-projection
transform-node
rotate-node
translate-node
camera-node
translate-camera
rotate-camera
shading-program-node
shading-parameter
shading-parameters-node
directional-light-node
model
make-model-graph
*bones*
animation-node
start-node-animation
reset-node-animation
skeleton-node
bone-node
rotate-bone
translate-bone
bone-to-world-transform-node
animated-bone-node
scenegraph))
(defpackage :cl-bodge
(:use :cl)
(:nicknames :bge)
(:export))