X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2Fapp.cpp;h=0e2a639f21053ad234353424efef7a2fd2383bd9;hb=c973988ad1c45333a8c280820b2d7a8d71e088d8;hp=610f995c135a68cf221595652cfe044400a62706;hpb=57f4a76edbfd6c2b6077047e9fba31788d161b44;p=blank.git diff --git a/src/app/app.cpp b/src/app/app.cpp index 610f995..0e2a639 100644 --- a/src/app/app.cpp +++ b/src/app/app.cpp @@ -18,6 +18,7 @@ #include "../world/Entity.hpp" #include +#include #include #include #include @@ -63,6 +64,12 @@ void Application::RunT(size_t t) { void Application::RunS(size_t n, size_t t) { for (size_t i = 0; HasState() && i < n; ++i) { Loop(t); + std::cout << '.'; + if (i % 16 == 15) { + std::cout << std::setfill(' ') << std::setw(5) << std::right << (i + 1) << std::endl; + } else { + std::cout << std::flush; + } } }