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:
parent
04d45c7988
commit
119f9a106d
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#define MAX_PRINTED_SCORES 10
|
#define MAX_PRINTED_SCORES 10
|
||||||
|
|
||||||
int recordsInFile;
|
extern int recordsInFile;
|
||||||
|
|
||||||
// struct that store player score at the end of the game
|
// struct that store player score at the end of the game
|
||||||
typedef struct playerScore_t
|
typedef struct playerScore_t
|
||||||
|
55
src/main.cpp
55
src/main.cpp
@ -10,28 +10,15 @@ extern "C"
|
|||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
}
|
}
|
||||||
|
|
||||||
//initialize SDL window
|
//1. initialize SDL window
|
||||||
//ruft showStartScreen
|
//2. call showStartScreen
|
||||||
//initialize game
|
//3. initialize game
|
||||||
//main loop: processInputEvents, runGameCycle
|
//4. main loop: processInputEvents, runGameCycle
|
||||||
//uninitialize SDL
|
//5. 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[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
// gameInit(); is removed in menu.c
|
// gameInit(); moved to menu.c
|
||||||
|
|
||||||
// Initialisiere SDL
|
// Initialisiere SDL
|
||||||
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
|
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
|
||||||
@ -45,12 +32,9 @@ int main(int argc, char *argv[])
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
CreateSDLWindow();
|
CreateSDLWindow();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
time_t now;
|
time_t now;
|
||||||
now = GET_TIME_MS(); // Timer startet
|
now = GET_TIME_MS(); // Timer startet
|
||||||
game.timestampLastCycle = now;
|
game.timestampLastCycle = now;
|
||||||
@ -61,7 +45,7 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
manageMenu();
|
manageMenu();
|
||||||
}
|
}
|
||||||
if(game.gameState == PAUSE)
|
if(game.gameState == PAUSED)
|
||||||
{
|
{
|
||||||
LOGI("Spielmodus: Pause\n");
|
LOGI("Spielmodus: Pause\n");
|
||||||
}
|
}
|
||||||
@ -78,31 +62,6 @@ int main(int argc, char *argv[])
|
|||||||
processInputEvent();
|
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();
|
DestroySDLWindow();
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
//#include <Windows.h>
|
#include "render.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user