snake-pp/src/main.cpp
2023-12-13 09:16:05 +01:00

96 lines
1.9 KiB
C++

#include <stdio.h>
#include <time.h>
extern "C"
{
#include "game.h"
#include "common.h"
#include "input.h"
#include "render.h"
}
//initialize SDL window
//ruft showStartScreen
//initialize game
//main loop: processInputEvents, runGameCycle
//uninitialize SDL
//==========================
//====== enabled test ======
//==========================
//uncomment one test at a time to run the corresponding code in main()
//#define TEST__FOOD_PLACEMENT
//#define TEST__SDL_INPUT
#define TEST__GAME_WITH_CONSOLE_OUTPUT
int main(int argc, char *argv[])
{
gameInit();
// Initialisiere SDL
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
printf("SDL konnte nicht initialisiert werden! SDL_Error: %s\n", SDL_GetError());
return 1;
}
CreateSDLWindow();
time_t now;
now = GET_TIME_MS(); // Timer startet
game.timestampLastCycle = now;
int diff;
while(game.gameState != EXIT) {
if (game.gameState == RUNNING) {
now = GET_TIME_MS(); // Timer startet
diff = now-game.timestampLastCycle;
if (diff > config.cycleDurationMs){
game.timestampLastCycle = now;
runGameCycle();
}
}
DELAY(5); //verhindert maximale Durchlaufgeschwindigkeit der Schleife
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();
return 0;
}