From 1703f84121f18277c2a9bd671e204730c131c102 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Wed, 25 Sep 2019 12:57:18 -0400 Subject: Changed up time-step to see if it fixes desktop stuttering movement issues --- src/engine.cpp | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) (limited to 'src') diff --git a/src/engine.cpp b/src/engine.cpp index 703b45e..a000979 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -84,8 +84,15 @@ void Engine::logicLoop(void) the logic loop is run during our first loop. */ + auto start = mc::now(); while (shouldRun()) { - auto start = mc::now(); + auto end = start; + start = mc::now(); + auto diff = start-end; + auto micros = cr::duration_cast(diff); + auto msc = micros.count(); + dt = static_cast(msc) / 1000.0; + elapsed += dt; systems.update(dt); //systems.update(dt); @@ -107,35 +114,27 @@ void Engine::logicLoop(void) } std::this_thread::yield(); - - auto end = mc::now(); - auto diff = end - start; - auto micros = cr::duration_cast(diff); - auto msc = micros.count(); - dt = static_cast(msc) / 1000.0; - elapsed += dt; } } void Engine::physicsLoop(void) { entityx::TimeDelta dt = 0; /**< Elapsed milliseconds since each loop */ - + auto start = mc::now(); while (shouldRun()) { - auto start = mc::now(); + auto end = start; + start = mc::now(); + + auto diff = start - end; + auto micros = cr::duration_cast(diff); + auto msc = micros.count(); + dt = static_cast(msc) / 1000.0; // Update the entities physics/position systems.update(dt); std::this_thread::yield(); - - auto end = mc::now(); - auto diff = end - start; - auto micros = cr::duration_cast(diff); - auto msc = micros.count(); - dt = static_cast(msc) / 1000.0; } - std::cout << std::endl; } void Engine::renderLoop(void) -- cgit v1.2.3