diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-07 01:13:59 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-07 01:13:59 -0400 |
commit | b0d7712fa08aefa2694b629037eeed2c170b1eab (patch) | |
tree | 3cfc5f2c2d99426050fb01acb5e6c66da557a0c9 /src | |
parent | 0976af2860bd48621ff1fa9481d6748b58ee9679 (diff) |
Added physics loop function that runs in it's own thread
Diffstat (limited to 'src')
-rw-r--r-- | src/engine.cpp | 39 | ||||
-rw-r--r-- | src/engine.hpp | 2 |
2 files changed, 31 insertions, 10 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index 9e77b40..d8e8bab 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -26,6 +26,7 @@ #include "player.hpp" #include "script.hpp" #include "render.hpp" +#include "physics.hpp" #include "components/EventListener.hpp" #include "components/Script.hpp" @@ -45,6 +46,7 @@ int Engine::init(void) systems.add<PlayerSystem>(entities); systems.add<RenderSystem>(); systems.add<ScriptSystem>(); + systems.add<PhysicsSystem>(); systems.configure(); // Load game script and entity data @@ -65,16 +67,6 @@ void Engine::logicLoop(void) while (shouldRun()) { auto start = mc::now(); - /*********************** - * UPDATE FREQUENTLY * - ***********************/ - - entities.each<Position, Velocity> - ([&](entityx::Entity, Position &p, Velocity &v){ - p.x += (v.x * dt/1000.0); - p.y += (v.y * dt/1000.0); - }); - systems.update<InputSystem>(dt); //systems.update<ScriptSystem>(dt); @@ -92,14 +84,36 @@ void Engine::logicLoop(void) }); } + std::this_thread::yield(); + auto end = mc::now(); auto diff = end - start; auto micros = cr::duration_cast<cr::microseconds>(diff); auto msc = micros.count(); dt = static_cast<double>(msc) / 1000.0; elapsed += dt; + } +} + +void Engine::physicsLoop(void) +{ + entityx::TimeDelta dt = 0; /**< Elapsed milliseconds since each loop */ + + while (shouldRun()) { + auto start = mc::now(); + + // Update the entities physics/position + systems.update<PhysicsSystem>(dt); + std::this_thread::yield(); + + auto end = mc::now(); + auto diff = end - start; + auto micros = cr::duration_cast<cr::microseconds>(diff); + auto msc = micros.count(); + dt = static_cast<double>(msc) / 1000.0; } + std::cout << std::endl; } void Engine::renderLoop(void) @@ -117,11 +131,16 @@ void Engine::run(void) logicLoop(); }); + physicsThread = std::thread([this](void) { + physicsLoop(); + }); + // Keep render loop on main thread renderLoop(); // Done, bring logic thread back logicThread.join(); + physicsThread.join(); // Save the entities' data GameState::save("save.json", entities); diff --git a/src/engine.hpp b/src/engine.hpp index 26b1c45..ab6f16b 100644 --- a/src/engine.hpp +++ b/src/engine.hpp @@ -37,8 +37,10 @@ private: entityx::SystemManager systems; std::thread logicThread; + std::thread physicsThread; void logicLoop(void); + void physicsLoop(void); void renderLoop(void); bool shouldRun(void); |