2021-11-30 21:29:18 -06:00
|
|
|
#include "2dphysics.h"
|
|
|
|
|
|
|
|
#include "gameobject.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "mathc.h"
|
2022-08-12 14:03:56 -05:00
|
|
|
#include "nuke.h"
|
2023-01-27 12:06:16 -06:00
|
|
|
#include "debug.h"
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2022-08-17 00:01:51 -05:00
|
|
|
#include "debugdraw.h"
|
|
|
|
#include "gameobject.h"
|
|
|
|
#include <math.h>
|
|
|
|
#include <chipmunk/chipmunk_unsafe.h>
|
2022-12-20 08:16:26 -06:00
|
|
|
#include "stb_ds.h"
|
2023-01-25 21:32:58 -06:00
|
|
|
#include <assert.h>
|
2022-12-20 08:16:26 -06:00
|
|
|
|
2023-01-27 12:06:16 -06:00
|
|
|
#include "tinyspline.h"
|
|
|
|
|
2022-12-26 20:57:45 -06:00
|
|
|
#include "script.h"
|
2023-02-02 17:52:15 -06:00
|
|
|
#include "ffi.h"
|
2022-12-26 20:57:45 -06:00
|
|
|
|
2022-12-20 08:16:26 -06:00
|
|
|
#include "log.h"
|
2022-08-17 00:01:51 -05:00
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
cpSpace *space = NULL;
|
|
|
|
float phys2d_gravity = -50.f;
|
|
|
|
|
2023-01-18 10:45:43 -06:00
|
|
|
float dbg_color[3] = {0.836f, 1.f, 0.45f};
|
|
|
|
float trigger_color[3] = {0.278f, 0.953f, 1.f};
|
|
|
|
float disabled_color[3] = {0.58f, 0.58f, 0.58f};
|
|
|
|
float dynamic_color[3] = {255/255, 70/255, 46/255};
|
|
|
|
float kinematic_color[3] = {255/255, 206/255,71/255};
|
|
|
|
float static_color[3] = {0.22f, 0.271f, 1.f};
|
|
|
|
|
|
|
|
void color2float(struct color color, float *fcolor)
|
|
|
|
{
|
|
|
|
fcolor[0] = (float)color.r/255;
|
|
|
|
fcolor[1] = (float)color.b/255;
|
|
|
|
fcolor[2] = (float)color.g/255;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct color float2color(float *fcolor)
|
|
|
|
{
|
|
|
|
struct color new;
|
|
|
|
new.r = fcolor[0]*255;
|
|
|
|
new.b = fcolor[1]*255;
|
|
|
|
new.g = fcolor[2]*255;
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2023-02-02 17:52:15 -06:00
|
|
|
cpShape *phys2d_query_pos(cpVect pos)
|
|
|
|
{
|
|
|
|
cpShapeFilter filter;
|
|
|
|
filter.group = 0;
|
|
|
|
filter.mask = CP_ALL_CATEGORIES;
|
|
|
|
filter.categories = CP_ALL_CATEGORIES;
|
|
|
|
cpShape *find = cpSpacePointQueryNearest(space, pos, 0.f, filter, NULL);
|
|
|
|
|
|
|
|
return find;
|
|
|
|
}
|
|
|
|
|
2023-01-18 10:45:43 -06:00
|
|
|
int cpshape_enabled(cpShape *c)
|
2023-01-18 08:45:42 -06:00
|
|
|
{
|
2023-01-18 10:45:43 -06:00
|
|
|
cpShapeFilter filter = cpShapeGetFilter(c);
|
2023-01-18 08:45:42 -06:00
|
|
|
if (filter.categories == ~CP_ALL_CATEGORIES && filter.mask == ~CP_ALL_CATEGORIES)
|
2023-01-18 14:43:07 -06:00
|
|
|
return 0;
|
2023-01-18 08:45:42 -06:00
|
|
|
|
2023-01-18 14:43:07 -06:00
|
|
|
return 1;
|
2023-01-18 10:45:43 -06:00
|
|
|
}
|
2023-01-18 08:45:42 -06:00
|
|
|
|
2023-01-18 10:45:43 -06:00
|
|
|
float *shape_outline_color(cpShape *shape)
|
|
|
|
{
|
2023-01-18 08:45:42 -06:00
|
|
|
switch (cpBodyGetType(cpShapeGetBody(shape))) {
|
|
|
|
case CP_BODY_TYPE_DYNAMIC:
|
2023-01-18 10:45:43 -06:00
|
|
|
return dynamic_color;
|
2023-01-18 08:45:42 -06:00
|
|
|
|
|
|
|
case CP_BODY_TYPE_KINEMATIC:
|
2023-01-18 10:45:43 -06:00
|
|
|
return kinematic_color;
|
2023-01-18 08:45:42 -06:00
|
|
|
|
|
|
|
case CP_BODY_TYPE_STATIC:
|
2023-01-18 10:45:43 -06:00
|
|
|
return static_color;
|
2023-01-18 08:45:42 -06:00
|
|
|
}
|
|
|
|
|
2023-01-18 10:45:43 -06:00
|
|
|
return static_color;
|
2023-01-18 08:45:42 -06:00
|
|
|
}
|
|
|
|
|
2023-01-18 10:45:43 -06:00
|
|
|
float *shape_color(cpShape *shape)
|
2023-01-16 02:16:39 -06:00
|
|
|
{
|
2023-01-18 14:43:07 -06:00
|
|
|
if (!cpshape_enabled(shape)) return disabled_color;
|
2023-01-16 02:16:39 -06:00
|
|
|
|
2023-01-18 10:45:43 -06:00
|
|
|
if (cpShapeGetSensor(shape)) return trigger_color;
|
|
|
|
|
|
|
|
return dbg_color;
|
2023-01-16 02:16:39 -06:00
|
|
|
}
|
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
void phys2d_init()
|
|
|
|
{
|
|
|
|
space = cpSpaceNew();
|
2023-01-10 17:23:11 -06:00
|
|
|
cpVect grav = {0, phys2d_gravity};
|
|
|
|
phys2d_set_gravity(grav);
|
2021-11-30 21:29:18 -06:00
|
|
|
cpSpaceSetGravity(space, cpv(0, phys2d_gravity));
|
|
|
|
}
|
|
|
|
|
2023-01-10 17:23:11 -06:00
|
|
|
void phys2d_set_gravity(cpVect v) {
|
|
|
|
cpSpaceSetGravity(space, v);
|
2022-12-22 03:50:40 -06:00
|
|
|
}
|
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
void phys2d_update(float deltaT)
|
|
|
|
{
|
2022-02-04 11:36:24 -06:00
|
|
|
cpSpaceStep(space, deltaT);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-01-13 08:05:36 -06:00
|
|
|
void init_phys2dshape(struct phys2d_shape *shape, int go, void *data)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
|
|
|
shape->go = go;
|
2023-01-13 08:05:36 -06:00
|
|
|
shape->data = data;
|
2023-02-02 17:52:15 -06:00
|
|
|
go_shape_apply(id2go(go)->body, shape->shape, id2go(go));
|
2023-01-13 08:05:36 -06:00
|
|
|
cpShapeSetCollisionType(shape->shape, go);
|
|
|
|
cpShapeSetUserData(shape->shape, shape);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2022-08-28 22:34:33 -05:00
|
|
|
void phys2d_shape_del(struct phys2d_shape *shape)
|
|
|
|
{
|
|
|
|
cpSpaceRemoveShape(space, shape->shape);
|
|
|
|
}
|
|
|
|
|
2023-01-16 02:16:39 -06:00
|
|
|
/***************** CIRCLE2D *****************/
|
2023-01-12 17:41:54 -06:00
|
|
|
struct phys2d_circle *Make2DCircle(int go)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
|
|
|
struct phys2d_circle *new = malloc(sizeof(struct phys2d_circle));
|
|
|
|
|
|
|
|
new->radius = 10.f;
|
2023-01-19 18:30:23 -06:00
|
|
|
new->offset = cpvzero;
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-12 17:41:54 -06:00
|
|
|
new->shape.shape = cpSpaceAddShape(space, cpCircleShapeNew(id2go(go)->body, new->radius, cpvzero));
|
2023-01-13 08:05:36 -06:00
|
|
|
new->shape.debugdraw = phys2d_dbgdrawcircle;
|
|
|
|
init_phys2dshape(&new->shape, go, new);
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-12 17:41:54 -06:00
|
|
|
return new;
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2022-08-28 22:34:33 -05:00
|
|
|
void phys2d_circledel(struct phys2d_circle *c)
|
|
|
|
{
|
|
|
|
phys2d_shape_del(&c->shape);
|
|
|
|
}
|
|
|
|
|
2022-08-12 14:03:56 -05:00
|
|
|
void circle_gui(struct phys2d_circle *circle)
|
|
|
|
{
|
2022-12-23 13:48:29 -06:00
|
|
|
nuke_property_float("Radius", 1.f, &circle->radius, 10000.f, 1.f, 1.f);
|
2023-01-19 18:30:23 -06:00
|
|
|
//nuke_property_float2("Offset", 0.f, circle->offset, 1.f, 0.01f, 0.01f);
|
2022-08-12 14:03:56 -05:00
|
|
|
|
|
|
|
phys2d_applycircle(circle);
|
|
|
|
}
|
|
|
|
|
2023-01-03 09:06:36 -06:00
|
|
|
void phys2d_dbgdrawcpcirc(cpCircleShape *c)
|
|
|
|
{
|
|
|
|
cpVect pos = cpBodyGetPosition(cpShapeGetBody(c));
|
|
|
|
cpVect offset = cpCircleShapeGetOffset(c);
|
|
|
|
float radius = cpCircleShapeGetRadius(c);
|
|
|
|
float d = sqrt(pow(offset.x, 2.f) + pow(offset.y, 2.f));
|
|
|
|
float a = atan2(offset.y, offset.x) + cpBodyGetAngle(cpShapeGetBody(c));
|
2023-01-16 02:16:39 -06:00
|
|
|
|
|
|
|
|
2023-01-18 08:45:42 -06:00
|
|
|
draw_circle(pos.x + (d * cos(a)), pos.y + (d*sin(a)), radius, 2, shape_color(c), 1);
|
2023-01-03 09:06:36 -06:00
|
|
|
}
|
|
|
|
|
2022-08-17 00:01:51 -05:00
|
|
|
void phys2d_dbgdrawcircle(struct phys2d_circle *circle)
|
|
|
|
{
|
2023-01-03 09:06:36 -06:00
|
|
|
phys2d_dbgdrawcpcirc((cpCircleShape *)circle->shape.shape);
|
2022-08-17 00:01:51 -05:00
|
|
|
}
|
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
void phys2d_applycircle(struct phys2d_circle *circle)
|
2022-08-28 22:34:33 -05:00
|
|
|
{
|
2023-01-25 21:32:58 -06:00
|
|
|
struct gameobject *go = id2go(circle->shape.go);
|
2022-08-28 22:34:33 -05:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
float radius = circle->radius * go->scale;
|
|
|
|
float s = go->scale;
|
|
|
|
cpVect offset = { circle->offset.x * s, circle->offset.y * s };
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
cpCircleShapeSetRadius(circle->shape.shape, radius);
|
|
|
|
cpCircleShapeSetOffset(circle->shape.shape, offset);
|
|
|
|
//cpBodySetMoment(go->body, cpMomentForCircle(go->mass, 0, radius, offset));
|
2022-08-12 14:03:56 -05:00
|
|
|
}
|
|
|
|
|
2023-01-12 17:41:54 -06:00
|
|
|
/************* BOX2D ************/
|
|
|
|
|
|
|
|
struct phys2d_box *Make2DBox(int go)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
|
|
|
struct phys2d_box *new = malloc(sizeof(struct phys2d_box));
|
|
|
|
|
|
|
|
new->w = 50.f;
|
|
|
|
new->h = 50.f;
|
|
|
|
new->r = 0.f;
|
|
|
|
new->offset[0] = 0.f;
|
|
|
|
new->offset[1] = 0.f;
|
|
|
|
|
2023-01-12 17:41:54 -06:00
|
|
|
new->shape.shape = cpSpaceAddShape(space, cpBoxShapeNew(id2go(go)->body, new->w, new->h, new->r));
|
2023-01-13 08:05:36 -06:00
|
|
|
new->shape.debugdraw = phys2d_dbgdrawbox;
|
|
|
|
init_phys2dshape(&new->shape, go, new);
|
2023-01-12 17:41:54 -06:00
|
|
|
phys2d_applybox(new);
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-12 17:41:54 -06:00
|
|
|
return new;
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2022-08-28 22:34:33 -05:00
|
|
|
void phys2d_boxdel(struct phys2d_box *box)
|
|
|
|
{
|
|
|
|
phys2d_shape_del(&box->shape);
|
|
|
|
}
|
|
|
|
|
2022-08-12 14:03:56 -05:00
|
|
|
void box_gui(struct phys2d_box *box)
|
|
|
|
{
|
2022-12-23 13:48:29 -06:00
|
|
|
nuke_property_float("Width", 0.f, &box->w, 1000.f, 1.f, 1.f);
|
|
|
|
nuke_property_float("Height", 0.f, &box->h, 1000.f, 1.f, 1.f);
|
|
|
|
nuke_property_float2("Offset", 0.f, box->offset, 1.f, 0.01f, 0.01f);
|
2022-08-12 14:03:56 -05:00
|
|
|
|
|
|
|
phys2d_applybox(box);
|
|
|
|
}
|
|
|
|
|
2023-01-19 10:44:29 -06:00
|
|
|
void phys2d_applybox(struct phys2d_box *box)
|
|
|
|
{
|
|
|
|
float s = id2go(box->shape.go)->scale;
|
|
|
|
cpTransform T = { 0 };
|
2023-01-25 21:32:58 -06:00
|
|
|
T.a = s * cos(box->rotation);
|
|
|
|
T.b = -sin(box->rotation);
|
|
|
|
T.c = sin(box->rotation);
|
|
|
|
T.d = s * cos(box->rotation);
|
2023-01-19 10:44:29 -06:00
|
|
|
T.tx = box->offset[0] * s;
|
|
|
|
T.ty = box->offset[1] * s;
|
|
|
|
float hh = box->h / 2.f;
|
|
|
|
float hw = box->w / 2.f;
|
2023-01-25 21:32:58 -06:00
|
|
|
cpVect verts[4] = { { -hw, -hh }, { hw, -hh }, { hw, hh }, { -hw, hh } };
|
2023-01-19 10:44:29 -06:00
|
|
|
cpPolyShapeSetVerts(box->shape.shape, 4, verts, T);
|
|
|
|
cpPolyShapeSetRadius(box->shape.shape, box->r);
|
|
|
|
}
|
2023-01-25 21:32:58 -06:00
|
|
|
void phys2d_dbgdrawbox(struct phys2d_box *box)
|
|
|
|
{
|
|
|
|
int n = cpPolyShapeGetCount(box->shape.shape);
|
|
|
|
cpVect b = cpBodyGetPosition(cpShapeGetBody(box->shape.shape));
|
|
|
|
float angle = cpBodyGetAngle(cpShapeGetBody(box->shape.shape));
|
|
|
|
float points[n * 2];
|
2023-01-19 10:44:29 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
for (int i = 0; i < n; i++) {
|
|
|
|
cpVect p = cpPolyShapeGetVert(box->shape.shape, i);
|
|
|
|
float d = sqrt(pow(p.x, 2.f) + pow(p.y, 2.f));
|
|
|
|
float a = atan2(p.y, p.x) + angle;
|
|
|
|
points[i * 2] = d * cos(a) + b.x;
|
|
|
|
points[i * 2 + 1] = d * sin(a) + b.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
draw_poly(points, n, shape_color(box->shape.shape));
|
|
|
|
}
|
2023-01-12 17:41:54 -06:00
|
|
|
/************** POLYGON ************/
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-01-12 17:41:54 -06:00
|
|
|
struct phys2d_poly *Make2DPoly(int go)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
|
|
|
struct phys2d_poly *new = malloc(sizeof(struct phys2d_poly));
|
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
arrsetlen(new->points, 0);
|
2021-11-30 21:29:18 -06:00
|
|
|
new->radius = 0.f;
|
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
new->shape.shape = cpSpaceAddShape(space, cpPolyShapeNewRaw(id2go(go)->body, 0, new->points, new->radius));
|
2023-01-13 08:05:36 -06:00
|
|
|
new->shape.debugdraw = phys2d_dbgdrawpoly;
|
2023-01-25 21:32:58 -06:00
|
|
|
init_phys2dshape(&new->shape, go, new);
|
2023-01-12 17:41:54 -06:00
|
|
|
return new;
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2022-08-28 22:34:33 -05:00
|
|
|
void phys2d_polydel(struct phys2d_poly *poly)
|
|
|
|
{
|
2023-01-25 21:32:58 -06:00
|
|
|
arrfree(poly->points);
|
2022-08-28 22:34:33 -05:00
|
|
|
phys2d_shape_del(&poly->shape);
|
|
|
|
}
|
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
void phys2d_polyaddvert(struct phys2d_poly *poly)
|
|
|
|
{
|
2023-01-25 21:32:58 -06:00
|
|
|
arrput(poly->points, cpvzero);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2022-08-12 14:03:56 -05:00
|
|
|
void poly_gui(struct phys2d_poly *poly)
|
|
|
|
{
|
2023-01-25 21:32:58 -06:00
|
|
|
}
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
void phys2d_poly_setverts(struct phys2d_poly *poly, cpVect *verts)
|
|
|
|
{
|
|
|
|
arrfree(poly->points);
|
|
|
|
poly->points = verts;
|
|
|
|
phys2d_applypoly(poly);
|
|
|
|
}
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
void phys2d_applypoly(struct phys2d_poly *poly)
|
|
|
|
{
|
|
|
|
if (arrlen(poly->points) <= 0) return;
|
|
|
|
float s = id2go(poly->shape.go)->scale;
|
|
|
|
cpTransform T = { 0 };
|
|
|
|
T.a = s;
|
|
|
|
T.d = s;
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
cpPolyShapeSetVerts(poly->shape.shape, arrlen(poly->points), poly->points, T);
|
|
|
|
cpPolyShapeSetRadius(poly->shape.shape, poly->radius);
|
2022-08-12 14:03:56 -05:00
|
|
|
}
|
2023-01-25 21:32:58 -06:00
|
|
|
void phys2d_dbgdrawpoly(struct phys2d_poly *poly)
|
|
|
|
{
|
|
|
|
float *color = shape_color(poly->shape.shape);
|
|
|
|
int n = arrlen(poly->points);
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
cpVect b = cpBodyGetPosition(cpShapeGetBody(poly->shape.shape));
|
|
|
|
float angle = cpBodyGetAngle(cpShapeGetBody(poly->shape.shape));
|
2023-01-12 17:41:54 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
float s = id2go(poly->shape.go)->scale;
|
|
|
|
for (int i = 0; i < n; i++) {
|
|
|
|
float d = sqrt(pow(poly->points[i * 2].x * s, 2.f) + pow(poly->points[i * 2].y* s, 2.f));
|
|
|
|
float a = atan2(poly->points[i * 2].y, poly->points[i * 2].x) + angle;
|
|
|
|
draw_point(b.x + d * cos(a), b.y + d * sin(a), 3, color);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arrlen(poly->points) >= 3) {
|
|
|
|
int n = cpPolyShapeGetCount(poly->shape.shape);
|
|
|
|
float points[n * 2];
|
2023-01-12 17:41:54 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
for (int i = 0; i < n; i++) {
|
|
|
|
cpVect p = cpPolyShapeGetVert(poly->shape.shape, i);
|
|
|
|
float d = sqrt(pow(p.x, 2.f) + pow(p.y, 2.f));
|
|
|
|
float a = atan2(p.y, p.x) + angle;
|
|
|
|
points[i * 2] = d * cos(a) + b.x;
|
|
|
|
points[i * 2 + 1] = d * sin(a) + b.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
draw_poly(points, n, color);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-01-12 17:41:54 -06:00
|
|
|
/****************** EDGE 2D**************/
|
|
|
|
|
|
|
|
struct phys2d_edge *Make2DEdge(int go)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
|
|
|
struct phys2d_edge *new = malloc(sizeof(struct phys2d_edge));
|
2023-01-25 21:32:58 -06:00
|
|
|
new->points = NULL;
|
|
|
|
arrsetlen(new->points, 0);
|
2021-11-30 21:29:18 -06:00
|
|
|
new->thickness = 0.f;
|
2023-01-25 21:32:58 -06:00
|
|
|
new->shapes = NULL;
|
|
|
|
arrsetlen(new->shapes, 0);
|
2023-01-12 17:41:54 -06:00
|
|
|
new->shape.go = go;
|
2023-01-25 21:32:58 -06:00
|
|
|
new->shape.data = new;
|
|
|
|
new->shape.debugdraw = phys2d_dbgdrawedge;
|
2023-01-12 17:41:54 -06:00
|
|
|
phys2d_applyedge(new);
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-12 17:41:54 -06:00
|
|
|
return new;
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2022-08-28 22:34:33 -05:00
|
|
|
void phys2d_edgedel(struct phys2d_edge *edge)
|
|
|
|
{
|
|
|
|
phys2d_shape_del(&edge->shape);
|
|
|
|
}
|
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
void phys2d_edgeaddvert(struct phys2d_edge *edge)
|
|
|
|
{
|
2023-01-25 21:32:58 -06:00
|
|
|
arrput(edge->points, cpvzero);
|
|
|
|
if (arrlen(edge->points) > 1)
|
|
|
|
arrput(edge->shapes, cpSpaceAddShape(space, cpSegmentShapeNew(id2go(edge->shape.go)->body, cpvzero, cpvzero, edge->thickness)));
|
2022-08-12 14:03:56 -05:00
|
|
|
|
|
|
|
phys2d_applyedge(edge);
|
|
|
|
}
|
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
void phys2d_edge_rmvert(struct phys2d_edge *edge, int index)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
2023-01-25 21:32:58 -06:00
|
|
|
assert(arrlen(edge->points) > index && index >= 0);
|
2023-01-12 17:41:54 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
arrdel(edge->points, index);
|
|
|
|
cpSegmentShapeSetEndpoints(edge->shapes[index-1], edge->points[index-1], edge->points[index]);
|
|
|
|
cpSpaceRemoveShape(space, edge->shapes[index-1]);
|
|
|
|
arrdel(edge->shapes, index-1);
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
phys2d_applyedge(edge);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-02-02 17:52:15 -06:00
|
|
|
void phys2d_edge_setvert(struct phys2d_edge *edge, int index, cpVect val)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
2023-01-25 21:32:58 -06:00
|
|
|
assert(arrlen(edge->points) > index && index >= 0);
|
|
|
|
edge->points[index] = val;
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
phys2d_applyedge(edge);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void phys2d_applyedge(struct phys2d_edge *edge)
|
|
|
|
{
|
2023-01-12 17:41:54 -06:00
|
|
|
float s = id2go(edge->shape.go)->scale;
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
for (int i = 0; i < arrlen(edge->shapes); i++) {
|
|
|
|
cpVect a = edge->points[i];
|
|
|
|
cpVect b = edge->points[i+1];
|
|
|
|
a.x *= s;
|
|
|
|
a.y *= s;
|
|
|
|
b.x *= s;
|
|
|
|
b.y *= s;
|
2021-11-30 21:29:18 -06:00
|
|
|
cpSegmentShapeSetEndpoints(edge->shapes[i], a, b);
|
|
|
|
cpSegmentShapeSetRadius(edge->shapes[i], edge->thickness);
|
2023-01-25 21:32:58 -06:00
|
|
|
cpShapeSetUserData(edge->shapes[i], &edge->shape);
|
|
|
|
cpShapeSetCollisionType(edge->shapes[i], edge->shape.go);
|
|
|
|
cpShapeSetFriction(edge->shapes[i], id2go(edge->shape.go)->f);
|
|
|
|
cpShapeSetElasticity(edge->shapes[i], id2go(edge->shape.go)->e);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
cpSpaceReindexShapesForBody(space, id2go(edge->shape.go)->body);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
void phys2d_dbgdrawedge(struct phys2d_edge *edge)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
2023-01-25 21:32:58 -06:00
|
|
|
edge->draws++;
|
|
|
|
if (edge->draws > 1) {
|
|
|
|
if (edge->draws >= arrlen(edge->shapes))
|
|
|
|
edge->draws = 0;
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
return;
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
if (arrlen(edge->shapes) < 1) return;
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
cpVect p = cpBodyGetPosition(cpShapeGetBody(edge->shapes[0]));
|
|
|
|
float s = id2go(edge->shape.go)->scale;
|
|
|
|
float angle = cpBodyGetAngle(cpShapeGetBody(edge->shapes[0]));
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
cpVect drawpoints[arrlen(edge->points)];
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
for (int i = 0; i < arrlen(edge->points); i++) {
|
|
|
|
float d = sqrt(pow(edge->points[i].x*s, 2.f) + pow(edge->points[i].y*s, 2.f));
|
|
|
|
float a = atan2(edge->points[i].y, edge->points[i].x) + angle;
|
|
|
|
drawpoints[i].x = p.x + d*cos(a);
|
|
|
|
drawpoints[i].y = p.y + d*sin(a);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
draw_edge(drawpoints, arrlen(edge->points), trigger_color);
|
|
|
|
draw_points(drawpoints, arrlen(edge->points), 2, kinematic_color);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2022-12-20 08:16:26 -06:00
|
|
|
|
2023-01-25 21:32:58 -06:00
|
|
|
/************ COLLIDER ****************/
|
2023-01-17 15:09:14 -06:00
|
|
|
void shape_enabled(struct phys2d_shape *shape, int enabled)
|
2023-01-16 17:18:09 -06:00
|
|
|
{
|
2023-01-17 15:09:14 -06:00
|
|
|
if (enabled)
|
2023-01-18 08:45:42 -06:00
|
|
|
cpShapeSetFilter(shape->shape, CP_SHAPE_FILTER_ALL);
|
2023-01-17 15:09:14 -06:00
|
|
|
else
|
2023-01-18 08:45:42 -06:00
|
|
|
cpShapeSetFilter(shape->shape, CP_SHAPE_FILTER_NONE);
|
2023-01-16 17:18:09 -06:00
|
|
|
}
|
|
|
|
|
2023-01-18 10:45:43 -06:00
|
|
|
int shape_is_enabled(struct phys2d_shape *shape)
|
|
|
|
{
|
|
|
|
if (cpshape_enabled(shape->shape))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-01-17 15:09:14 -06:00
|
|
|
void shape_set_sensor(struct phys2d_shape *shape, int sensor)
|
2023-01-17 13:04:08 -06:00
|
|
|
{
|
2023-01-17 15:09:14 -06:00
|
|
|
cpShapeSetSensor(shape->shape, sensor);
|
2023-01-17 13:04:08 -06:00
|
|
|
}
|
|
|
|
|
2023-01-18 10:45:43 -06:00
|
|
|
int shape_get_sensor(struct phys2d_shape *shape)
|
|
|
|
{
|
|
|
|
return cpShapeGetSensor(shape->shape);
|
|
|
|
}
|
|
|
|
|
2022-12-21 19:24:59 -06:00
|
|
|
void phys2d_reindex_body(cpBody *body) {
|
|
|
|
cpSpaceReindexShapesForBody(space, body);
|
|
|
|
}
|
|
|
|
|
2023-01-18 10:45:43 -06:00
|
|
|
|
2023-01-11 16:57:34 -06:00
|
|
|
void register_collide(void *sym) {
|
2022-12-21 19:24:59 -06:00
|
|
|
|
2023-01-11 16:57:34 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static cpBool script_phys_cb_begin(cpArbiter *arb, cpSpace *space, void *data) {
|
2022-12-21 19:24:59 -06:00
|
|
|
cpBody *body1;
|
|
|
|
cpBody *body2;
|
|
|
|
cpArbiterGetBodies(arb, &body1, &body2);
|
|
|
|
|
2023-01-13 08:05:36 -06:00
|
|
|
int g1 = cpBodyGetUserData(body1);
|
|
|
|
int g2 = cpBodyGetUserData(body2);
|
2022-12-26 20:57:45 -06:00
|
|
|
|
2023-01-13 08:05:36 -06:00
|
|
|
duk_push_heapptr(duk, id2go(g1)->cbs.begin.fn);
|
|
|
|
duk_push_heapptr(duk, id2go(g1)->cbs.begin.obj);
|
2023-01-11 16:57:34 -06:00
|
|
|
|
|
|
|
int obj = duk_push_object(duk);
|
2022-12-28 16:50:54 -06:00
|
|
|
|
2023-01-11 16:57:34 -06:00
|
|
|
vect2duk(cpArbiterGetNormal(arb));
|
|
|
|
duk_put_prop_literal(duk, obj, "normal");
|
|
|
|
|
2023-01-12 17:41:54 -06:00
|
|
|
duk_push_int(duk, g2);
|
2023-01-11 16:57:34 -06:00
|
|
|
duk_put_prop_literal(duk, obj, "hit");
|
|
|
|
|
|
|
|
duk_call_method(duk, 1);
|
|
|
|
duk_pop(duk);
|
2022-12-21 19:24:59 -06:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2023-01-12 17:41:54 -06:00
|
|
|
void phys2d_add_handler_type(int cmd, int go, struct callee c) {
|
2022-12-21 19:24:59 -06:00
|
|
|
cpCollisionHandler *handler = cpSpaceAddWildcardHandler(space, go);
|
|
|
|
|
2023-01-13 08:05:36 -06:00
|
|
|
handler->userData = go;
|
2022-12-21 19:24:59 -06:00
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case 0:
|
2023-01-11 16:57:34 -06:00
|
|
|
handler->beginFunc = script_phys_cb_begin;
|
2023-01-12 17:41:54 -06:00
|
|
|
id2go(go)->cbs.begin = c;
|
2022-12-21 19:24:59 -06:00
|
|
|
break;
|
2022-12-20 08:16:26 -06:00
|
|
|
|
2022-12-21 19:24:59 -06:00
|
|
|
case 1:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
2023-01-10 14:02:24 -06:00
|
|
|
//handler->separateFunc = s7_phys_cb_separate;
|
|
|
|
//go->cbs->separate = cb;
|
2022-12-21 19:24:59 -06:00
|
|
|
break;
|
|
|
|
}
|
2023-01-13 08:05:36 -06:00
|
|
|
|
2023-02-02 17:52:15 -06:00
|
|
|
}
|