summaryrefslogtreecommitdiff
path: root/libphysics/narrow.c
diff options
context:
space:
mode:
authoresquizo <esquizo+noreply@esquizo.net>2026-05-31 14:48:08 -0300
committeresquizo <esquizo+noreply@esquizo.net>2026-05-31 14:48:08 -0300
commit86e64f00ad1452c0a2e528d37d169b8eb125e299 (patch)
treeca6f0c013fcc9a54c565b20af094423283f094cd /libphysics/narrow.c
parent64debcd9a5108d859c96bcf58a4c17f6de3efadc (diff)
libphysics: adicionado narrow.c
Diffstat (limited to 'libphysics/narrow.c')
-rw-r--r--libphysics/narrow.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/libphysics/narrow.c b/libphysics/narrow.c
new file mode 100644
index 0000000..14575be
--- /dev/null
+++ b/libphysics/narrow.c
@@ -0,0 +1,36 @@
+#include <vecmath.h>
+#include <physics.h>
+#include <stdlib.h>
+
+#include "dat.h"
+
+void
+__phxnarrowphase(int n, TestCollision tests[n])
+{
+ CollisionEvent event;
+
+ for(int i = 0; i < n; i++) {
+ TestCollision *c = tests + i;
+ Body *a = c->a + phxbodypool;
+ Body *b = c->b + phxbodypool;
+
+ if(a < b && phxaabbcheck(a, b)) {
+ float p[2], n[2], rvel[2], j;
+ phxaabbresolv(a, b, p, n);
+
+ vec2_sub(rvel, a->vel, b->vel);
+ j = vec2_dot(rvel, n);
+
+ vec2_sub_scaled(a->vel, a->vel, n, 0.5);
+ vec2_sub_scaled(b->vel, b->vel, n, -0.5);
+
+ vec2_sub_scaled(a->pos, a->pos, p, 0.5);
+ vec2_sub_scaled(b->pos, b->pos, p, -0.5);
+
+ event.body1 = c->a;
+ event.body2 = c->b;
+ phxenqevent(&event);
+ }
+ }
+}
+