eco2d/code/apps/server/modules/source/physics.c

32 lines
833 B
C
Raw Normal View History

2021-01-19 10:31:23 +00:00
#include "modules/physics.h"
2021-01-19 10:19:12 +00:00
2021-01-19 14:58:16 +00:00
void MoveWalk(ecs_iter_t *it) {
2021-01-23 18:24:52 +00:00
Position *p = ecs_column(it, Position, 1);
Velocity *v = ecs_column(it, Velocity, 2);
2021-01-19 14:58:16 +00:00
2021-01-23 18:24:52 +00:00
for (int i = 0; i < it->count; i++) {
// TODO: handle collisions
p[i].x += v[i].x * it->delta_time;
p[i].y += v[i].y * it->delta_time;
}
2021-01-19 14:58:16 +00:00
}
2021-01-19 10:19:12 +00:00
void PhysicsImport(ecs_world_t *ecs) {
ECS_MODULE(ecs, Physics);
ecs_set_name_prefix(ecs, "Physics");
ECS_TAG(ecs, Walking);
ECS_TAG(ecs, Flying);
ECS_TYPE(ecs, Movement, Walking, Flying);
ECS_COMPONENT(ecs, Velocity);
2021-01-19 14:58:16 +00:00
ECS_SYSTEM(ecs, MoveWalk, EcsOnUpdate, general.Position, Velocity, SWITCH | Movement, CASE | Walking);
2021-01-19 10:19:12 +00:00
ECS_SET_TYPE(Movement);
ECS_SET_ENTITY(Walking);
ECS_SET_ENTITY(Flying);
ECS_SET_COMPONENT(Velocity);
2021-01-19 14:58:16 +00:00
ECS_SET_ENTITY(MoveWalk);
2021-01-19 10:19:12 +00:00
}