diff options
Diffstat (limited to 'src/physics.cpp')
-rw-r--r-- | src/physics.cpp | 50 |
1 files changed, 33 insertions, 17 deletions
diff --git a/src/physics.cpp b/src/physics.cpp index 85b929c..4567288 100644 --- a/src/physics.cpp +++ b/src/physics.cpp @@ -38,29 +38,45 @@ void PhysicsSystem::update([[maybe_unused]]entityx::EntityManager& entities, bool has_phys = e.has_component<Physics>(); - pos.x += (vel.x * dt/1000.0); - pos.y += (vel.y * dt/1000.0); - // If the entity has physics if (has_phys) { + Physics *p = e.component<Physics>().get(); - float fallPosition = currentWorld->getHeight(pos.x, pos.y, 0.0); + glm::vec3 start = pos.vec(); + + glm::vec3 goal = pos.vec(); + goal.x += (vel.x * dt/1000.0); + goal.y += (vel.y * dt/1000.0); + + glm::vec3 end = currentWorld->collide(start, goal, *p); + (void)end; + + //std::cout << end.x << "," << end.y << std::endl; + + pos.x = goal.x; + pos.y = goal.y; + pos.z = goal.z; + + //float fallPosition = currentWorld->getHeight(pos.x, pos.y, 0.0); - Physics *p = e.component<Physics>().get(); // TODO only make this occur when the entity has a hitbox - if (pos.y == fallPosition) { - p->standing = true; - return; - } + //if (pos.y == fallPosition) { + // p->standing = true; + // return; + //} - if (pos.y < fallPosition) { - pos.y = fallPosition; - vel.y = 0; - p->standing = true; - } else { - p->standing = false; - vel.y -= 32.2 * (dt/1000.0f); - } + //if (pos.y < fallPosition) { + // pos.y = fallPosition; + // vel.y = 0; + // p->standing = true; + //} else { + // p->standing = false; + //if (p->gravity) + // vel.y -= 32.2 * (dt/1000.0f); + //} + } else { + pos.x += (vel.x * dt/1000.0); + pos.y += (vel.y * dt/1000.0); } }); } |