2024-02-29 16:17:55 +08:00
|
|
|
|
2024-02-29 16:59:04 +08:00
|
|
|
#include "Physics_Component.h"
|
2024-02-29 16:17:55 +08:00
|
|
|
#include "Entity.h"
|
|
|
|
#include "Types.h"
|
|
|
|
#include "util/tree.h"
|
|
|
|
#include "util/vector.h"
|
|
|
|
#include "util/assert.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
double physics_Gravity = 5.0;
|
|
|
|
|
|
|
|
|
2024-02-29 16:51:46 +08:00
|
|
|
Box2 physics_HitboxAbsolute(Component_Hitbox *hitbox) {
|
|
|
|
Entity *super = hitbox->super;
|
|
|
|
if (!super->position)
|
|
|
|
return hitbox->box;
|
|
|
|
else {
|
|
|
|
Box2 box = hitbox->box;
|
|
|
|
box.lefttop = vec2_Add(box.lefttop, super->position->position);
|
|
|
|
return box;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-03-01 17:09:24 +08:00
|
|
|
System_Physics *physics_NewSystem(App *super) {
|
2024-02-29 16:17:55 +08:00
|
|
|
System_Physics *sys = malloc(sizeof(System_Physics));
|
2024-03-01 17:09:24 +08:00
|
|
|
sys->super = super;
|
2024-02-29 16:17:55 +08:00
|
|
|
|
2024-03-04 14:20:50 +08:00
|
|
|
sys->pos = tree_Create(sizeof(uintptr_t));
|
|
|
|
sys->hit = tree_Create(sizeof(uintptr_t));
|
2024-02-29 16:17:55 +08:00
|
|
|
|
|
|
|
return sys;
|
|
|
|
}
|
|
|
|
|
|
|
|
void physics_DeleteSystem(System_Physics *sys) {
|
|
|
|
tree_Destroy(sys->pos);
|
|
|
|
tree_Destroy(sys->hit);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void physics_AddEntity(System_Physics *sys, Entity *e) {
|
|
|
|
if (e->position)
|
|
|
|
memcpy(tree_Insert(sys->pos, e->id, NULL), &e->position, sizeof(uintptr_t));
|
|
|
|
if (e->hitbox) {
|
|
|
|
ASSERT(!e->hitbox->fixed && !e->position && "Entity has non-Fixed Hitbox but no position");
|
|
|
|
memcpy(tree_Insert(sys->hit, e->id, NULL), &e->hitbox, sizeof(uintptr_t));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void physics_DeleteEntity(System_Physics *sys, uintptr_t id) {
|
2024-03-04 14:20:50 +08:00
|
|
|
tree_Node *n;
|
|
|
|
n = tree_FindNode(sys->pos, id);
|
|
|
|
if (n)
|
|
|
|
tree_Delete(sys->pos, n);
|
|
|
|
n = tree_FindNode(sys->hit, id);
|
|
|
|
if (n)
|
|
|
|
tree_Delete(sys->hit, n);
|
2024-02-29 16:17:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-02-29 16:51:46 +08:00
|
|
|
// Defined in Physics_Move.c
|
|
|
|
void _physics_MoveX(System_Physics *sys, Entity *e, Duration deltaTime);
|
|
|
|
void _physics_MoveY(System_Physics *sys, Entity *e, Duration deltaTime);
|
|
|
|
|
|
|
|
|
2024-03-01 14:37:59 +08:00
|
|
|
static inline void _physics_AdvanceEntity(System_Physics *sys, Entity *e, Duration deltaTime) {
|
2024-02-29 16:51:46 +08:00
|
|
|
ASSERT(e->position && "_physics_AdvanceEntity() called on entity with no position");
|
2024-02-29 16:17:55 +08:00
|
|
|
|
|
|
|
// Short path
|
|
|
|
if (!e->hitbox || e->hitbox->fixed) {
|
|
|
|
e->position->position =
|
|
|
|
vec2_Add(
|
|
|
|
e->position->position,
|
|
|
|
vec2_Scale(
|
|
|
|
e->position->velocity,
|
|
|
|
duration_Seconds(deltaTime)));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Long path
|
2024-02-29 16:51:46 +08:00
|
|
|
_physics_MoveX(sys, e, deltaTime);
|
|
|
|
_physics_MoveY(sys, e, deltaTime);
|
2024-02-29 16:17:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void physics_Advance(System_Physics *sys, Duration deltaTime) {
|
|
|
|
for (tree_Node *i = tree_FirstNode(sys->pos);
|
|
|
|
i != NULL;
|
|
|
|
i = tree_Node_Next(i)) {
|
|
|
|
Component_Position *pos = *((Component_Position **)i->data);
|
2024-02-29 16:51:46 +08:00
|
|
|
_physics_AdvanceEntity(sys, pos->super, deltaTime);
|
2024-02-29 16:17:55 +08:00
|
|
|
}
|
|
|
|
}
|