From aa242676e9a6ccbc6260aa10a2b2f65819f096dd Mon Sep 17 00:00:00 2001 From: Julia09055x Date: Tue, 12 Dec 2023 16:35:12 +0100 Subject: [PATCH] Test: clocks_per_sec --- src/main.cpp | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 7e8d1b2..6c8f12c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -44,12 +44,12 @@ int main(int argc, char *argv[]) time_t now; - now = clock(); // Timer startet + now = clock()*1000/CLOCKS_PER_SEC; // Timer startet game.timestampLastCycle = now; while(game.gameState != EXIT) { if (game.gameState == RUNNING) { - now = clock(); // Timer startet + now = clock()*1000/CLOCKS_PER_SEC; // Timer startet if (now - game.timestampLastCycle > config.cycleDurationMs){ game.timestampLastCycle = now; @@ -60,6 +60,32 @@ int main(int argc, char *argv[]) processInputEvent(); } +/* time_t t; + + long long ms = time(NULL) *1000; + game.timestampLastCycle = ms; + + printf("timestamp: %lld",game.timestampLastCycle); + printf("ms: %lld",ms); + + while(game.gameState != EXIT) { + if (game.gameState == RUNNING) { + ms = time(NULL) *1000; // Timer startet + + printf("ms2: %lld", ms); + + if (ms - game.timestampLastCycle > config.cycleDurationMs){ + + game.timestampLastCycle = ms; + runGameCycle(); + } + } + DELAY(5); //verhindert maximale Durchlaufgeschwindigkeit der Schleife + processInputEvent(); + }*/ + + + DestroySDLWindow(); SDL_Quit();