-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbindings.lisp
680 lines (525 loc) · 16.5 KB
/
bindings.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
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
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
(in-package #:cl-ode)
(declaim (optimize (speed 3)))
(cl:eval-when (:compile-toplevel :load-toplevel)
(cl:unless (cl:fboundp 'swig-lispify-noprefix)
(cl:defun swig-lispify-noprefix (name flag cl:&optional (package cl:*package*))
(cl:labels ((helper (lst last rest cl:&aux (c (cl:car lst)))
(cl:cond
((cl:null lst)
rest)
((cl:upper-case-p c)
(helper (cl:cdr lst) 'upper
(cl:case last
(lower (cl:list* c #\- rest))
(cl:t (cl:cons c rest)))))
((cl:lower-case-p c)
(helper (cl:cdr lst) 'lower (cl:cons (cl:char-upcase c) rest)))
((cl:digit-char-p c)
(helper (cl:cdr lst) 'digit
(cl:case last
((upper lower) (cl:list* c #\- rest))
(cl:t (cl:cons c rest)))))
((cl:char-equal c #\_)
(helper (cl:cdr lst) '_ (cl:cons #\- rest)))
(cl:t
(cl:error "Invalid character: ~A" c))))
(strip-prefix (prf str)
(let ((l (length prf)))
(if (and (> (length str) l) (string= prf (subseq str 0 l)))
(subseq str l)
str))))
(cl:let ((fix (cl:case flag
((constant enumvalue) "+")
(variable "*")
(cl:t ""))))
(cl:intern
(cl:concatenate
'cl:string
fix
(cl:nreverse (helper (cl:concatenate 'cl:list (strip-prefix "d" name)) cl:nil cl:nil))
fix)
package))))))
(defmacro defcfun-rename-function ((name &optional new-name (export t)) &rest rest)
(let ((lisp-name (or new-name
(swig-lispify-noprefix name 'function))))
`(prog1
(defcfun (,name ,lisp-name)
,@rest)
,(when export `(cl:export (swig-lispify-noprefix ,name 'function))))))
(defcfun-rename-function ("dGetConfiguration") :string)
(defcfun-rename-function ("dInitODE") :void)
(defcfun-rename-function ("dInitODE2") :void
(init-flags :unsigned-int))
(defcfun-rename-function ("dCloseODE") :void)
(defcfun-rename-function ("dBodyCreate") dBodyID
(world dWorldID))
(defcfun-rename-function ("dBodyGetWorld") dWorldID
(body dBodyID))
(defcfun-rename-function ("dBodyDestroy") :void
(world dBodyID))
(defcfun-rename-function ("dBodyGetPosition") dVector3
(body dBodyID))
(defcfun-rename-function ("dBodyGetRotation") dMatrix3
(body dBodyID))
(defcfun-rename-function ("dBodySetQuaternion") :void
(body dBodyID)
(q dQuaternion))
(defcfun-rename-function ("dBodyGetQuaternion") dQuaternion
(body dBodyID))
(defcfun-rename-function ("dBodyGetMass" dbodygetmass) :void
(body dBodyID)
(mass dMass))
(defgeneric body-get-mass (this))
(defmethod body-get-mass ((this body))
(let ((mass (make-instance 'ode::mass)))
(dbodygetmass this mass)
mass))
(defcfun-rename-function ("dBodySetMass") :void
(body dBodyID)
(mass dMass))
(defcfun-rename-function ("dBodySetPosition") :void
(body dBodyID)
(x dReal)
(y dReal)
(z dReal))
(defcfun-rename-function ("dBodySetLinearVel") :void
(body dBodyID)
(x dReal)
(y dReal)
(z dReal))
(defcfun-rename-function ("dBodySetAngularVel") :void
(body dBodyID)
(x dReal)
(y dReal)
(z dReal))
(defcfun-rename-function ("dBodyGetLinearVel") dVector3
(body dBodyID))
(defcfun-rename-function ("dBodyGetAngularVel") dVector3
(body dBodyID))
(defcfun-rename-function ("dBodySetMaxAngularSpeed") :void
(body dBodyID)
(max-speed dReal))
(defcfun-rename-function ("dBodySetRotation") :void
(body dBodyID)
(R dMatrix3))
(defcfun-rename-function ("dBodyEnable") :void
(body dBodyID))
(defcfun-rename-function ("dBodyDisable") :void
(body dBodyID))
(defcfun-rename-function ("dBodyIsEnabled") :boolean
(body dBodyID))
(defcfun-rename-function ("dBodyGetFirstGeom") dGeomID
(body dBodyID))
(defcfun-rename-function ("dBodyGetNextGeom") dGeomID
(geom dGeomID))
(defcfun-rename-function ("dGeomSetCategoryBits") :void
(geom dGeomID)
(bits :unsigned-long))
(defcfun-rename-function ("dGeomSetCollideBits") :void
(geom dGeomID)
(bits :unsigned-long))
(defcfun-rename-function ("dGeomGetCollideBits") :unsigned-long
(geom dGeomID))
(defcfun-rename-function ("dGeomGetCategoryBits") :unsigned-long
(geom dGeomID))
(defcfun-rename-function ("dBodySetAutoDisableFlag") :void
(body dBodyID)
(auto-disable :int))
(defcfun-rename-function ("dBodyGetAutoDisableFlag") :int
(body dBodyID))
(defcfun-rename-function ("dBodyAddForce") :void
(body dBodyID)
(fx dReal)
(fy dReal)
(fz dReal))
(defcfun-rename-function ("dBodyAddTorque") :void
(body dBodyID)
(fx dReal)
(fy dReal)
(fz dReal))
(defcfun-rename-function ("dBodyAddRelForce") :void
(body dBodyID)
(fx dReal)
(fy dReal)
(fz dReal))
(defcfun-rename-function ("dBodyAddRelTorque") :void
(body dBodyID)
(fx dReal)
(fy dReal)
(fz dReal))
(defcfun-rename-function ("dBodyAddForceAtPos") :void
(body dBodyID)
(fx dReal)
(fy dReal)
(fz dReal)
(px dReal)
(py dReal)
(pz dReal))
(defcfun-rename-function ("dBodyAddForceAtRelPos") :void
(body dBodyID)
(fx dReal)
(fy dReal)
(fz dReal)
(px dReal)
(py dReal)
(pz dReal))
(defcfun-rename-function ("dBodyAddRelForceAtPos") :void
(body dBodyID)
(fx dReal)
(fy dReal)
(fz dReal)
(px dReal)
(py dReal)
(pz dReal))
(defcfun-rename-function ("dBodyAddRelForceAtRelPos") :void
(body dBodyID)
(fx dReal)
(fy dReal)
(fz dReal)
(px dReal)
(py dReal)
(pz dReal))
(defcfun-rename-function ("dBodyGetForce") dVector3
(body dBodyID))
(defcfun-rename-function ("dBodyGetTorque") dVector3
(body dBodyID))
(defcfun-rename-function ("dBodySetForce") :void
(body dBodyID)
(x dReal)
(y dReal)
(z dReal))
(defcfun-rename-function ("dBodySetTorque") :void
(body dBodyID)
(x dReal)
(y dReal)
(z dReal))
(defcfun-rename-function ("dBodySetDynamic") :void
(body dBodyID))
(defcfun-rename-function ("dBodySetKinematic") :void
(body dBodyID))
(defcfun-rename-function ("dBodyIsKinematic") :boolean
(body dBodyID))
(defcfun-rename-function ("dBodyVectorToWorld") :void
(body dBodyID)
(px dReal)
(py dReal)
(pz dReal)
(result dVector3))
(defcfun-rename-function ("dBodyVectorFromWorld") :void
(body dBodyID)
(px dReal)
(py dReal)
(pz dReal)
(result dVector3))
(defcfun-rename-function ("dBodySetAutoDisableLinearThreshold") :void
(body dBodyID)
(linear-threshold dReal))
(defcfun-rename-function ("dBodyGetAutoDisableLinearThreshold") dReal
(body dBodyID))
(defcfun-rename-function ("dBodySetAutoDisableAngularThreshold") :void
(body dBodyID)
(angular-threshold dReal))
(defcfun-rename-function ("dBodyGetAutoDisableAngularThreshold") dReal
(body dBodyID))
(defcfun-rename-function ("dBodySetAutoDisableSteps") :void
(body dBodyID)
(steps :int))
(defcfun-rename-function ("dBodyGetAutoDisableSteps") :int
(body dBodyID))
(defcfun-rename-function ("dBodySetAutoDisableTime") :void
(body dBodyID)
(time dReal))
(defcfun-rename-function ("dBodyGetAutoDisableTime") dReal
(body dBodyID))
(defcfun-rename-function ("dBodySetAutoDisableAverageSamplesCount") :void
(body dBodyID)
(average-samples-count :unsigned-int))
(defcfun-rename-function ("dBodyGetAutoDisableAverageSamplesCount") :int
(body dBodyID))
(defcfun-rename-function ("dBodySetAutoDisableDefaults") :void
(body dBodyID))
(defcfun ("dBodySetMovedCallback" Body-Set-Moved-Callback) :void
(body dBodyID)
(callback :pointer))
(defcfun-rename-function ("dBodyGetLinearDamping") dReal
(body dBodyID))
(defcfun-rename-function ("dBodyGetAngularDamping") dReal
(body dBodyID))
(defcfun-rename-function ("dBodySetLinearDamping") :void
(body dBodyID)
(scale dReal))
(defcfun-rename-function ("dBodySetDamping") :void
(body dBodyID)
(scale dReal))
(defcfun-rename-function ("dBodySetAngularDamping") :void
(body dBodyID)
(scale dReal))
(defcfun-rename-function ("dGeomSetPosition") :void
(geom dGeomID)
(x dReal)
(y dReal)
(z dReal))
(defcfun-rename-function ("dGeomSetRotation") :void
(geom dGeomID)
(r dMatrix3))
(defcfun-rename-function ("dGeomSetQuaternion") :void
(geom dGeomID)
(q dQuaternion))
(defcfun-rename-function ("dGeomGetPosition") dVector3
(geom dGeomID))
(defcfun-rename-function ("dGeomGetRotation") dMatrix3
(geom dGeomID))
(defcfun-rename-function ("dGeomGetQuaternion") :void
(geom dGeomID)
(result dQuaternion))
(defcfun-rename-function ("dGeomSetOffsetPosition") :void
(geom dGeomID)
(x dReal)
(y dReal)
(z dReal))
(defcfun-rename-function ("dGeomSetOffsetRotation") :void
(geom dGeomID)
(r dMatrix3))
(defcfun-rename-function ("dGeomSetOffsetQuaternion") :void
(geom dGeomID)
(q dQuaternion))
(defcfun-rename-function ("dGeomClearOffset") :void
(geom dGeomID))
(defcfun-rename-function ("dCreateBox" Create-Box) dBoxID
(space dSpaceID)
(lx dReal)
(ly dReal)
(lz dReal))
(defcfun-rename-function ("dCreatePlane" Create-Plane) dPlaneID
(space dSpaceID)
(a dReal)
(b dReal)
(c dReal)
(d dReal))
(defcfun-rename-function ("dGeomDestroy") :void
(obj dGeomID))
(defcfun-rename-function ("dGeomSetBody") :void
(geom dGeomID)
(body dBodyID))
(defcfun-rename-function ("dHashSpaceCreate") dHashSpaceID
(space dSpaceID))
(defcfun-rename-function ("dQuadTreeSpaceCreate") dQuadSpaceID
(space dSpaceID)
(center dVector3)
(extents dVector3)
(depth :int))
(defcfun-rename-function ("dJointGroupEmpty") :void
(jointGroup dJointGroupID))
(defcfun-rename-function ("dJointAttach") :void
(joint dJointID)
(body1 dBodyID)
(body2 dBodyID))
(defcfun-rename-function ("dJointGroupCreate") dJointGroupID
(max-size :int))
(defcfun-rename-function ("dJointGroupDestroy") :void
(joint-group dJointGroupID))
(defcfun-rename-function ("dMassSetBox") :void
(mass dMass)
(m dReal)
(lx dReal)
(ly dReal)
(lz dReal))
(defcfun-rename-function ("dMassSetBoxTotal") :void
(mass dMass)
(m dReal)
(lx dReal)
(ly dReal)
(lz dReal))
(defcfun-rename-function ("dMassSetZero") :void
(mass dMass))
(defcfun-rename-function ("dRFromAxisAndAngle") :void
(R dMatrix3)
(ax dReal)
(ay dReal)
(az dReal)
(angle dReal))
(defcfun-rename-function ("dSpaceCollide") :void
(space dSpaceID)
(data :pointer)
(callback :pointer))
(defcfun-rename-function ("dWorldCreate") dWorldID)
(defcfun-rename-function ("dWorldDestroy") :void
(world dWorldID))
(defcfun-rename-function ("dWorldSetGravity") :void
(world dWorldID)
(x dReal)
(y dReal)
(z dReal))
(defcfun "dWorldGetGravity" :void
(world dWorldID)
(gravity :pointer))
(defcfun-rename-function ("dWorldStep") :void
(world dWorldID)
(step_size dReal))
(defcfun-rename-function ("dCreateSphere" Sphere-Create) dSphereID
(space dSpaceID)
(radius dReal))
(defcfun-rename-function ("dGeomSphereSetRadius") :void
(sphere dSphereID)
(radius dReal))
(defcfun-rename-function ("dGeomSphereGetRadius") dReal
(sphere dSphereID))
(defcfun-rename-function ("dGeomSpherePointDepth") dReal
(sphere dSphereID)
(x dReal)
(y dReal)
(z dReal))
(defcfun-rename-function ("dMassSetSphere") :void
(m dMass)
(density dReal)
(radius dReal))
;; (defgeneric body-set-sphere (this density radius))
;; (defmethod body-set-sphere ((this body) density radius)
;; (with-foreign-object (mass '(:struct dmass))
;; (mass-set-sphere mass density radius)
;; (body-set-mass this mass)))
(defcfun-rename-function ("dMassSetSphereTotal") :void
(m dMass)
(total-mass dReal)
(radius dReal))
(defcfun-rename-function ("dCreateCylinder" Cylinder-Create) dCylinderID
(space dSpaceID)
(radius dReal)
(length dReal))
(defcfun-rename-function ("dMassSetCylinder") :void
(m dMass)
(density dReal)
(direction :int)
(radius dReal)
(length dReal))
(defcfun-rename-function ("dMassSetCylinderTotal") :void
(m dMass)
(density dReal)
(direction :int)
(radius dReal)
(length dReal))
(defcfun-rename-function ("dCreateCapsule" Capsule-Create) dCapsuleID
(space dSpaceID)
(radius dReal)
(length dReal))
(defcfun-rename-function ("dMassSetCapsule") :void
(m dMass)
(density dReal)
(direction :int)
(radius dReal)
(length dReal))
(defcfun-rename-function ("dMassSetCapsuleTotal") :void
(m dMass)
(density dReal)
(direction :int)
(radius dReal)
(length dReal))
(defcfun-rename-function ("dCreateRay" Ray-Create) dRayID
(space dSpaceID)
(length dReal))
(defcfun-rename-function ("dGeomRaySetLength") :void
(ray dRayID)
(length dReal))
(defcfun-rename-function ("dGeomRayGetLength") dReal
(ray dRayID))
(defcfun-rename-function ("dGeomRaySet") :void
(ray dRayID)
(px dReal)
(py dReal)
(pz dReal)
(dx dReal)
(dy dReal)
(dz dReal))
(defcfun-rename-function ("dGeomRayGet" dGeomRayGet) :void
(ray dRayID)
(start dVector3)
(dir dVector3))
(defmethod geom-ray-get ((this ray))
(cffi:with-foreign-objects ((start 'dVector3)
(dir 'dVector3))
(dGeomRayGet this start dir)
(values start
dir)))
(defcfun-rename-function ("dGeomRaySetParams") :void
(ray dRayID)
(first-contact :int)
(backface-cull :boolean))
(defcfun ("dGeomRayGetParams" dGeomRayGetParams) :void
(ray dGeomID)
(FirstContact (:pointer :int))
(BackfaceCull (:pointer :int)))
(defmethod geom-ray-get-params ((this ray))
(cffi:with-foreign-objects ((first-contact :int)
(back-face-cull :int))
(dgeomraygetparams this first-contact back-face-cull)
(values (cffi:mem-aref first-contact :int)
(cffi:mem-aref back-face-cull :int))))
(defcfun-rename-function ("dGeomRaySetClosestHit") :void
(ray dRayID)
(ClosestHit :int))
(defcfun-rename-function ("dGeomRayGetClosestHit") :int
(ray dRayID))
(defcfun-rename-function ("dGeomCreateConvex" dCreateConvex nil) dConvexID
(space dSpaceID)
(planes (:pointer dReal))
(planecount :int)
(points (:pointer dReal))
(pointcount :int)
(polygons (:pointer :unsigned-int)))
(defcfun-rename-function ("dGeomSetConvex" dSetConvex nil) dConvexID
(space dSpaceID)
(planes (:pointer dReal))
(planecount :int)
(points (:pointer dReal))
(pointcount :int)
(polygons (:pointer :unsigned-int)))
(defcfun-rename-function ("dSpaceDestroy") :void
(space dSpaceID))
(defcfun-rename-function ("dWorldSetCFM") :void
(world dWorldID)
(cfm dReal))
(defcfun-rename-function ("dWorldSetERP") :void
(world dWorldID)
(erp dReal))
(defcfun-rename-function ("dWorldQuickStep") :void
(w dWorldID)
(stepsize dReal))
(defcfun-rename-function ("dGeomGetBody") dBodyID
(geom dGeomID))
(defcfun-rename-function ("dCollide") :int
(o1 dGeomID)
(o2 dGeomID)
(flags :int)
(contact :pointer)
(skip :int))
(defcfun-rename-function ("dJointCreateContact") dContactJointID
(world dWorldID)
(joint-group dJointGroupID)
(contact (:pointer dContact)))
(defcfun-rename-function ("dJointGetType") :int
(id dJointID))
(defcfun-rename-function ("dWorldSetLinearDamping") :void
(world dWorldID)
(scale dReal))
(defcfun-rename-function ("dWorldSetAngularDamping") :void
(world dWorldID)
(scale dReal))
(defcfun-rename-function ("dWorldSetDamping") :void
(world dWorldID)
(linear-scale dReal)
(angular-scale dReal))
(defcfun-rename-function ("dWorldGetLinearDampingThreshold") dReal
(world dWorldID))
(defcfun-rename-function ("dWorldGetAngularDampingThreshold") dReal
(world dWorldID))
(defcfun-rename-function ("dWorldSetLinearDampingThreshold") :void
(world dWorldID)
(threshold dReal))
(defcfun-rename-function ("dWorldSetAngularDampingThreshold") :void
(world dWorldID)
(threshold dReal))
(defcfun-rename-function ("dWorldSetAutoDisableFlag") :void
(world dWorldID)
(auto-disable :int))
(defcfun-rename-function ("dWorldGetAutoDisableFlag") :boolean
(world dWorldID))