Add tests, Disable collision - Game runs in console!

currently starts SDL window and repeatedly renders the game to console.
The snake can be controlled with arrow-keys while the SDL-window is focused.

main: add 3 test sections for testing certain functions that can be enabled using a macro variable
game.c: temporarily disable collision, otherwise confusing state because main and menu not implemented yet.
This commit is contained in:
jonny_jr9 2023-12-03 22:16:55 +01:00
parent 6b29f1360f
commit ad1dd7f5c3
2 changed files with 65 additions and 5 deletions

View File

@ -92,8 +92,10 @@ void runGameCycle()
// show leaderboard when collided
// TODO consider game.lifesRemaining and reset if still good?
LOGI("game: collided with wall or self! => show leaderboard\n");
game.gameState = MENU;
showLeaderboard();
LOGI("DEBUG: collision currently disabled, game will continue in 1s...\n");
DELAY(1000);
//game.gameState = MENU; //TODO add config.collisionEnabled option?
//showLeaderboard();
return;
}
@ -108,7 +110,7 @@ void runGameCycle()
}
//--- update frame ---
renderGame();
//printMap(game.map); (render game to console)
//renderGame();
printMap(game.map); //render game to console
return;
}

View File

@ -2,6 +2,9 @@
extern "C" {
#include "food.h"
#include "game.h"
#include "input.h"
#include "render.h"
}
//initialize SDL window
@ -11,8 +14,30 @@ extern "C" {
//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();
#ifdef TEST__FOOD_PLACEMENT
// --- test food.c ---
startFoodPlacementTest();
#endif
SDL_Init(SDL_INIT_VIDEO);
SDL_Window *window = SDL_CreateWindow(
@ -29,7 +54,40 @@ int main(int argc, char *argv[])
SDL_RenderClear(renderer);
SDL_RenderPresent(renderer);
SDL_Delay(1000);
#ifdef TEST__GAME_WITH_CONSOLE_OUTPUT
// --- test game with render to console ---
game.gameState = RUNNING;
while (game.gameState != EXIT)
{
processInputEvent();
SDL_Delay(600);
processInputEvent();
runGameCycle();
}
#endif
#ifdef TEST__SDL_INPUT
// --- test input.c ---
game.gameState = RUNNING;
while (game.gameState != EXIT)
{
processInputEvent();
SDL_Delay(100);
}
#endif
SDL_Delay(500);
SDL_DestroyWindow(window);
SDL_Quit();