medium sized dollop
[carveJwlIkooP6JGAAIwe30JlM.git] / rigidbody.h
1 /*
2 * Resources: Box2D - Erin Catto
3 * qu3e - Randy Gaul
4 */
5
6 #include "common.h"
7 #include "bvh.h"
8 #include "scene.h"
9
10 static void rb_tangent_basis( v3f n, v3f tx, v3f ty );
11 static bh_system bh_system_rigidbodies;
12
13 #ifndef RIGIDBODY_H
14 #define RIGIDBODY_H
15
16 /*
17 * -----------------------------------------------------------------------------
18 * (K)onstants
19 * -----------------------------------------------------------------------------
20 */
21
22 static const float
23 k_rb_rate = 60.0f,
24 k_rb_delta = (1.0f/k_rb_rate),
25 k_friction = 0.6f,
26 k_damp_linear = 0.05f, /* scale velocity 1/(1+x) */
27 k_damp_angular = 0.1f, /* scale angular 1/(1+x) */
28 k_limit_bias = 0.02f,
29 k_joint_bias = 0.08f, /* positional joints */
30 k_joint_correction = 0.01f,
31 k_penetration_slop = 0.01f,
32 k_inertia_scale = 4.0f;
33
34 /*
35 * -----------------------------------------------------------------------------
36 * structure definitions
37 * -----------------------------------------------------------------------------
38 */
39
40 typedef struct rigidbody rigidbody;
41 typedef struct contact rb_ct;
42
43 struct rigidbody
44 {
45 v3f co, v, w;
46 v4f q;
47
48 enum rb_shape
49 {
50 k_rb_shape_box = 0,
51 k_rb_shape_sphere = 1,
52 k_rb_shape_capsule = 2,
53 k_rb_shape_scene = 3
54 }
55 type;
56
57 union
58 {
59 struct rb_sphere
60 {
61 float radius;
62 }
63 sphere;
64
65 struct rb_capsule
66 {
67 float height, radius;
68 }
69 capsule;
70
71 struct rb_scene
72 {
73 scene *pscene;
74 }
75 scene;
76 }
77 inf;
78
79 v3f right, up, forward;
80
81 int is_world;
82
83 boxf bbx, bbx_world;
84 float inv_mass;
85
86 /* inertia model and inverse world tensor */
87 v3f I;
88 m3x3f iI, iIw;
89
90 m4x3f to_world, to_local;
91 };
92
93 static struct contact
94 {
95 rigidbody *rba, *rbb;
96 v3f co, n;
97 v3f t[2];
98 float p, bias, norm_impulse, tangent_impulse[2],
99 normal_mass, tangent_mass[2];
100
101 u32 element_id;
102 }
103 rb_contact_buffer[256];
104 static int rb_contact_count = 0;
105
106 /*
107 * -----------------------------------------------------------------------------
108 * Math Utils
109 * -----------------------------------------------------------------------------
110 */
111
112 static float sphere_volume( float radius )
113 {
114 float r3 = radius*radius*radius;
115 return (4.0f/3.0f) * VG_PIf * r3;
116 }
117
118 static void rb_tangent_basis( v3f n, v3f tx, v3f ty )
119 {
120 /* Compute tangent basis (box2d) */
121 if( fabsf( n[0] ) >= 0.57735027f )
122 {
123 tx[0] = n[1];
124 tx[1] = -n[0];
125 tx[2] = 0.0f;
126 }
127 else
128 {
129 tx[0] = 0.0f;
130 tx[1] = n[2];
131 tx[2] = -n[1];
132 }
133
134 v3_normalize( tx );
135 v3_cross( n, tx, ty );
136 }
137
138 /*
139 * -----------------------------------------------------------------------------
140 * Debugging
141 * -----------------------------------------------------------------------------
142 */
143
144 static void rb_debug_contact( rb_ct *ct )
145 {
146 v3f p1;
147 v3_muladds( ct->co, ct->n, 0.1f, p1 );
148 vg_line_pt3( ct->co, 0.025f, 0xff0000ff );
149 vg_line( ct->co, p1, 0xffffffff );
150 }
151
152 static void debug_sphere( m4x3f m, float radius, u32 colour )
153 {
154 v3f ly = { 0.0f, 0.0f, radius },
155 lx = { 0.0f, radius, 0.0f },
156 lz = { 0.0f, 0.0f, radius };
157
158 for( int i=0; i<16; i++ )
159 {
160 float t = ((float)(i+1) * (1.0f/16.0f)) * VG_PIf * 2.0f,
161 s = sinf(t),
162 c = cosf(t);
163
164 v3f py = { s*radius, 0.0f, c*radius },
165 px = { s*radius, c*radius, 0.0f },
166 pz = { 0.0f, s*radius, c*radius };
167
168 v3f p0, p1, p2, p3, p4, p5;
169 m4x3_mulv( m, py, p0 );
170 m4x3_mulv( m, ly, p1 );
171 m4x3_mulv( m, px, p2 );
172 m4x3_mulv( m, lx, p3 );
173 m4x3_mulv( m, pz, p4 );
174 m4x3_mulv( m, lz, p5 );
175
176 vg_line( p0, p1, colour == 0x00? 0xff00ff00: colour );
177 vg_line( p2, p3, colour == 0x00? 0xff0000ff: colour );
178 vg_line( p4, p5, colour == 0x00? 0xffff0000: colour );
179
180 v3_copy( py, ly );
181 v3_copy( px, lx );
182 v3_copy( pz, lz );
183 }
184 }
185
186 static void debug_capsule( m4x3f m, float radius, float h, u32 colour )
187 {
188 v3f ly = { 0.0f, 0.0f, radius },
189 lx = { 0.0f, radius, 0.0f },
190 lz = { 0.0f, 0.0f, radius };
191
192 float s0 = sinf(0.0f)*radius,
193 c0 = cosf(0.0f)*radius;
194
195 v3f p0, p1, up, right, forward;
196 m3x3_mulv( m, (v3f){0.0f,1.0f,0.0f}, up );
197 m3x3_mulv( m, (v3f){1.0f,0.0f,0.0f}, right );
198 m3x3_mulv( m, (v3f){0.0f,0.0f,-1.0f}, forward );
199 v3_muladds( m[3], up, -h*0.5f+radius, p0 );
200 v3_muladds( m[3], up, h*0.5f-radius, p1 );
201
202 v3f a0, a1, b0, b1;
203 v3_muladds( p0, right, radius, a0 );
204 v3_muladds( p1, right, radius, a1 );
205 v3_muladds( p0, forward, radius, b0 );
206 v3_muladds( p1, forward, radius, b1 );
207 vg_line( a0, a1, colour );
208 vg_line( b0, b1, colour );
209
210 v3_muladds( p0, right, -radius, a0 );
211 v3_muladds( p1, right, -radius, a1 );
212 v3_muladds( p0, forward, -radius, b0 );
213 v3_muladds( p1, forward, -radius, b1 );
214 vg_line( a0, a1, colour );
215 vg_line( b0, b1, colour );
216
217 for( int i=0; i<16; i++ )
218 {
219 float t = ((float)(i+1) * (1.0f/16.0f)) * VG_PIf * 2.0f,
220 s1 = sinf(t)*radius,
221 c1 = cosf(t)*radius;
222
223 v3f e0 = { s0, 0.0f, c0 },
224 e1 = { s1, 0.0f, c1 },
225 e2 = { s0, c0, 0.0f },
226 e3 = { s1, c1, 0.0f },
227 e4 = { 0.0f, c0, s0 },
228 e5 = { 0.0f, c1, s1 };
229
230 m3x3_mulv( m, e0, e0 );
231 m3x3_mulv( m, e1, e1 );
232 m3x3_mulv( m, e2, e2 );
233 m3x3_mulv( m, e3, e3 );
234 m3x3_mulv( m, e4, e4 );
235 m3x3_mulv( m, e5, e5 );
236
237 v3_add( p0, e0, a0 );
238 v3_add( p0, e1, a1 );
239 v3_add( p1, e0, b0 );
240 v3_add( p1, e1, b1 );
241
242 vg_line( a0, a1, colour );
243 vg_line( b0, b1, colour );
244
245 if( c0 < 0.0f )
246 {
247 v3_add( p0, e2, a0 );
248 v3_add( p0, e3, a1 );
249 v3_add( p0, e4, b0 );
250 v3_add( p0, e5, b1 );
251 }
252 else
253 {
254 v3_add( p1, e2, a0 );
255 v3_add( p1, e3, a1 );
256 v3_add( p1, e4, b0 );
257 v3_add( p1, e5, b1 );
258 }
259
260 vg_line( a0, a1, colour );
261 vg_line( b0, b1, colour );
262
263 s0 = s1;
264 c0 = c1;
265 }
266 }
267
268 static void rb_debug( rigidbody *rb, u32 colour )
269 {
270 if( rb->type == k_rb_shape_box )
271 {
272 v3f *box = rb->bbx;
273 vg_line_boxf_transformed( rb->to_world, rb->bbx, colour );
274 }
275 else if( rb->type == k_rb_shape_sphere )
276 {
277 debug_sphere( rb->to_world, rb->inf.sphere.radius, colour );
278 }
279 else if( rb->type == k_rb_shape_capsule )
280 {
281 m4x3f m0, m1;
282 float h = rb->inf.capsule.height,
283 r = rb->inf.capsule.radius;
284
285 debug_capsule( rb->to_world, r, h, colour );
286 }
287 else if( rb->type == k_rb_shape_scene )
288 {
289 vg_line_boxf( rb->bbx, colour );
290 }
291 }
292
293 /*
294 * -----------------------------------------------------------------------------
295 * Integration
296 * -----------------------------------------------------------------------------
297 */
298
299 /*
300 * Update world space bounding box based on local one
301 */
302 static void rb_update_bounds( rigidbody *rb )
303 {
304 box_copy( rb->bbx, rb->bbx_world );
305 m4x3_transform_aabb( rb->to_world, rb->bbx_world );
306 }
307
308 /*
309 * Commit transform to rigidbody. Updates matrices
310 */
311 static void rb_update_transform( rigidbody *rb )
312 {
313 q_normalize( rb->q );
314 q_m3x3( rb->q, rb->to_world );
315 v3_copy( rb->co, rb->to_world[3] );
316
317 m4x3_invert_affine( rb->to_world, rb->to_local );
318
319 m3x3_mulv( rb->to_world, (v3f){1.0f,0.0f, 0.0f}, rb->right );
320 m3x3_mulv( rb->to_world, (v3f){0.0f,1.0f, 0.0f}, rb->up );
321 m3x3_mulv( rb->to_world, (v3f){0.0f,0.0f,-1.0f}, rb->forward );
322
323 m3x3_mul( rb->iI, rb->to_local, rb->iIw );
324 m3x3_mul( rb->to_world, rb->iIw, rb->iIw );
325
326 rb_update_bounds( rb );
327 }
328
329 /*
330 * Initialize rigidbody and calculate masses, inertia
331 */
332 static void rb_init( rigidbody *rb )
333 {
334 float volume = 1.0f;
335
336 if( rb->type == k_rb_shape_box )
337 {
338 v3f dims;
339 v3_sub( rb->bbx[1], rb->bbx[0], dims );
340 volume = dims[0]*dims[1]*dims[2];
341 }
342 else if( rb->type == k_rb_shape_sphere )
343 {
344 volume = sphere_volume( rb->inf.sphere.radius );
345 v3_fill( rb->bbx[0], -rb->inf.sphere.radius );
346 v3_fill( rb->bbx[1], rb->inf.sphere.radius );
347 }
348 else if( rb->type == k_rb_shape_capsule )
349 {
350 float r = rb->inf.capsule.radius,
351 h = rb->inf.capsule.height;
352 volume = sphere_volume( r ) + VG_PIf * r*r * (h - r*2.0f);
353
354 v3_fill( rb->bbx[0], -rb->inf.sphere.radius );
355 v3_fill( rb->bbx[1], rb->inf.sphere.radius );
356 rb->bbx[0][1] = -h;
357 rb->bbx[1][1] = h;
358 }
359 else if( rb->type == k_rb_shape_scene )
360 {
361 rb->is_world = 1;
362 box_copy( rb->inf.scene.pscene->bbx, rb->bbx );
363 }
364
365 if( rb->is_world )
366 {
367 rb->inv_mass = 0.0f;
368 v3_zero( rb->I );
369 m3x3_zero(rb->iI);
370 }
371 else
372 {
373 float mass = 2.0f*volume;
374 rb->inv_mass = 1.0f/mass;
375
376 v3f extent;
377 v3_sub( rb->bbx[1], rb->bbx[0], extent );
378 v3_muls( extent, 0.5f, extent );
379
380 /* local intertia tensor */
381 float scale = k_inertia_scale;
382 float ex2 = scale*extent[0]*extent[0],
383 ey2 = scale*extent[1]*extent[1],
384 ez2 = scale*extent[2]*extent[2];
385
386 rb->I[0] = ((1.0f/12.0f) * mass * (ey2+ez2));
387 rb->I[1] = ((1.0f/12.0f) * mass * (ex2+ez2));
388 rb->I[2] = ((1.0f/12.0f) * mass * (ex2+ey2));
389
390 m3x3_identity( rb->iI );
391 rb->iI[0][0] = rb->I[0];
392 rb->iI[1][1] = rb->I[1];
393 rb->iI[2][2] = rb->I[2];
394 m3x3_inv( rb->iI, rb->iI );
395 }
396
397 v3_zero( rb->v );
398 v3_zero( rb->w );
399
400 rb_update_transform( rb );
401 }
402
403 static void rb_iter( rigidbody *rb )
404 {
405 v3f gravity = { 0.0f, -9.8f, 0.0f };
406 v3_muladds( rb->v, gravity, k_rb_delta, rb->v );
407
408 /* intergrate velocity */
409 v3_muladds( rb->co, rb->v, k_rb_delta, rb->co );
410 v3_lerp( rb->w, (v3f){0.0f,0.0f,0.0f}, 0.0025f, rb->w );
411
412 /* inegrate inertia */
413 if( v3_length2( rb->w ) > 0.0f )
414 {
415 v4f rotation;
416 v3f axis;
417 v3_copy( rb->w, axis );
418
419 float mag = v3_length( axis );
420 v3_divs( axis, mag, axis );
421 q_axis_angle( rotation, axis, mag*k_rb_delta );
422 q_mul( rotation, rb->q, rb->q );
423 }
424
425 /* damping */
426 v3_muls( rb->v, 1.0f/(1.0f+k_rb_delta*k_damp_linear), rb->v );
427 v3_muls( rb->w, 1.0f/(1.0f+k_rb_delta*k_damp_angular), rb->w );
428 }
429
430 /*
431 * -----------------------------------------------------------------------------
432 * Closest point functions
433 * -----------------------------------------------------------------------------
434 */
435
436 /*
437 * These closest point tests were learned from Real-Time Collision Detection by
438 * Christer Ericson
439 */
440 static float closest_segment_segment( v3f p1, v3f q1, v3f p2, v3f q2,
441 float *s, float *t, v3f c1, v3f c2)
442 {
443 v3f d1,d2,r;
444 v3_sub( q1, p1, d1 );
445 v3_sub( q2, p2, d2 );
446 v3_sub( p1, p2, r );
447
448 float a = v3_length2( d1 ),
449 e = v3_length2( d2 ),
450 f = v3_dot( d2, r );
451
452 const float kEpsilon = 0.0001f;
453
454 if( a <= kEpsilon && e <= kEpsilon )
455 {
456 *s = 0.0f;
457 *t = 0.0f;
458 v3_copy( p1, c1 );
459 v3_copy( p2, c2 );
460
461 v3f v0;
462 v3_sub( c1, c2, v0 );
463
464 return v3_length2( v0 );
465 }
466
467 if( a<= kEpsilon )
468 {
469 *s = 0.0f;
470 *t = vg_clampf( f / e, 0.0f, 1.0f );
471 }
472 else
473 {
474 float c = v3_dot( d1, r );
475 if( e <= kEpsilon )
476 {
477 *t = 0.0f;
478 *s = vg_clampf( -c / a, 0.0f, 1.0f );
479 }
480 else
481 {
482 float b = v3_dot(d1,d2),
483 d = a*e-b*b;
484
485 if( d != 0.0f )
486 {
487 *s = vg_clampf((b*f - c*e)/d, 0.0f, 1.0f);
488 }
489 else
490 {
491 *s = 0.0f;
492 }
493
494 *t = (b*(*s)+f) / e;
495
496 if( *t < 0.0f )
497 {
498 *t = 0.0f;
499 *s = vg_clampf( -c / a, 0.0f, 1.0f );
500 }
501 else if( *t > 1.0f )
502 {
503 *t = 1.0f;
504 *s = vg_clampf((b-c)/a,0.0f,1.0f);
505 }
506 }
507 }
508
509 v3_muladds( p1, d1, *s, c1 );
510 v3_muladds( p2, d2, *t, c2 );
511
512 v3f v0;
513 v3_sub( c1, c2, v0 );
514 return v3_length2( v0 );
515 }
516
517 static void closest_point_aabb( v3f p, boxf box, v3f dest )
518 {
519 v3_maxv( p, box[0], dest );
520 v3_minv( dest, box[1], dest );
521 }
522
523 static void closest_point_obb( v3f p, rigidbody *rb, v3f dest )
524 {
525 v3f local;
526 m4x3_mulv( rb->to_local, p, local );
527 closest_point_aabb( local, rb->bbx, local );
528 m4x3_mulv( rb->to_world, local, dest );
529 }
530
531 static float closest_point_segment( v3f a, v3f b, v3f point, v3f dest )
532 {
533 v3f v0, v1;
534 v3_sub( b, a, v0 );
535 v3_sub( point, a, v1 );
536
537 float t = v3_dot( v1, v0 ) / v3_length2(v0);
538 t = vg_clampf(t,0.0f,1.0f);
539 v3_muladds( a, v0, t, dest );
540 return t;
541 }
542
543 static void closest_on_triangle( v3f p, v3f tri[3], v3f dest )
544 {
545 v3f ab, ac, ap;
546 float d1, d2;
547
548 /* Region outside A */
549 v3_sub( tri[1], tri[0], ab );
550 v3_sub( tri[2], tri[0], ac );
551 v3_sub( p, tri[0], ap );
552
553 d1 = v3_dot(ab,ap);
554 d2 = v3_dot(ac,ap);
555 if( d1 <= 0.0f && d2 <= 0.0f )
556 {
557 v3_copy( tri[0], dest );
558 v3_copy( (v3f){INFINITY,INFINITY,INFINITY}, dest );
559 return;
560 }
561
562 /* Region outside B */
563 v3f bp;
564 float d3, d4;
565
566 v3_sub( p, tri[1], bp );
567 d3 = v3_dot( ab, bp );
568 d4 = v3_dot( ac, bp );
569
570 if( d3 >= 0.0f && d4 <= d3 )
571 {
572 v3_copy( tri[1], dest );
573 v3_copy( (v3f){INFINITY,INFINITY,INFINITY}, dest );
574 return;
575 }
576
577 /* Edge region of AB */
578 float vc = d1*d4 - d3*d2;
579 if( vc <= 0.0f && d1 >= 0.0f && d3 <= 0.0f )
580 {
581 float v = d1 / (d1-d3);
582 v3_muladds( tri[0], ab, v, dest );
583 v3_copy( (v3f){INFINITY,INFINITY,INFINITY}, dest );
584 return;
585 }
586
587 /* Region outside C */
588 v3f cp;
589 float d5, d6;
590 v3_sub( p, tri[2], cp );
591 d5 = v3_dot(ab, cp);
592 d6 = v3_dot(ac, cp);
593
594 if( d6 >= 0.0f && d5 <= d6 )
595 {
596 v3_copy( tri[2], dest );
597 v3_copy( (v3f){INFINITY,INFINITY,INFINITY}, dest );
598 return;
599 }
600
601 /* Region of AC */
602 float vb = d5*d2 - d1*d6;
603 if( vb <= 0.0f && d2 >= 0.0f && d6 <= 0.0f )
604 {
605 float w = d2 / (d2-d6);
606 v3_muladds( tri[0], ac, w, dest );
607 v3_copy( (v3f){INFINITY,INFINITY,INFINITY}, dest );
608 return;
609 }
610
611 /* Region of BC */
612 float va = d3*d6 - d5*d4;
613 if( va <= 0.0f && (d4-d3) >= 0.0f && (d5-d6) >= 0.0f )
614 {
615 float w = (d4-d3) / ((d4-d3) + (d5-d6));
616 v3f bc;
617 v3_sub( tri[2], tri[1], bc );
618 v3_muladds( tri[1], bc, w, dest );
619 v3_copy( (v3f){INFINITY,INFINITY,INFINITY}, dest );
620 return;
621 }
622
623 /* P inside region, Q via barycentric coordinates uvw */
624 float d = 1.0f/(va+vb+vc),
625 v = vb*d,
626 w = vc*d;
627
628 v3_muladds( tri[0], ab, v, dest );
629 v3_muladds( dest, ac, w, dest );
630 }
631
632 /* TODO */
633 static void closest_on_triangle_1( v3f p, v3f tri[3], v3f dest )
634 {
635 v3f ab, ac, ap;
636 float d1, d2;
637
638 /* Region outside A */
639 v3_sub( tri[1], tri[0], ab );
640 v3_sub( tri[2], tri[0], ac );
641 v3_sub( p, tri[0], ap );
642
643 d1 = v3_dot(ab,ap);
644 d2 = v3_dot(ac,ap);
645 if( d1 <= 0.0f && d2 <= 0.0f )
646 {
647 v3_copy( tri[0], dest );
648 return;
649 }
650
651 /* Region outside B */
652 v3f bp;
653 float d3, d4;
654
655 v3_sub( p, tri[1], bp );
656 d3 = v3_dot( ab, bp );
657 d4 = v3_dot( ac, bp );
658
659 if( d3 >= 0.0f && d4 <= d3 )
660 {
661 v3_copy( tri[1], dest );
662 return;
663 }
664
665 /* Edge region of AB */
666 float vc = d1*d4 - d3*d2;
667 if( vc <= 0.0f && d1 >= 0.0f && d3 <= 0.0f )
668 {
669 float v = d1 / (d1-d3);
670 v3_muladds( tri[0], ab, v, dest );
671 return;
672 }
673
674 /* Region outside C */
675 v3f cp;
676 float d5, d6;
677 v3_sub( p, tri[2], cp );
678 d5 = v3_dot(ab, cp);
679 d6 = v3_dot(ac, cp);
680
681 if( d6 >= 0.0f && d5 <= d6 )
682 {
683 v3_copy( tri[2], dest );
684 return;
685 }
686
687 /* Region of AC */
688 float vb = d5*d2 - d1*d6;
689 if( vb <= 0.0f && d2 >= 0.0f && d6 <= 0.0f )
690 {
691 float w = d2 / (d2-d6);
692 v3_muladds( tri[0], ac, w, dest );
693 return;
694 }
695
696 /* Region of BC */
697 float va = d3*d6 - d5*d4;
698 if( va <= 0.0f && (d4-d3) >= 0.0f && (d5-d6) >= 0.0f )
699 {
700 float w = (d4-d3) / ((d4-d3) + (d5-d6));
701 v3f bc;
702 v3_sub( tri[2], tri[1], bc );
703 v3_muladds( tri[1], bc, w, dest );
704 return;
705 }
706
707 /* P inside region, Q via barycentric coordinates uvw */
708 float d = 1.0f/(va+vb+vc),
709 v = vb*d,
710 w = vc*d;
711
712 v3_muladds( tri[0], ab, v, dest );
713 v3_muladds( dest, ac, w, dest );
714 }
715
716 /*
717 * -----------------------------------------------------------------------------
718 * Boolean shape overlap functions
719 * -----------------------------------------------------------------------------
720 */
721
722 /*
723 * Project AABB, and triangle interval onto axis to check if they overlap
724 */
725 static int rb_box_triangle_interval( v3f extent, v3f axis, v3f tri[3] )
726 {
727 float
728
729 r = extent[0] * fabsf(axis[0]) +
730 extent[1] * fabsf(axis[1]) +
731 extent[2] * fabsf(axis[2]),
732
733 p0 = v3_dot( axis, tri[0] ),
734 p1 = v3_dot( axis, tri[1] ),
735 p2 = v3_dot( axis, tri[2] ),
736
737 e = vg_maxf(-vg_maxf(p0,vg_maxf(p1,p2)), vg_minf(p0,vg_minf(p1,p2)));
738
739 if( e > r ) return 0;
740 else return 1;
741 }
742
743 /*
744 * Seperating axis test box vs triangle
745 */
746 static int rb_box_triangle_sat( rigidbody *rba, v3f tri_src[3] )
747 {
748 v3f tri[3];
749
750 v3f extent, c;
751 v3_sub( rba->bbx[1], rba->bbx[0], extent );
752 v3_muls( extent, 0.5f, extent );
753 v3_add( rba->bbx[0], extent, c );
754
755 for( int i=0; i<3; i++ )
756 {
757 m4x3_mulv( rba->to_local, tri_src[i], tri[i] );
758 v3_sub( tri[i], c, tri[i] );
759 }
760
761 /* u0, u1, u2 */
762 if(!rb_box_triangle_interval( extent, (v3f){1.0f,0.0f,0.0f}, tri )) return 0;
763 if(!rb_box_triangle_interval( extent, (v3f){0.0f,1.0f,0.0f}, tri )) return 0;
764 if(!rb_box_triangle_interval( extent, (v3f){0.0f,0.0f,1.0f}, tri )) return 0;
765
766 v3f v0,v1,v2,n, e0,e1,e2;
767 v3_sub( tri[1], tri[0], v0 );
768 v3_sub( tri[2], tri[0], v1 );
769 v3_sub( tri[2], tri[1], v2 );
770 v3_normalize( v0 );
771 v3_normalize( v1 );
772 v3_normalize( v2 );
773 v3_cross( v0, v1, n );
774 v3_cross( v0, n, e0 );
775 v3_cross( n, v1, e1 );
776 v3_cross( v2, n, e2 );
777
778 /* normal */
779 if(!rb_box_triangle_interval( extent, n, tri )) return 0;
780
781 v3f axis[9];
782 v3_cross( e0, (v3f){1.0f,0.0f,0.0f}, axis[0] );
783 v3_cross( e0, (v3f){0.0f,1.0f,0.0f}, axis[1] );
784 v3_cross( e0, (v3f){0.0f,0.0f,1.0f}, axis[2] );
785 v3_cross( e1, (v3f){1.0f,0.0f,0.0f}, axis[3] );
786 v3_cross( e1, (v3f){0.0f,1.0f,0.0f}, axis[4] );
787 v3_cross( e1, (v3f){0.0f,0.0f,1.0f}, axis[5] );
788 v3_cross( e2, (v3f){1.0f,0.0f,0.0f}, axis[6] );
789 v3_cross( e2, (v3f){0.0f,1.0f,0.0f}, axis[7] );
790 v3_cross( e2, (v3f){0.0f,0.0f,1.0f}, axis[8] );
791
792 for( int i=0; i<9; i++ )
793 if(!rb_box_triangle_interval( extent, axis[i], tri )) return 0;
794
795 return 1;
796 }
797
798 /*
799 * -----------------------------------------------------------------------------
800 * Collision matrix
801 * -----------------------------------------------------------------------------
802 */
803
804 /*
805 * Contact generators
806 *
807 * These do not automatically allocate contacts, an appropriately sized
808 * buffer must be supplied. The function returns the size of the manifold
809 * which was generated.
810 *
811 * The values set on the contacts are: n, co, p, rba, rbb
812 */
813
814 /*
815 * By collecting the minimum(time) and maximum(time) pairs of points, we
816 * build a reduced and stable exact manifold.
817 *
818 * tx: time at point
819 * rx: minimum distance of these points
820 * dx: the delta between the two points
821 *
822 * pairs will only ammend these if they are creating a collision
823 */
824 typedef struct capsule_manifold capsule_manifold;
825 struct capsule_manifold
826 {
827 float t0, t1;
828 float r0, r1;
829 v3f d0, d1;
830 };
831
832 /*
833 * Expand a line manifold with a new pair. t value is the time along segment
834 * on the oriented object which created this pair.
835 */
836 static void rb_capsule_manifold( v3f pa, v3f pb, float t, float r,
837 capsule_manifold *manifold )
838 {
839 v3f delta;
840 v3_sub( pa, pb, delta );
841
842 if( v3_length2(delta) < r*r )
843 {
844 if( t < manifold->t0 )
845 {
846 v3_copy( delta, manifold->d0 );
847 manifold->t0 = t;
848 manifold->r0 = r;
849 }
850
851 if( t > manifold->t1 )
852 {
853 v3_copy( delta, manifold->d1 );
854 manifold->t1 = t;
855 manifold->r1 = r;
856 }
857 }
858 }
859
860 static void rb_capsule_manifold_init( capsule_manifold *manifold )
861 {
862 manifold->t0 = INFINITY;
863 manifold->t1 = -INFINITY;
864 }
865
866 static int rb_capsule_manifold_done( rigidbody *rba, rigidbody *rbb,
867 capsule_manifold *manifold, rb_ct *buf )
868 {
869 float h = rba->inf.capsule.height,
870 ra = rba->inf.capsule.radius;
871
872 v3f p0, p1;
873 v3_muladds( rba->co, rba->up, -h*0.5f+ra, p0 );
874 v3_muladds( rba->co, rba->up, h*0.5f-ra, p1 );
875
876 int count = 0;
877 if( manifold->t0 <= 1.0f )
878 {
879 rb_ct *ct = buf;
880
881 v3f pa;
882 v3_muls( p0, 1.0f-manifold->t0, pa );
883 v3_muladds( pa, p1, manifold->t0, pa );
884
885 float d = v3_length( manifold->d0 );
886 v3_muls( manifold->d0, 1.0f/d, ct->n );
887 v3_muladds( pa, ct->n, -ra, ct->co );
888
889 ct->p = manifold->r0 - d;
890 ct->rba = rba;
891 ct->rbb = rbb;
892
893 count ++;
894 }
895
896 if( (manifold->t1 >= 0.0f) && (manifold->t0 != manifold->t1) )
897 {
898 rb_ct *ct = buf+count;
899
900 v3f pa;
901 v3_muls( p0, 1.0f-manifold->t1, pa );
902 v3_muladds( pa, p1, manifold->t1, pa );
903
904 float d = v3_length( manifold->d1 );
905 v3_muls( manifold->d1, 1.0f/d, ct->n );
906 v3_muladds( pa, ct->n, -ra, ct->co );
907
908 ct->p = manifold->r1 - d;
909 ct->rba = rba;
910 ct->rbb = rbb;
911
912 count ++;
913 }
914
915 /*
916 * Debugging
917 */
918
919 if( count == 2 )
920 vg_line( buf[0].co, buf[1].co, 0xff0000ff );
921
922 return count;
923 }
924
925 static int rb_capsule_sphere( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
926 {
927 float h = rba->inf.capsule.height,
928 ra = rba->inf.capsule.radius,
929 rb = rbb->inf.sphere.radius;
930
931 v3f p0, p1;
932 v3_muladds( rba->co, rba->up, -h*0.5f+ra, p0 );
933 v3_muladds( rba->co, rba->up, h*0.5f-ra, p1 );
934
935 v3f c, delta;
936 closest_point_segment( p0, p1, rbb->co, c );
937 v3_sub( c, rbb->co, delta );
938
939 float d2 = v3_length2(delta),
940 r = ra + rb;
941
942 if( d2 < r*r )
943 {
944 float d = sqrtf(d2);
945
946 rb_ct *ct = buf;
947 v3_muls( delta, 1.0f/d, ct->n );
948 ct->p = r-d;
949
950 v3f p0, p1;
951 v3_muladds( c, ct->n, -ra, p0 );
952 v3_muladds( rbb->co, ct->n, rb, p1 );
953 v3_add( p0, p1, ct->co );
954 v3_muls( ct->co, 0.5f, ct->co );
955
956 ct->rba = rba;
957 ct->rbb = rbb;
958
959 return 1;
960 }
961
962 return 0;
963 }
964
965 static int rb_capsule_capsule( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
966 {
967 float ha = rba->inf.capsule.height,
968 hb = rbb->inf.capsule.height,
969 ra = rba->inf.capsule.radius,
970 rb = rbb->inf.capsule.radius,
971 r = ra+rb;
972
973 v3f p0, p1, p2, p3;
974 v3_muladds( rba->co, rba->up, -ha*0.5f+ra, p0 );
975 v3_muladds( rba->co, rba->up, ha*0.5f-ra, p1 );
976 v3_muladds( rbb->co, rbb->up, -hb*0.5f+rb, p2 );
977 v3_muladds( rbb->co, rbb->up, hb*0.5f-rb, p3 );
978
979 capsule_manifold manifold;
980 rb_capsule_manifold_init( &manifold );
981
982 v3f pa, pb;
983 float ta, tb;
984 closest_segment_segment( p0, p1, p2, p3, &ta, &tb, pa, pb );
985 rb_capsule_manifold( pa, pb, ta, r, &manifold );
986
987 ta = closest_point_segment( p0, p1, p2, pa );
988 tb = closest_point_segment( p0, p1, p3, pb );
989 rb_capsule_manifold( pa, p2, ta, r, &manifold );
990 rb_capsule_manifold( pb, p3, tb, r, &manifold );
991
992 closest_point_segment( p2, p3, p0, pa );
993 closest_point_segment( p2, p3, p1, pb );
994 rb_capsule_manifold( p0, pa, 0.0f, r, &manifold );
995 rb_capsule_manifold( p1, pb, 1.0f, r, &manifold );
996
997 return rb_capsule_manifold_done( rba, rbb, &manifold, buf );
998 }
999
1000 /*
1001 * Generates up to two contacts; optimised for the most stable manifold
1002 */
1003 static int rb_capsule_box( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1004 {
1005 float h = rba->inf.capsule.height,
1006 r = rba->inf.capsule.radius;
1007
1008 /*
1009 * Solving this in symetric local space of the cube saves us some time and a
1010 * couple branches when it comes to the quad stage.
1011 */
1012 v3f centroid;
1013 v3_add( rbb->bbx[0], rbb->bbx[1], centroid );
1014 v3_muls( centroid, 0.5f, centroid );
1015
1016 boxf bbx;
1017 v3_sub( rbb->bbx[0], centroid, bbx[0] );
1018 v3_sub( rbb->bbx[1], centroid, bbx[1] );
1019
1020 v3f pc, p0w, p1w, p0, p1;
1021 v3_muladds( rba->co, rba->up, -h*0.5f+r, p0w );
1022 v3_muladds( rba->co, rba->up, h*0.5f-r, p1w );
1023
1024 m4x3_mulv( rbb->to_local, p0w, p0 );
1025 m4x3_mulv( rbb->to_local, p1w, p1 );
1026 v3_sub( p0, centroid, p0 );
1027 v3_sub( p1, centroid, p1 );
1028 v3_add( p0, p1, pc );
1029 v3_muls( pc, 0.5f, pc );
1030
1031 /*
1032 * Finding an appropriate quad to collide lines with
1033 */
1034 v3f region;
1035 v3_div( pc, bbx[1], region );
1036
1037 v3f quad[4];
1038 if( (fabsf(region[0]) > fabsf(region[1])) &&
1039 (fabsf(region[0]) > fabsf(region[2])) )
1040 {
1041 float px = vg_signf(region[0]) * bbx[1][0];
1042 v3_copy( (v3f){ px, bbx[0][1], bbx[0][2] }, quad[0] );
1043 v3_copy( (v3f){ px, bbx[1][1], bbx[0][2] }, quad[1] );
1044 v3_copy( (v3f){ px, bbx[1][1], bbx[1][2] }, quad[2] );
1045 v3_copy( (v3f){ px, bbx[0][1], bbx[1][2] }, quad[3] );
1046 }
1047 else if( fabsf(region[1]) > fabsf(region[2]) )
1048 {
1049 float py = vg_signf(region[1]) * bbx[1][1];
1050 v3_copy( (v3f){ bbx[0][0], py, bbx[0][2] }, quad[0] );
1051 v3_copy( (v3f){ bbx[1][0], py, bbx[0][2] }, quad[1] );
1052 v3_copy( (v3f){ bbx[1][0], py, bbx[1][2] }, quad[2] );
1053 v3_copy( (v3f){ bbx[0][0], py, bbx[1][2] }, quad[3] );
1054 }
1055 else
1056 {
1057 float pz = vg_signf(region[2]) * bbx[1][2];
1058 v3_copy( (v3f){ bbx[0][0], bbx[0][1], pz }, quad[0] );
1059 v3_copy( (v3f){ bbx[1][0], bbx[0][1], pz }, quad[1] );
1060 v3_copy( (v3f){ bbx[1][0], bbx[1][1], pz }, quad[2] );
1061 v3_copy( (v3f){ bbx[0][0], bbx[1][1], pz }, quad[3] );
1062 }
1063
1064 capsule_manifold manifold;
1065 rb_capsule_manifold_init( &manifold );
1066
1067 v3f c0, c1;
1068 closest_point_aabb( p0, bbx, c0 );
1069 closest_point_aabb( p1, bbx, c1 );
1070
1071 v3f d0, d1, da;
1072 v3_sub( c0, p0, d0 );
1073 v3_sub( c1, p1, d1 );
1074 v3_sub( p1, p0, da );
1075
1076 /* TODO: ? */
1077 v3_normalize(d0);
1078 v3_normalize(d1);
1079 v3_normalize(da);
1080
1081 if( v3_dot( da, d0 ) <= 0.01f )
1082 rb_capsule_manifold( p0, c0, 0.0f, r, &manifold );
1083
1084 if( v3_dot( da, d1 ) >= -0.01f )
1085 rb_capsule_manifold( p1, c1, 1.0f, r, &manifold );
1086
1087 for( int i=0; i<4; i++ )
1088 {
1089 int i0 = i,
1090 i1 = (i+1)%4;
1091
1092 v3f ca, cb;
1093 float ta, tb;
1094 closest_segment_segment( p0, p1, quad[i0], quad[i1], &ta, &tb, ca, cb );
1095 rb_capsule_manifold( ca, cb, ta, r, &manifold );
1096 }
1097
1098 /*
1099 * Create final contacts based on line manifold
1100 */
1101 m3x3_mulv( rbb->to_world, manifold.d0, manifold.d0 );
1102 m3x3_mulv( rbb->to_world, manifold.d1, manifold.d1 );
1103
1104 /*
1105 * Debugging
1106 */
1107
1108 #if 0
1109 for( int i=0; i<4; i++ )
1110 {
1111 v3f q0, q1;
1112 int i0 = i,
1113 i1 = (i+1)%4;
1114
1115 v3_add( quad[i0], centroid, q0 );
1116 v3_add( quad[i1], centroid, q1 );
1117
1118 m4x3_mulv( rbb->to_world, q0, q0 );
1119 m4x3_mulv( rbb->to_world, q1, q1 );
1120
1121 vg_line( q0, q1, 0xffffffff );
1122 }
1123 #endif
1124
1125 return rb_capsule_manifold_done( rba, rbb, &manifold, buf );
1126 }
1127
1128 static int rb_sphere_box( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1129 {
1130 v3f co, delta;
1131
1132 closest_point_obb( rba->co, rbb, co );
1133 v3_sub( rba->co, co, delta );
1134
1135 float d2 = v3_length2(delta),
1136 r = rba->inf.sphere.radius;
1137
1138 if( d2 <= r*r )
1139 {
1140 float d;
1141
1142 rb_ct *ct = buf;
1143 if( d2 <= 0.0001f )
1144 {
1145 v3_sub( rba->co, rbb->co, delta );
1146
1147 /*
1148 * some extra testing is required to find the best axis to push the
1149 * object back outside the box. Since there isnt a clear seperating
1150 * vector already, especially on really high aspect boxes.
1151 */
1152 float lx = v3_dot( rbb->right, delta ),
1153 ly = v3_dot( rbb->up, delta ),
1154 lz = v3_dot( rbb->forward, delta ),
1155 px = rbb->bbx[1][0] - fabsf(lx),
1156 py = rbb->bbx[1][1] - fabsf(ly),
1157 pz = rbb->bbx[1][2] - fabsf(lz);
1158
1159 if( px < py && px < pz )
1160 v3_muls( rbb->right, vg_signf(lx), ct->n );
1161 else if( py < pz )
1162 v3_muls( rbb->up, vg_signf(ly), ct->n );
1163 else
1164 v3_muls( rbb->forward, vg_signf(lz), ct->n );
1165
1166 v3_muladds( rba->co, ct->n, -r, ct->co );
1167 ct->p = r;
1168 }
1169 else
1170 {
1171 d = sqrtf(d2);
1172 v3_muls( delta, 1.0f/d, ct->n );
1173 ct->p = r-d;
1174 v3_copy( co, ct->co );
1175 }
1176
1177 ct->rba = rba;
1178 ct->rbb = rbb;
1179 return 1;
1180 }
1181
1182 return 0;
1183 }
1184
1185 static int rb_sphere_sphere( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1186 {
1187 v3f delta;
1188 v3_sub( rba->co, rbb->co, delta );
1189
1190 float d2 = v3_length2(delta),
1191 r = rba->inf.sphere.radius + rbb->inf.sphere.radius;
1192
1193 if( d2 < r*r )
1194 {
1195 float d = sqrtf(d2);
1196
1197 rb_ct *ct = buf;
1198 v3_muls( delta, 1.0f/d, ct->n );
1199
1200 v3f p0, p1;
1201 v3_muladds( rba->co, ct->n,-rba->inf.sphere.radius, p0 );
1202 v3_muladds( rbb->co, ct->n, rbb->inf.sphere.radius, p1 );
1203 v3_add( p0, p1, ct->co );
1204 v3_muls( ct->co, 0.5f, ct->co );
1205 ct->p = r-d;
1206 ct->rba = rba;
1207 ct->rbb = rbb;
1208 return 1;
1209 }
1210
1211 return 0;
1212 }
1213
1214 static int rb_sphere_triangle( rigidbody *rba, rigidbody *rbb,
1215 v3f tri[3], rb_ct *buf )
1216 {
1217 v3f delta, co;
1218
1219 closest_on_triangle( rba->co, tri, co );
1220 v3_sub( rba->co, co, delta );
1221
1222 vg_line( rba->co, co, 0xffff0000 );
1223 vg_line_pt3( rba->co, 0.1f, 0xff00ffff );
1224
1225 float d2 = v3_length2( delta ),
1226 r = rba->inf.sphere.radius;
1227
1228 if( d2 < r*r )
1229 {
1230 rb_ct *ct = buf;
1231
1232 v3f ab, ac, tn;
1233 v3_sub( tri[2], tri[0], ab );
1234 v3_sub( tri[1], tri[0], ac );
1235 v3_cross( ac, ab, tn );
1236 v3_copy( tn, ct->n );
1237 v3_normalize( ct->n );
1238
1239 float d = sqrtf(d2);
1240
1241 v3_copy( co, ct->co );
1242 ct->p = r-d;
1243 ct->rba = rba;
1244 ct->rbb = rbb;
1245 return 1;
1246 }
1247
1248 return 0;
1249 }
1250
1251 static int rb_sphere_scene( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1252 {
1253 scene *sc = rbb->inf.scene.pscene;
1254
1255 u32 geo[128];
1256 v3f tri[3];
1257 int len = bh_select( &sc->bhtris, rba->bbx_world, geo, 128 );
1258
1259 int count = 0;
1260
1261 for( int i=0; i<len; i++ )
1262 {
1263 u32 *ptri = &sc->indices[ geo[i]*3 ];
1264
1265 for( int j=0; j<3; j++ )
1266 v3_copy( sc->verts[ptri[j]].co, tri[j] );
1267
1268 vg_line(tri[0],tri[1],0xff00ff00 );
1269 vg_line(tri[1],tri[2],0xff00ff00 );
1270 vg_line(tri[2],tri[0],0xff00ff00 );
1271
1272 buf[count].element_id = ptri[0];
1273 count += rb_sphere_triangle( rba, rbb, tri, buf+count );
1274
1275 if( count == 12 )
1276 {
1277 vg_warn( "Exceeding sphere_vs_scene capacity. Geometry too dense!\n" );
1278 return count;
1279 }
1280 }
1281
1282 return count;
1283 }
1284
1285 static int rb_box_scene( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1286 {
1287 scene *sc = rbb->inf.scene.pscene;
1288
1289 u32 geo[128];
1290 v3f tri[3];
1291 int len = bh_select( &sc->bhtris, rba->bbx_world, geo, 128 );
1292
1293 int count = 0;
1294
1295 for( int i=0; i<len; i++ )
1296 {
1297 u32 *ptri = &sc->indices[ geo[i]*3 ];
1298
1299 for( int j=0; j<3; j++ )
1300 v3_copy( sc->verts[ptri[j]].co, tri[j] );
1301
1302 if( rb_box_triangle_sat( rba, tri ) )
1303 {
1304 vg_line(tri[0],tri[1],0xff50ff00 );
1305 vg_line(tri[1],tri[2],0xff50ff00 );
1306 vg_line(tri[2],tri[0],0xff50ff00 );
1307 }
1308 else
1309 {
1310 vg_line(tri[0],tri[1],0xff0000ff );
1311 vg_line(tri[1],tri[2],0xff0000ff );
1312 vg_line(tri[2],tri[0],0xff0000ff );
1313
1314 continue;
1315 }
1316
1317 v3f v0,v1,n;
1318 v3_sub( tri[1], tri[0], v0 );
1319 v3_sub( tri[2], tri[0], v1 );
1320 v3_cross( v0, v1, n );
1321 v3_normalize( n );
1322
1323 /* find best feature */
1324 float best = v3_dot( rba->right, n );
1325 int axis = 0;
1326
1327 float cy = v3_dot( rba->up, n );
1328 if( fabsf(cy) > fabsf(best) )
1329 {
1330 best = cy;
1331 axis = 1;
1332 }
1333
1334 /* TODO: THIS IS WRONG DIRECTION */
1335 float cz = -v3_dot( rba->forward, n );
1336 if( fabsf(cz) > fabsf(best) )
1337 {
1338 best = cz;
1339 axis = 2;
1340 }
1341
1342 v3f manifold[4];
1343
1344 if( axis == 0 )
1345 {
1346 float px = best > 0.0f? rba->bbx[0][0]: rba->bbx[1][0];
1347 manifold[0][0] = px;
1348 manifold[0][1] = rba->bbx[0][1];
1349 manifold[0][2] = rba->bbx[0][2];
1350 manifold[1][0] = px;
1351 manifold[1][1] = rba->bbx[1][1];
1352 manifold[1][2] = rba->bbx[0][2];
1353 manifold[2][0] = px;
1354 manifold[2][1] = rba->bbx[1][1];
1355 manifold[2][2] = rba->bbx[1][2];
1356 manifold[3][0] = px;
1357 manifold[3][1] = rba->bbx[0][1];
1358 manifold[3][2] = rba->bbx[1][2];
1359 }
1360 else if( axis == 1 )
1361 {
1362 float py = best > 0.0f? rba->bbx[0][1]: rba->bbx[1][1];
1363 manifold[0][0] = rba->bbx[0][0];
1364 manifold[0][1] = py;
1365 manifold[0][2] = rba->bbx[0][2];
1366 manifold[1][0] = rba->bbx[1][0];
1367 manifold[1][1] = py;
1368 manifold[1][2] = rba->bbx[0][2];
1369 manifold[2][0] = rba->bbx[1][0];
1370 manifold[2][1] = py;
1371 manifold[2][2] = rba->bbx[1][2];
1372 manifold[3][0] = rba->bbx[0][0];
1373 manifold[3][1] = py;
1374 manifold[3][2] = rba->bbx[1][2];
1375 }
1376 else
1377 {
1378 float pz = best > 0.0f? rba->bbx[0][2]: rba->bbx[1][2];
1379 manifold[0][0] = rba->bbx[0][0];
1380 manifold[0][1] = rba->bbx[0][1];
1381 manifold[0][2] = pz;
1382 manifold[1][0] = rba->bbx[1][0];
1383 manifold[1][1] = rba->bbx[0][1];
1384 manifold[1][2] = pz;
1385 manifold[2][0] = rba->bbx[1][0];
1386 manifold[2][1] = rba->bbx[1][1];
1387 manifold[2][2] = pz;
1388 manifold[3][0] = rba->bbx[0][0];
1389 manifold[3][1] = rba->bbx[1][1];
1390 manifold[3][2] = pz;
1391 }
1392
1393 for( int j=0; j<4; j++ )
1394 m4x3_mulv( rba->to_world, manifold[j], manifold[j] );
1395
1396 vg_line( manifold[0], manifold[1], 0xffffffff );
1397 vg_line( manifold[1], manifold[2], 0xffffffff );
1398 vg_line( manifold[2], manifold[3], 0xffffffff );
1399 vg_line( manifold[3], manifold[0], 0xffffffff );
1400
1401 for( int j=0; j<4; j++ )
1402 {
1403 rb_ct *ct = buf+count;
1404
1405 v3_copy( manifold[j], ct->co );
1406 v3_copy( n, ct->n );
1407
1408 float l0 = v3_dot( tri[0], n ),
1409 l1 = v3_dot( manifold[j], n );
1410
1411 ct->p = (l0-l1)*0.5f;
1412 if( ct->p < 0.0f )
1413 continue;
1414
1415 ct->rba = rba;
1416 ct->rbb = rbb;
1417 count ++;
1418
1419 if( count >= 12 )
1420 return count;
1421 }
1422 }
1423 return count;
1424 }
1425
1426 static int RB_MATRIX_ERROR( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1427 {
1428 vg_error( "Collision type is unimplemented between types %d and %d\n",
1429 rba->type, rbb->type );
1430
1431 return 0;
1432 }
1433
1434 static int rb_sphere_capsule( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1435 {
1436 return rb_capsule_sphere( rbb, rba, buf );
1437 }
1438
1439 static int rb_box_capsule( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1440 {
1441 return rb_capsule_box( rbb, rba, buf );
1442 }
1443
1444 static int rb_box_sphere( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1445 {
1446 return rb_sphere_box( rbb, rba, buf );
1447 }
1448
1449 static int rb_scene_box( rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1450 {
1451 return rb_box_scene( rbb, rba, buf );
1452 }
1453
1454 static int (*rb_jump_table[4][4])( rigidbody *a, rigidbody *b, rb_ct *buf ) =
1455 {
1456 /* box */ /* Sphere */ /* Capsule */ /* Mesh */
1457 { RB_MATRIX_ERROR, rb_box_sphere, rb_box_capsule, rb_box_scene },
1458 { rb_sphere_box, rb_sphere_sphere, rb_sphere_capsule, rb_sphere_scene },
1459 { rb_capsule_box, rb_capsule_sphere, rb_capsule_capsule, RB_MATRIX_ERROR },
1460 { rb_scene_box, RB_MATRIX_ERROR, RB_MATRIX_ERROR, RB_MATRIX_ERROR }
1461 };
1462
1463 static int rb_collide( rigidbody *rba, rigidbody *rbb )
1464 {
1465 int (*collider_jump)(rigidbody *rba, rigidbody *rbb, rb_ct *buf )
1466 = rb_jump_table[rba->type][rbb->type];
1467
1468 /*
1469 * 12 is the maximum manifold size we can generate, so we are forced to abort
1470 * potentially checking any more.
1471 */
1472 if( rb_contact_count + 12 > vg_list_size(rb_contact_buffer) )
1473 {
1474 vg_warn( "Too many contacts made in global collider buffer (%d of %d\n)",
1475 rb_contact_count, vg_list_size(rb_contact_buffer) );
1476 return 0;
1477 }
1478
1479 /*
1480 * TODO: Replace this with a more dedicated broad phase pass
1481 */
1482 if( box_overlap( rba->bbx_world, rbb->bbx_world ) )
1483 {
1484 int count = collider_jump( rba, rbb, rb_contact_buffer+rb_contact_count);
1485 rb_contact_count += count;
1486 return count;
1487 }
1488 else
1489 return 0;
1490 }
1491
1492 /*
1493 * -----------------------------------------------------------------------------
1494 * Dynamics
1495 * -----------------------------------------------------------------------------
1496 */
1497
1498 static void rb_solver_reset(void)
1499 {
1500 rb_contact_count = 0;
1501 }
1502
1503 static rb_ct *rb_global_ct(void)
1504 {
1505 return rb_contact_buffer + rb_contact_count;
1506 }
1507
1508 /*
1509 * Initializing things like tangent vectors
1510 */
1511 static void rb_presolve_contacts( rb_ct *buffer, int len )
1512 {
1513 for( int i=0; i<len; i++ )
1514 {
1515 rb_ct *ct = &buffer[i];
1516 ct->bias = -0.2f * k_rb_rate * vg_minf( 0.0f, -ct->p+k_penetration_slop );
1517 rb_tangent_basis( ct->n, ct->t[0], ct->t[1] );
1518
1519 ct->norm_impulse = 0.0f;
1520 ct->tangent_impulse[0] = 0.0f;
1521 ct->tangent_impulse[1] = 0.0f;
1522
1523 v3f ra, rb, raCn, rbCn, raCt, rbCt;
1524 v3_sub( ct->co, ct->rba->co, ra );
1525 v3_sub( ct->co, ct->rbb->co, rb );
1526 v3_cross( ra, ct->n, raCn );
1527 v3_cross( rb, ct->n, rbCn );
1528
1529 /* orient inverse inertia tensors */
1530 v3f raCnI, rbCnI;
1531 m3x3_mulv( ct->rba->iIw, raCn, raCnI );
1532 m3x3_mulv( ct->rbb->iIw, rbCn, rbCnI );
1533
1534 ct->normal_mass = ct->rba->inv_mass + ct->rbb->inv_mass;
1535 ct->normal_mass += v3_dot( raCn, raCnI );
1536 ct->normal_mass += v3_dot( rbCn, rbCnI );
1537 ct->normal_mass = 1.0f/ct->normal_mass;
1538
1539 for( int j=0; j<2; j++ )
1540 {
1541 v3f raCtI, rbCtI;
1542 v3_cross( ct->t[j], ra, raCt );
1543 v3_cross( ct->t[j], rb, rbCt );
1544 m3x3_mulv( ct->rba->iIw, raCt, raCtI );
1545 m3x3_mulv( ct->rbb->iIw, rbCt, rbCtI );
1546
1547 ct->tangent_mass[j] = ct->rba->inv_mass + ct->rbb->inv_mass;
1548 ct->tangent_mass[j] += v3_dot( raCt, raCtI );
1549 ct->tangent_mass[j] += v3_dot( rbCt, rbCtI );
1550 ct->tangent_mass[j] = 1.0f/ct->tangent_mass[j];
1551 }
1552
1553 rb_debug_contact( ct );
1554 }
1555 }
1556
1557 /*
1558 * Creates relative contact velocity vector, and offsets between each body
1559 */
1560 static void rb_rcv( rb_ct *ct, v3f rv, v3f da, v3f db )
1561 {
1562 rigidbody *rba = ct->rba,
1563 *rbb = ct->rbb;
1564
1565 v3_sub( ct->co, rba->co, da );
1566 v3_sub( ct->co, rbb->co, db );
1567
1568 v3f rva, rvb;
1569 v3_cross( rba->w, da, rva );
1570 v3_add( rba->v, rva, rva );
1571 v3_cross( rbb->w, db, rvb );
1572 v3_add( rbb->v, rvb, rvb );
1573
1574 v3_sub( rva, rvb, rv );
1575 }
1576
1577 /*
1578 * Apply impulse to object
1579 */
1580 static void rb_linear_impulse( rigidbody *rb, v3f delta, v3f impulse )
1581 {
1582 /* linear */
1583 v3_muladds( rb->v, impulse, rb->inv_mass, rb->v );
1584
1585 /* Angular velocity */
1586 v3f wa;
1587 v3_cross( delta, impulse, wa );
1588
1589 m3x3_mulv( rb->iIw, wa, wa );
1590 v3_add( rb->w, wa, rb->w );
1591 }
1592
1593 /*
1594 * One iteration to solve the contact constraint
1595 */
1596 static void rb_solve_contacts( rb_ct *buf, int len )
1597 {
1598 for( int i=0; i<len; i++ )
1599 {
1600 struct contact *ct = &buf[i];
1601 rigidbody *rb = ct->rba;
1602
1603 v3f rv, da, db;
1604 rb_rcv( ct, rv, da, db );
1605
1606 /* Friction */
1607 for( int j=0; j<2; j++ )
1608 {
1609 float f = k_friction * ct->norm_impulse,
1610 vt = v3_dot( rv, ct->t[j] ),
1611 lambda = ct->tangent_mass[j] * -vt;
1612
1613 float temp = ct->tangent_impulse[j];
1614 ct->tangent_impulse[j] = vg_clampf( temp + lambda, -f, f );
1615 lambda = ct->tangent_impulse[j] - temp;
1616
1617 v3f impulse;
1618 v3_muls( ct->t[j], lambda, impulse );
1619 rb_linear_impulse( ct->rba, da, impulse );
1620
1621 v3_muls( ct->t[j], -lambda, impulse );
1622 rb_linear_impulse( ct->rbb, db, impulse );
1623 }
1624
1625 /* Normal */
1626 rb_rcv( ct, rv, da, db );
1627 float vn = v3_dot( rv, ct->n ),
1628 lambda = ct->normal_mass * (-vn + ct->bias);
1629
1630 float temp = ct->norm_impulse;
1631 ct->norm_impulse = vg_maxf( temp + lambda, 0.0f );
1632 lambda = ct->norm_impulse - temp;
1633
1634 v3f impulse;
1635 v3_muls( ct->n, lambda, impulse );
1636 rb_linear_impulse( ct->rba, da, impulse );
1637
1638 v3_muls( ct->n, -lambda, impulse );
1639 rb_linear_impulse( ct->rbb, db, impulse );
1640 }
1641 }
1642
1643 /*
1644 * -----------------------------------------------------------------------------
1645 * Constraints
1646 * -----------------------------------------------------------------------------
1647 */
1648
1649 static void draw_angle_limit( v3f c, v3f major, v3f minor,
1650 float amin, float amax, float measured,
1651 u32 colour )
1652 {
1653 float f = 0.05f;
1654 v3f ay, ax;
1655 v3_muls( major, f, ay );
1656 v3_muls( minor, f, ax );
1657
1658 for( int x=0; x<16; x++ )
1659 {
1660 float t0 = (float)x / 16.0f,
1661 t1 = (float)(x+1) / 16.0f,
1662 a0 = vg_lerpf( amin, amax, t0 ),
1663 a1 = vg_lerpf( amin, amax, t1 );
1664
1665 v3f p0, p1;
1666 v3_muladds( c, ay, cosf(a0), p0 );
1667 v3_muladds( p0, ax, sinf(a0), p0 );
1668 v3_muladds( c, ay, cosf(a1), p1 );
1669 v3_muladds( p1, ax, sinf(a1), p1 );
1670
1671 vg_line( p0, p1, colour );
1672
1673 if( x == 0 )
1674 vg_line( c, p0, colour );
1675 if( x == 15 )
1676 vg_line( c, p1, colour );
1677 }
1678
1679 v3f p2;
1680 v3_muladds( c, ay, cosf(measured)*1.2f, p2 );
1681 v3_muladds( p2, ax, sinf(measured)*1.2f, p2 );
1682 vg_line( c, p2, colour );
1683 }
1684
1685 static void rb_debug_constraint_limits( rigidbody *ra, rigidbody *rb, v3f lca,
1686 v3f limits[2] )
1687 {
1688 v3f ax, ay, az, bx, by, bz;
1689 m3x3_mulv( ra->to_world, (v3f){1.0f,0.0f,0.0f}, ax );
1690 m3x3_mulv( ra->to_world, (v3f){0.0f,1.0f,0.0f}, ay );
1691 m3x3_mulv( ra->to_world, (v3f){0.0f,0.0f,1.0f}, az );
1692 m3x3_mulv( rb->to_world, (v3f){1.0f,0.0f,0.0f}, bx );
1693 m3x3_mulv( rb->to_world, (v3f){0.0f,1.0f,0.0f}, by );
1694 m3x3_mulv( rb->to_world, (v3f){0.0f,0.0f,1.0f}, bz );
1695
1696 v2f px, py, pz;
1697 px[0] = v3_dot( ay, by );
1698 px[1] = v3_dot( az, by );
1699
1700 py[0] = v3_dot( az, bz );
1701 py[1] = v3_dot( ax, bz );
1702
1703 pz[0] = v3_dot( ax, bx );
1704 pz[1] = v3_dot( ay, bx );
1705
1706 float r0 = atan2f( px[1], px[0] ),
1707 r1 = atan2f( py[1], py[0] ),
1708 r2 = atan2f( pz[1], pz[0] );
1709
1710 v3f c;
1711 m4x3_mulv( ra->to_world, lca, c );
1712 draw_angle_limit( c, ay, az, limits[0][0], limits[1][0], r0, 0xff0000ff );
1713 draw_angle_limit( c, az, ax, limits[0][1], limits[1][1], r1, 0xff00ff00 );
1714 draw_angle_limit( c, ax, ay, limits[0][2], limits[1][2], r2, 0xffff0000 );
1715 }
1716
1717 static void rb_limit_cure( rigidbody *ra, rigidbody *rb, v3f axis, float d )
1718 {
1719 if( d != 0.0f )
1720 {
1721 float avx = v3_dot( ra->w, axis ) - v3_dot( rb->w, axis );
1722 float joint_mass = rb->inv_mass + ra->inv_mass;
1723 joint_mass = 1.0f/joint_mass;
1724
1725 float bias = (k_limit_bias * k_rb_rate) * d,
1726 lambda = -(avx + bias) * joint_mass;
1727
1728 /* Angular velocity */
1729 v3f wa, wb;
1730 v3_muls( axis, lambda * ra->inv_mass, wa );
1731 v3_muls( axis, -lambda * rb->inv_mass, wb );
1732
1733 v3_add( ra->w, wa, ra->w );
1734 v3_add( rb->w, wb, rb->w );
1735 }
1736 }
1737
1738 static void rb_constraint_limits( rigidbody *ra, v3f lca,
1739 rigidbody *rb, v3f lcb, v3f limits[2] )
1740 {
1741 /* TODO: Code dupe remover */
1742 v3f ax, ay, az, bx, by, bz;
1743 m3x3_mulv( ra->to_world, (v3f){1.0f,0.0f,0.0f}, ax );
1744 m3x3_mulv( ra->to_world, (v3f){0.0f,1.0f,0.0f}, ay );
1745 m3x3_mulv( ra->to_world, (v3f){0.0f,0.0f,1.0f}, az );
1746 m3x3_mulv( rb->to_world, (v3f){1.0f,0.0f,0.0f}, bx );
1747 m3x3_mulv( rb->to_world, (v3f){0.0f,1.0f,0.0f}, by );
1748 m3x3_mulv( rb->to_world, (v3f){0.0f,0.0f,1.0f}, bz );
1749
1750 v2f px, py, pz;
1751 px[0] = v3_dot( ay, by );
1752 px[1] = v3_dot( az, by );
1753
1754 py[0] = v3_dot( az, bz );
1755 py[1] = v3_dot( ax, bz );
1756
1757 pz[0] = v3_dot( ax, bx );
1758 pz[1] = v3_dot( ay, bx );
1759
1760 float r0 = atan2f( px[1], px[0] ),
1761 r1 = atan2f( py[1], py[0] ),
1762 r2 = atan2f( pz[1], pz[0] );
1763
1764 /* calculate angle deltas */
1765 float dx = 0.0f, dy = 0.0f, dz = 0.0f;
1766
1767 if( r0 < limits[0][0] ) dx = limits[0][0] - r0;
1768 if( r0 > limits[1][0] ) dx = limits[1][0] - r0;
1769 if( r1 < limits[0][1] ) dy = limits[0][1] - r1;
1770 if( r1 > limits[1][1] ) dy = limits[1][1] - r1;
1771 if( r2 < limits[0][2] ) dz = limits[0][2] - r2;
1772 if( r2 > limits[1][2] ) dz = limits[1][2] - r2;
1773
1774 v3f wca, wcb;
1775 m3x3_mulv( ra->to_world, lca, wca );
1776 m3x3_mulv( rb->to_world, lcb, wcb );
1777
1778 rb_limit_cure( ra, rb, ax, dx );
1779 rb_limit_cure( ra, rb, ay, dy );
1780 rb_limit_cure( ra, rb, az, dz );
1781 }
1782
1783 static void rb_debug_constraint_position( rigidbody *ra, v3f lca,
1784 rigidbody *rb, v3f lcb )
1785 {
1786 v3f wca, wcb;
1787 m3x3_mulv( ra->to_world, lca, wca );
1788 m3x3_mulv( rb->to_world, lcb, wcb );
1789
1790 v3f p0, p1;
1791 v3_add( wca, ra->co, p0 );
1792 v3_add( wcb, rb->co, p1 );
1793 vg_line_pt3( p0, 0.005f, 0xffffff00 );
1794 vg_line_pt3( p1, 0.005f, 0xffffff00 );
1795 vg_line( p0, p1, 0xffffff00 );
1796 }
1797
1798 static void rb_constraint_position( rigidbody *ra, v3f lca,
1799 rigidbody *rb, v3f lcb )
1800 {
1801 /* C = (COa + Ra*LCa) - (COb + Rb*LCb) = 0 */
1802 v3f wca, wcb;
1803 m3x3_mulv( ra->to_world, lca, wca );
1804 m3x3_mulv( rb->to_world, lcb, wcb );
1805
1806 v3f rcv;
1807 v3_sub( ra->v, rb->v, rcv );
1808
1809 v3f rcv_Ra, rcv_Rb;
1810 v3_cross( ra->w, wca, rcv_Ra );
1811 v3_cross( rb->w, wcb, rcv_Rb );
1812 v3_add( rcv_Ra, rcv, rcv );
1813 v3_sub( rcv, rcv_Rb, rcv );
1814
1815 v3f delta;
1816 v3f p0, p1;
1817 v3_add( wca, ra->co, p0 );
1818 v3_add( wcb, rb->co, p1 );
1819 v3_sub( p1, p0, delta );
1820
1821 float dist2 = v3_length2( delta );
1822
1823 if( dist2 > 0.00001f )
1824 {
1825 float dist = sqrtf(dist2);
1826 v3_muls( delta, 1.0f/dist, delta );
1827
1828 float joint_mass = rb->inv_mass + ra->inv_mass;
1829
1830 v3f raCn, rbCn, raCt, rbCt;
1831 v3_cross( wca, delta, raCn );
1832 v3_cross( wcb, delta, rbCn );
1833
1834 /* orient inverse inertia tensors */
1835 v3f raCnI, rbCnI;
1836 m3x3_mulv( ra->iIw, raCn, raCnI );
1837 m3x3_mulv( rb->iIw, rbCn, rbCnI );
1838 joint_mass += v3_dot( raCn, raCnI );
1839 joint_mass += v3_dot( rbCn, rbCnI );
1840 joint_mass = 1.0f/joint_mass;
1841
1842 float vd = v3_dot( rcv, delta ),
1843 bias = -(k_joint_bias * k_rb_rate) * dist,
1844 lambda = -(vd + bias) * joint_mass;
1845
1846 v3f impulse;
1847 v3_muls( delta, lambda, impulse );
1848 rb_linear_impulse( ra, wca, impulse );
1849 v3_muls( delta, -lambda, impulse );
1850 rb_linear_impulse( rb, wcb, impulse );
1851
1852 /* 'fake' snap */
1853 v3_muladds( ra->co, delta, dist * k_joint_correction, ra->co );
1854 v3_muladds( rb->co, delta, -dist * k_joint_correction, rb->co );
1855 }
1856 }
1857
1858 /*
1859 * Effectors
1860 */
1861
1862 static void rb_effect_simple_bouyency( rigidbody *ra, v4f plane,
1863 float amt, float drag )
1864 {
1865 /* float */
1866 float depth = v3_dot( plane, ra->co ) - plane[3],
1867 lambda = vg_clampf( -depth, 0.0f, 1.0f ) * amt;
1868
1869 v3_muladds( ra->v, plane, lambda * ktimestep, ra->v );
1870
1871 if( depth < 0.0f )
1872 v3_muls( ra->v, 1.0f-(drag*ktimestep), ra->v );
1873 }
1874
1875 /*
1876 * -----------------------------------------------------------------------------
1877 * BVH implementation, this is ONLY for static rigidbodies, its to slow for
1878 * realtime use.
1879 * -----------------------------------------------------------------------------
1880 */
1881
1882 static void rb_bh_expand_bound( void *user, boxf bound, u32 item_index )
1883 {
1884 rigidbody *rb = &((rigidbody *)user)[ item_index ];
1885 box_concat( bound, rb->bbx_world );
1886 }
1887
1888 static float rb_bh_centroid( void *user, u32 item_index, int axis )
1889 {
1890 rigidbody *rb = &((rigidbody *)user)[ item_index ];
1891 return (rb->bbx_world[axis][0] + rb->bbx_world[1][axis]) * 0.5f;
1892 }
1893
1894 static void rb_bh_swap( void *user, u32 ia, u32 ib )
1895 {
1896 rigidbody temp, *rba, *rbb;
1897 rba = &((rigidbody *)user)[ ia ];
1898 rbb = &((rigidbody *)user)[ ib ];
1899
1900 temp = *rba;
1901 *rba = *rbb;
1902 *rbb = temp;
1903 }
1904
1905 static void rb_bh_debug( void *user, u32 item_index )
1906 {
1907 rigidbody *rb = &((rigidbody *)user)[ item_index ];
1908 rb_debug( rb, 0xff00ffff );
1909 }
1910
1911 static bh_system bh_system_rigidbodies =
1912 {
1913 .expand_bound = rb_bh_expand_bound,
1914 .item_centroid = rb_bh_centroid,
1915 .item_swap = rb_bh_swap,
1916 .item_debug = rb_bh_debug,
1917 .cast_ray = NULL
1918 };
1919
1920 #endif /* RIGIDBODY_H */