aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 81e0272..a3c4c6a 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -164,10 +164,21 @@ void Engine::run(void)
debugThread = std::thread([this, &fpsCounter](void) {
while (shouldRun()) {
- std::this_thread::sleep_for(1s);
- fps = fpsCounter;
+ std::this_thread::sleep_for(250ms);
+ fps = fpsCounter*4;
fpsCounter = 0;
- systems.system<TextSystem>()->put("default", 0, 0, "fps: "s + std::to_string(fps));
+
+ systems.system<TextSystem>()->
+ put("default", 0, 0, "fps: "s + std::to_string(fps));
+
+ entities.each<Player, Position>(
+ [this](entityx::Entity, Player &p, Position &pos){
+ (void)p;
+ std::string pr = "pos: " + std::to_string(pos.x)
+ + "," + std::to_string(pos.y);
+ systems.system<TextSystem>()->put("default", 0, -24, pr);
+
+ });
}
});