Spielzyklus in main mit GET_TIME_MS() realisiert
This commit is contained in:
parent
aaf4eb398a
commit
eac493e412
@ -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();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user