aboutsummaryrefslogtreecommitdiffstats
path: root/src/physics.cpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-10-09 02:40:20 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-10-09 02:40:20 -0400
commitf8b062e3fe43ece368c99d1083a929de92b7cff2 (patch)
treead6d5d85a0190165f100e505f259a8b4d5aa4915 /src/physics.cpp
parenta422f32613441b5313e4a3bb0fab61f8cb87914c (diff)
Started more advanced collision detetction
Diffstat (limited to 'src/physics.cpp')
-rw-r--r--src/physics.cpp50
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);
}
});
}