2021-11-30 21:29:18 -06:00
|
|
|
#include "gameobject.h"
|
|
|
|
|
|
|
|
#include "2dphysics.h"
|
2023-05-12 13:22:05 -05:00
|
|
|
#include "debugdraw.h"
|
2021-11-30 21:29:18 -06:00
|
|
|
#include "input.h"
|
2022-11-18 12:03:07 -06:00
|
|
|
#include "log.h"
|
2023-05-12 13:22:05 -05:00
|
|
|
#include "nuke.h"
|
|
|
|
#include "resources.h"
|
|
|
|
#include "script.h"
|
|
|
|
#include "shader.h"
|
|
|
|
#include "sprite.h"
|
|
|
|
#include <chipmunk/chipmunk.h>
|
|
|
|
#include <string.h>
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2022-08-26 09:19:17 -05:00
|
|
|
#include "stb_ds.h"
|
|
|
|
|
2022-11-19 17:13:57 -06:00
|
|
|
struct gameobject *gameobjects = NULL;
|
2023-01-13 08:05:36 -06:00
|
|
|
static int first = -1;
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
const int nameBuf[MAXNAME] = {0};
|
|
|
|
const int prefabNameBuf[MAXNAME] = {0};
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
struct gameobject *get_gameobject_from_id(int id) {
|
|
|
|
if (id < 0) return NULL;
|
2023-01-11 16:57:34 -06:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
return &gameobjects[id];
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
struct gameobject *id2go(int id) {
|
|
|
|
if (id < 0) return NULL;
|
2023-01-12 17:41:54 -06:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
return &gameobjects[id];
|
2023-01-12 17:41:54 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
int body2id(cpBody *body) {
|
2023-04-19 15:16:35 -05:00
|
|
|
return (int)cpBodyGetUserData(body);
|
2023-02-05 17:42:36 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
cpBody *id2body(int id) {
|
2023-04-28 20:55:24 -05:00
|
|
|
struct gameobject *go = id2go(id);
|
2023-05-12 13:22:05 -05:00
|
|
|
|
2023-04-28 20:55:24 -05:00
|
|
|
if (go)
|
2023-02-13 08:30:35 -06:00
|
|
|
return go->body;
|
2023-05-12 13:22:05 -05:00
|
|
|
|
2023-02-13 08:30:35 -06:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
int shape2gameobject(cpShape *shape) {
|
2023-02-05 17:42:36 -06:00
|
|
|
struct phys2d_shape *s = cpShapeGetUserData(shape);
|
|
|
|
return s->go;
|
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
int pos2gameobject(cpVect pos) {
|
2023-02-02 17:52:15 -06:00
|
|
|
cpShape *hit = phys2d_query_pos(pos);
|
|
|
|
|
|
|
|
if (hit) {
|
2023-02-05 17:42:36 -06:00
|
|
|
return shape2gameobject(hit);
|
2023-02-02 17:52:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < arrlen(gameobjects); i++) {
|
2023-02-10 14:31:58 -06:00
|
|
|
if (!gameobjects[i].body) continue;
|
2023-02-02 17:52:15 -06:00
|
|
|
cpVect gpos = cpBodyGetPosition(gameobjects[i].body);
|
|
|
|
float dist = cpvlength(cpvsub(gpos, pos));
|
|
|
|
|
|
|
|
if (dist <= 25) return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2022-12-19 18:15:38 -06:00
|
|
|
int id_from_gameobject(struct gameobject *go) {
|
2023-05-12 13:22:05 -05:00
|
|
|
for (int i = 0; i < arrlen(gameobjects); i++) {
|
|
|
|
if (&gameobjects[i] == go) return i;
|
|
|
|
}
|
2022-12-19 18:15:38 -06:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
return -1;
|
2022-12-19 18:15:38 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
void gameobject_set_sensor(int id, int sensor) {
|
2023-02-17 13:15:56 -06:00
|
|
|
id2go(id)->sensor = sensor;
|
|
|
|
gameobject_apply(id2go(id));
|
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
int go2id(struct gameobject *go) {
|
2023-04-28 20:55:24 -05:00
|
|
|
return id_from_gameobject(go);
|
2023-02-19 11:16:35 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
void go_shape_apply(cpBody *body, cpShape *shape, struct gameobject *go) {
|
|
|
|
cpShapeSetFriction(shape, go->f);
|
|
|
|
cpShapeSetElasticity(shape, go->e);
|
|
|
|
cpShapeSetCollisionType(shape, go2id(go));
|
|
|
|
|
2023-05-24 20:45:50 -05:00
|
|
|
cpShapeFilter filter;
|
|
|
|
filter.group = go2id(go);
|
|
|
|
filter.categories = CP_ALL_CATEGORIES;//1<<go->layer;
|
|
|
|
filter.mask = CP_ALL_CATEGORIES;//category_masks[go->layer];
|
|
|
|
cpShapeSetFilter(shape, filter);
|
2023-02-28 09:40:53 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
void go_shape_moi(cpBody *body, cpShape *shape, struct gameobject *go) {
|
|
|
|
float moment = cpBodyGetMoment(go->body);
|
|
|
|
struct phys2d_shape *s = cpShapeGetUserData(shape);
|
|
|
|
if (!s) {
|
|
|
|
cpBodySetMoment(go->body, moment + 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
moment += s->moi(s->data, go->mass);
|
2023-05-27 07:01:17 -05:00
|
|
|
if (moment < 0) moment = 1;
|
2023-05-12 13:22:05 -05:00
|
|
|
cpBodySetMoment(go->body, moment);
|
2023-02-02 17:52:15 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
void gameobject_apply(struct gameobject *go) {
|
|
|
|
cpBodySetType(go->body, go->bodytype);
|
|
|
|
cpBodyEachShape(go->body, go_shape_apply, go);
|
|
|
|
|
|
|
|
if (go->bodytype == CP_BODY_TYPE_DYNAMIC) {
|
|
|
|
cpBodySetMass(go->body, go->mass);
|
|
|
|
cpBodySetMoment(go->body, 0.f);
|
|
|
|
cpBodyEachShape(go->body, go_shape_moi, go);
|
|
|
|
|
|
|
|
if (cpBodyGetMoment(go->body) <= 0.f)
|
|
|
|
cpBodySetMoment(go->body, 1.f);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2023-01-04 18:09:42 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
static void gameobject_setpickcolor(struct gameobject *go) {
|
|
|
|
/*
|
|
|
|
float r = ((go->editor.id & 0x000000FF) >> 0) / 255.f;
|
|
|
|
float g = ((go->editor.id & 0x0000FF00) >> 8) / 255.f;
|
|
|
|
float b = ((go->editor.id & 0x00FF0000) >> 16) / 255.f;
|
|
|
|
|
|
|
|
go->editor.color[0] = r;
|
|
|
|
go->editor.color[1] = g;
|
|
|
|
go->editor.color[2] = b;
|
|
|
|
*/
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
int MakeGameobject() {
|
|
|
|
struct gameobject go = {
|
|
|
|
.scale = 1.f,
|
|
|
|
.bodytype = CP_BODY_TYPE_STATIC,
|
|
|
|
.mass = 1.f,
|
|
|
|
.next = -1,
|
|
|
|
.sensor = 0,
|
|
|
|
.shape_cbs = NULL,
|
2023-05-27 07:01:17 -05:00
|
|
|
.ref = JS_NULL,
|
2023-05-12 13:22:05 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
go.cbs.begin.obj = JS_NULL;
|
|
|
|
go.cbs.separate.obj = JS_NULL;
|
|
|
|
|
|
|
|
go.body = cpSpaceAddBody(space, cpBodyNew(go.mass, 1.f));
|
|
|
|
|
|
|
|
int retid;
|
|
|
|
|
|
|
|
if (first < 0) {
|
|
|
|
arrput(gameobjects, go);
|
|
|
|
retid = arrlast(gameobjects).id = arrlen(gameobjects) - 1;
|
|
|
|
} else {
|
|
|
|
retid = first;
|
|
|
|
first = id2go(first)->next;
|
|
|
|
*id2go(retid) = go;
|
|
|
|
}
|
|
|
|
|
|
|
|
cpBodySetUserData(go.body, (void *)retid);
|
|
|
|
phys2d_setup_handlers(retid);
|
|
|
|
return retid;
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-01-13 08:05:36 -06:00
|
|
|
void rm_body_shapes(cpBody *body, cpShape *shape, void *data) {
|
2023-05-12 13:22:05 -05:00
|
|
|
struct phys2d_shape *s = cpShapeGetUserData(shape);
|
|
|
|
if (s->data) {
|
|
|
|
free(s->data);
|
|
|
|
s->data = NULL;
|
|
|
|
}
|
|
|
|
cpSpaceRemoveShape(space, shape);
|
|
|
|
cpShapeFree(shape);
|
2023-01-13 08:05:36 -06:00
|
|
|
}
|
|
|
|
|
2023-02-28 17:03:28 -06:00
|
|
|
int *go_toclean = NULL;
|
2023-01-13 08:05:36 -06:00
|
|
|
|
2023-02-02 17:52:15 -06:00
|
|
|
/* Free this gameobject */
|
2023-01-13 08:05:36 -06:00
|
|
|
void gameobject_clean(int id) {
|
2023-05-12 13:22:05 -05:00
|
|
|
struct gameobject *go = id2go(id);
|
|
|
|
arrfree(go->shape_cbs);
|
|
|
|
cpBodyEachShape(go->body, rm_body_shapes, NULL);
|
|
|
|
cpSpaceRemoveBody(space, go->body);
|
|
|
|
cpBodyFree(go->body);
|
|
|
|
go->body = NULL;
|
2023-01-13 08:05:36 -06:00
|
|
|
}
|
2023-01-12 17:41:54 -06:00
|
|
|
|
2023-02-28 17:03:28 -06:00
|
|
|
/* Really more of a "mark for deletion" ... */
|
2023-05-12 13:22:05 -05:00
|
|
|
void gameobject_delete(int id) {
|
|
|
|
id2go(id)->next = first;
|
|
|
|
first = id;
|
|
|
|
|
|
|
|
if (cpSpaceIsLocked(space))
|
|
|
|
arrpush(go_toclean, id);
|
|
|
|
else
|
|
|
|
gameobject_clean(id);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-02-28 17:03:28 -06:00
|
|
|
void gameobjects_cleanup() {
|
2023-05-12 13:22:05 -05:00
|
|
|
for (int i = 0; i < arrlen(go_toclean); i++)
|
|
|
|
gameobject_clean(go_toclean[i]);
|
2022-08-26 09:19:17 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
arrsetlen(go_toclean, 0);
|
|
|
|
|
|
|
|
return;
|
2022-08-28 22:34:33 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
int clean = first;
|
2022-08-28 22:34:33 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
while (clean >= 0 && id2go(clean)->body) {
|
|
|
|
gameobject_clean(clean);
|
|
|
|
clean = id2go(clean)->next;
|
|
|
|
}
|
2022-08-15 23:46:06 -05:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
void gameobject_move(struct gameobject *go, cpVect vec) {
|
|
|
|
cpVect p = cpBodyGetPosition(go->body);
|
|
|
|
p.x += vec.x;
|
|
|
|
p.y += vec.y;
|
|
|
|
cpBodySetPosition(go->body, p);
|
2022-12-21 19:24:59 -06:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
phys2d_reindex_body(go->body);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
void gameobject_rotate(struct gameobject *go, float as) {
|
|
|
|
cpFloat a = cpBodyGetAngle(go->body);
|
|
|
|
a += as * deltaT;
|
|
|
|
cpBodySetAngle(go->body, a);
|
2022-12-21 19:24:59 -06:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
phys2d_reindex_body(go->body);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
2022-02-04 11:36:24 -06:00
|
|
|
|
2022-12-19 18:15:38 -06:00
|
|
|
void gameobject_setangle(struct gameobject *go, float angle) {
|
2023-05-12 13:22:05 -05:00
|
|
|
cpBodySetAngle(go->body, angle);
|
|
|
|
phys2d_reindex_body(go->body);
|
2022-12-19 18:15:38 -06:00
|
|
|
}
|
|
|
|
|
2022-12-26 20:57:45 -06:00
|
|
|
void gameobject_setpos(struct gameobject *go, cpVect vec) {
|
2023-05-12 13:22:05 -05:00
|
|
|
if (!go || !go->body) return;
|
|
|
|
cpBodySetPosition(go->body, vec);
|
2022-12-19 18:15:38 -06:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
phys2d_reindex_body(go->body);
|
2022-02-06 10:14:57 -06:00
|
|
|
}
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
void object_gui(struct gameobject *go) {
|
|
|
|
/*
|
|
|
|
float temp_pos[2];
|
2023-05-16 13:31:19 -05:00
|
|
|
draw_cppoint(cpBodyGetPosition(go->body), 3);
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
nuke_property_float2("Position", -1000000.f, temp_pos, 1000000.f, 1.f, 0.5f);
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
cpVect tvect = { temp_pos[0], temp_pos[1] };
|
|
|
|
cpBodySetPosition(go->body, tvect);
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
float mtry = cpBodyGetAngle(go->body);
|
|
|
|
float modtry = fmodf(mtry * RAD2DEGS, 360.f);
|
|
|
|
if (modtry < 0.f)
|
|
|
|
modtry += 360.f;
|
2022-08-17 00:01:51 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
float modtry2 = modtry;
|
|
|
|
nuke_property_float("Angle", -1000.f, &modtry, 1000.f, 0.5f, 0.5f);
|
|
|
|
modtry -= modtry2;
|
|
|
|
cpBodySetAngle(go->body, mtry + (modtry * DEG2RADS));
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
nuke_property_float("Scale", 0.f, &go->scale, 1000.f, 0.01f, go->scale * 0.01f);
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
nuke_nel(3);
|
|
|
|
nuke_radio_btn("Static", &go->bodytype, CP_BODY_TYPE_STATIC);
|
|
|
|
nuke_radio_btn("Dynamic", &go->bodytype, CP_BODY_TYPE_DYNAMIC);
|
|
|
|
nuke_radio_btn("Kinematic", &go->bodytype, CP_BODY_TYPE_KINEMATIC);
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
cpBodySetType(go->body, go->bodytype);
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
if (go->bodytype == CP_BODY_TYPE_DYNAMIC) {
|
|
|
|
nuke_property_float("Mass", 0.01f, &go->mass, 1000.f, 0.01f, 0.01f);
|
|
|
|
cpBodySetMass(go->body, go->mass);
|
|
|
|
}
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
nuke_property_float("Friction", 0.f, &go->f, 10.f, 0.01f, 0.01f);
|
|
|
|
nuke_property_float("Elasticity", 0.f, &go->e, 2.f, 0.01f, 0.01f);
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
int n = -1;
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2022-08-25 15:48:15 -05:00
|
|
|
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
for (int i = 0; i < arrlen(go->components); i++) {
|
|
|
|
struct component *c = &go->components[i];
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
comp_draw_debug(c);
|
2022-08-25 15:48:15 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
nuke_nel(5);
|
|
|
|
if (nuke_btn("Del")) n = i;
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
if (nuke_push_tree_id(c->ref->name, i)) {
|
|
|
|
comp_draw_gui(c);
|
|
|
|
nuke_tree_pop();
|
|
|
|
}
|
2022-08-25 15:48:15 -05:00
|
|
|
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
}
|
2022-08-12 14:03:56 -05:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
if (n >= 0)
|
|
|
|
gameobject_delcomponent(go, n);
|
|
|
|
*/
|
2022-11-25 07:12:31 -06:00
|
|
|
}
|
2022-12-21 19:24:59 -06:00
|
|
|
|
2023-01-13 08:05:36 -06:00
|
|
|
void body_draw_shapes_dbg(cpBody *body, cpShape *shape, void *data) {
|
2023-05-12 13:22:05 -05:00
|
|
|
struct phys2d_shape *s = cpShapeGetUserData(shape);
|
|
|
|
s->debugdraw(s->data);
|
2023-01-13 08:05:36 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
void gameobject_draw_debug(int go) {
|
2023-03-17 10:25:35 -05:00
|
|
|
struct gameobject *g = id2go(go);
|
|
|
|
if (!g || !g->body) return;
|
2023-01-19 10:44:29 -06:00
|
|
|
|
2023-03-17 10:25:35 -05:00
|
|
|
cpVect pos = cpBodyGetPosition(g->body);
|
2023-05-16 01:31:13 -05:00
|
|
|
struct rgba color = {
|
|
|
|
.r = 0.76*255,
|
|
|
|
.b = 0.38*255,
|
|
|
|
.g = 255,
|
|
|
|
.a = 255
|
|
|
|
};
|
2023-05-16 13:31:19 -05:00
|
|
|
draw_cppoint(pos, 3.f, color);
|
2023-03-17 10:25:35 -05:00
|
|
|
cpBodyEachShape(g->body, body_draw_shapes_dbg, NULL);
|
|
|
|
}
|
2023-01-13 08:05:36 -06:00
|
|
|
|
2023-03-17 10:25:35 -05:00
|
|
|
void gameobject_draw_debugs() {
|
2023-05-12 13:22:05 -05:00
|
|
|
for (int i = 0; i < arrlen(gameobjects); i++)
|
|
|
|
gameobject_draw_debug(i);
|
2022-12-22 16:58:06 -06:00
|
|
|
}
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
static struct {
|
|
|
|
struct gameobject go;
|
|
|
|
cpVect pos;
|
|
|
|
float angle;
|
|
|
|
} *saveobjects = NULL;
|
2022-12-22 16:58:06 -06:00
|
|
|
|
|
|
|
void gameobject_saveall() {
|
2023-05-12 13:22:05 -05:00
|
|
|
arrfree(saveobjects);
|
|
|
|
arrsetlen(saveobjects, arrlen(gameobjects));
|
|
|
|
|
|
|
|
for (int i = 0; i < arrlen(gameobjects); i++) {
|
|
|
|
saveobjects[i].go = gameobjects[i];
|
|
|
|
saveobjects[i].pos = cpBodyGetPosition(gameobjects[i].body);
|
|
|
|
saveobjects[i].angle = cpBodyGetAngle(gameobjects[i].body);
|
|
|
|
}
|
2022-12-22 16:58:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void gameobject_loadall() {
|
2023-05-12 13:22:05 -05:00
|
|
|
YughInfo("N gameobjects: %d, N saved: %d", arrlen(gameobjects), arrlen(saveobjects));
|
|
|
|
for (int i = 0; i < arrlen(saveobjects); i++) {
|
|
|
|
gameobjects[i] = saveobjects[i].go;
|
|
|
|
cpBodySetPosition(gameobjects[i].body, saveobjects[i].pos);
|
|
|
|
cpBodySetAngle(gameobjects[i].body, saveobjects[i].angle);
|
|
|
|
cpBodySetVelocity(gameobjects[i].body, cpvzero);
|
|
|
|
cpBodySetAngularVelocity(gameobjects[i].body, 0.f);
|
|
|
|
}
|
|
|
|
|
|
|
|
arrfree(saveobjects);
|
2022-12-22 16:58:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
int gameobjects_saved() {
|
2023-05-12 13:22:05 -05:00
|
|
|
return arrlen(saveobjects);
|
2022-12-22 16:58:06 -06:00
|
|
|
}
|