Test: clocks_per_sec
This commit is contained in:
parent
5c99e2ac79
commit
aa242676e9
30
src/main.cpp
30
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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user