aboutsummaryrefslogtreecommitdiffstats
path: root/src/systems/physics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems/physics.cpp')
-rw-r--r--src/systems/physics.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/systems/physics.cpp b/src/systems/physics.cpp
new file mode 100644
index 0000000..4cee110
--- /dev/null
+++ b/src/systems/physics.cpp
@@ -0,0 +1,15 @@
+#include <systems/physics.hpp>
+
+#include <components/direction.hpp>
+#include <components/physics.hpp>
+
+void PhysicsSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
+{
+ (void)ev;
+ en.each<Direction, Physics>([dt](entityx::Entity entity, Direction &direction, Physics &physics) {
+ (void)entity;
+ // TODO GET GRAVITY FROM WORLD
+ direction.y += physics.g * dt;
+ });
+}
+