Fix compiler errors and warnings, Cleanup main.cpp

- Remove old comments and unused code from main.cpp
- Fix the following compiler errors and warnings (compiles now):

WARNING: main.cpp:64:23: warning: comparison between ‘gameState_t’ {aka ‘enum gameState_t’} and ‘enum menus_t’ if(game.gameState == PAUSE)

WARNING: menu.c:111:9: warning: implicit declaration of function ‘renderSettings’

ERROR: multiple definitions / redefinition of 'int recordsInFile'
This commit is contained in:
jonny_l480 2023-12-22 11:40:40 +01:00
parent 04d45c7988
commit 119f9a106d
3 changed files with 9 additions and 50 deletions

View File

@ -3,7 +3,7 @@
#define MAX_PRINTED_SCORES 10
int recordsInFile;
extern int recordsInFile;
// struct that store player score at the end of the game
typedef struct playerScore_t

View File

@ -10,28 +10,15 @@ extern "C"
#include "menu.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
//1. initialize SDL window
//2. call showStartScreen
//3. initialize game
//4. main loop: processInputEvents, runGameCycle
//5. uninitialize SDL
int main(int argc, char *argv[])
{
// gameInit(); is removed in menu.c
// gameInit(); moved to menu.c
// Initialisiere SDL
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
@ -45,12 +32,9 @@ int main(int argc, char *argv[])
return 1;
}
CreateSDLWindow();
time_t now;
now = GET_TIME_MS(); // Timer startet
game.timestampLastCycle = now;
@ -61,7 +45,7 @@ int main(int argc, char *argv[])
{
manageMenu();
}
if(game.gameState == PAUSE)
if(game.gameState == PAUSED)
{
LOGI("Spielmodus: Pause\n");
}
@ -78,31 +62,6 @@ 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();

View File

@ -4,7 +4,7 @@
#include "common.h"
#include <stdio.h>
#include <math.h>
//#include <Windows.h>
#include "render.h"