Spielzyklus in main mit GET_TIME_MS() realisiert

This commit is contained in:
Julia09055x 2023-12-13 09:16:05 +01:00
parent aaf4eb398a
commit eac493e412

View File

@ -44,14 +44,16 @@ int main(int argc, char *argv[])
time_t now; time_t now;
now = clock()*1000/CLOCKS_PER_SEC; // Timer startet now = GET_TIME_MS(); // Timer startet
game.timestampLastCycle = now; game.timestampLastCycle = now;
int diff;
while(game.gameState != EXIT) { while(game.gameState != EXIT) {
if (game.gameState == RUNNING) { if (game.gameState == RUNNING) {
now = clock()*1000/CLOCKS_PER_SEC; // Timer startet now = GET_TIME_MS(); // Timer startet
diff = now-game.timestampLastCycle;
if (now - game.timestampLastCycle > config.cycleDurationMs){ if (diff > config.cycleDurationMs){
game.timestampLastCycle = now; game.timestampLastCycle = now;
runGameCycle(); runGameCycle();
} }