From 5bba3e15311d8cc31b8aa2c1f3176561aa09373e Mon Sep 17 00:00:00 2001 From: jonny_jr9 Date: Wed, 8 Nov 2023 09:52:25 +0100 Subject: [PATCH] Add source files, Fix header files - Compiles now - Add empty source files for all planned modules - Add source files to CMAKE source list - Fix and extend header files so there are no errors - Create global structs in game.c and config.c --- CMakeLists.txt | 19 ++++++++++----- config.c | 4 ++++ config.h | 26 +++++++++++++------- food.c | 4 ++-- food.h | 4 ++-- game.c | 4 ++++ game.h | 55 ++++++++++++++++++++++++++----------------- input.c | 1 + keyboard.h => input.h | 0 main.cpp | 9 +++++-- menu.c | 1 + menu.h | 4 +++- render.c | 1 + render.h | 4 +++- snake.c | 1 + snake.h | 51 +++++++++++++++++++++++---------------- 16 files changed, 125 insertions(+), 63 deletions(-) create mode 100644 config.c create mode 100644 game.c create mode 100644 input.c rename keyboard.h => input.h (100%) create mode 100644 menu.c create mode 100644 render.c create mode 100644 snake.c diff --git a/CMakeLists.txt b/CMakeLists.txt index ee17238..225631b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,13 +26,20 @@ include_directories(${SDL2_INCLUDE_DIRS} ./) # --- Source files --- -# Note: When new files are added, CMake has to be re-run -# Alternatively, list files manually here -file(GLOB SOURCES - "*.cpp" - "*.c" +# Add all used source files here: +set(SOURCES + main.cpp + config.c + food.c + game.c + input.c + menu.c + render.c + snake.c ) -add_executable(Snake main.cpp food.c) + + +add_executable(Snake ${SOURCES}) target_link_libraries(Snake ${SDL2_LIBRARIES}) diff --git a/config.c b/config.c new file mode 100644 index 0000000..658f531 --- /dev/null +++ b/config.c @@ -0,0 +1,4 @@ +#include "config.h" + +//global config struct +config_t config; \ No newline at end of file diff --git a/config.h b/config.h index 23e1e02..9783e5b 100644 --- a/config.h +++ b/config.h @@ -1,8 +1,18 @@ - struct config_t{ - int mapWidth; // =10 //Kartenbreite - int mapHeight; // =10 //Kartenhöhe - int cycleDurationMs; //ms between each game loop iterartion (game speed) - int difficulty; //0-3 //Schwierigkeitsgrad - int snakeDefaultLength; // = 2 //Länge der Schlange - const char *leaderboardFilename; //Dateiname des Leaderboards - } +#pragma once + +// global configuration macros +#define MAX_MAP_SIZE 10 + +// struct for storing game configuration +typedef struct config_t +{ + int mapWidth; // =10 //Kartenbreite + int mapHeight; // =10 //Kartenhöhe + int cycleDurationMs; // ms between each game loop iterartion (game speed) + int difficulty; // 0-3 //Schwierigkeitsgrad + int snakeDefaultLength; // = 2 //Länge der Schlange + const char *leaderboardFilename; // Dateiname des Leaderboards +} config_t; + +// global config struct defined in config.c +extern config_t config; diff --git a/food.c b/food.c index bd7cdf1..5a0c00f 100644 --- a/food.c +++ b/food.c @@ -1,12 +1,12 @@ #include "food.h" -//platziert zufällig (mit bestimmtem Algorithmus) Fressen auf dem Spielfeld +// platziert zufällig (mit bestimmtem Algorithmus) Fressen auf dem Spielfeld void placeFood(int count) { return; } -//Überprüft, ob Snake gefressen hat +// Überprüft, ob Snake gefressen hat void ckeckEaten() { return; diff --git a/food.h b/food.h index a5a9d76..53dfbbd 100644 --- a/food.h +++ b/food.h @@ -1,5 +1,5 @@ void placeFood(int cnt); -//platziert zufällig (mit bestimmtem Algorithmus) Fressen auf dem Spielfeld +// platziert zufällig (mit bestimmtem Algorithmus) Fressen auf dem Spielfeld void ckeckEaten(); -//Überprüft, ob Snake gefressen hat \ No newline at end of file +// Überprüft, ob Snake gefressen hat \ No newline at end of file diff --git a/game.c b/game.c new file mode 100644 index 0000000..04ed9fd --- /dev/null +++ b/game.c @@ -0,0 +1,4 @@ +#include "game.h" + +// global struct for storing all game data +gameData_t game; \ No newline at end of file diff --git a/game.h b/game.h index 977899a..6f4be92 100644 --- a/game.h +++ b/game.h @@ -1,33 +1,46 @@ -typedef enum gameState_t {PAUSED=0, MENU, RUNNING}; +#include -struct gameData_t{ +#include "snake.h" +#include "config.h" + +typedef enum gameState_t +{ + PAUSED = 0, + MENU, + RUNNING +} gameState_t; + +typedef struct gameData_t +{ snake_t snake; - int mapCollisions[int MAX_MAP_SIZE][int MAX_MAP_SIZE]; //Position der Wände - int mapPortals [int MAX_MAP_SIZE][int MAX_MAP_SIZE]; //Position der Portale + int mapCollisions[MAX_MAP_SIZE][MAX_MAP_SIZE]; // Position der Wände + int mapPortals[MAX_MAP_SIZE][MAX_MAP_SIZE]; // Position der Portale - int foodX, foodY; //Positon des Futters (es gibt immer nur 1 Futter) - int lifesRemaining; //implementieren wir nicht!! + int foodX, foodY; // Positon des Futters (es gibt immer nur 1 Futter) + int lifesRemaining; // implementieren wir nicht!! int timestampLastRun; bool isPaused; gameState_t gameState; -} +} gameData_t; + +// global struct for storing all game data (defined in game.c) +extern gameData_t game; void gameInit(); -//ruft snakeInit auf -//ruft place Food auf +// ruft snakeInit auf +// ruft place Food auf void handleCollision(); -//Überprüft, ob Snake mit Gegenstand/Wand kollidiert ist +// Überprüft, ob Snake mit Gegenstand/Wand kollidiert ist -void handlePortals(); //optional -//Prüft, ob Snake sich auf einem Portal befindet - -void gameLoop(); -//macht immer: handleKeyboardEvents(); -//if TickDue: Snakemove(), TickTimerReset -//optional: ruft checkCollision auf -//ruft place food auf -//ruft checkEaten auf -//if checkEaten then snakeGrow -//ruft snakeMove auf +void handlePortals(); // optional +// Prüft, ob Snake sich auf einem Portal befindet +void runGameCycle(); +// macht immer: handleKeyboardEvents(); +// if TickDue: Snakemove(), TickTimerReset +// optional: ruft checkCollision auf +// ruft place food auf +// ruft checkEaten auf +// if checkEaten then snakeGrow +// ruft snakeMove auf diff --git a/input.c b/input.c new file mode 100644 index 0000000..dc1f57b --- /dev/null +++ b/input.c @@ -0,0 +1 @@ +#include "input.h" \ No newline at end of file diff --git a/keyboard.h b/input.h similarity index 100% rename from keyboard.h rename to input.h diff --git a/main.cpp b/main.cpp index aeccdea..3267cf7 100644 --- a/main.cpp +++ b/main.cpp @@ -1,5 +1,9 @@ #include "SDL.h" +extern "C" { +#include "food.h" +} + //initialize SDL window //ruft gameInit auf //uninitialize SDL @@ -23,10 +27,11 @@ int main(int argc, char *argv[]) SDL_RenderClear(renderer); SDL_RenderPresent(renderer); - SDL_Delay(3000); + SDL_Delay(1000); SDL_DestroyWindow(window); SDL_Quit(); - + + placeFood(3); return 0; } diff --git a/menu.c b/menu.c new file mode 100644 index 0000000..b8d27bb --- /dev/null +++ b/menu.c @@ -0,0 +1 @@ +#include "menu.h" \ No newline at end of file diff --git a/menu.h b/menu.h index e3d0c8f..a54b98f 100644 --- a/menu.h +++ b/menu.h @@ -1,4 +1,4 @@ -void startScreen(); +void showStartScreen(); //zum Starten Enter drücken //optional: "E" eingeen für Settings @@ -10,3 +10,5 @@ void menuNavigate(); void showSettings(); //optional //Menü zum Auswählen über Tastaturbefehle + +void menuHandleInput(); diff --git a/render.c b/render.c new file mode 100644 index 0000000..e600bc0 --- /dev/null +++ b/render.c @@ -0,0 +1 @@ +#include "render.h" diff --git a/render.h b/render.h index 86dc0ac..51e2ab3 100644 --- a/render.h +++ b/render.h @@ -1,2 +1,4 @@ -void renderGame(struct game, struct snake); +#include "game.h" +#include "snake.h" +void renderGame(gameData_t game, snake_t snake); //erstellt aus Spielfeldstruktur die graphische Anzeige mit SDL-Framework \ No newline at end of file diff --git a/snake.c b/snake.c new file mode 100644 index 0000000..57188ca --- /dev/null +++ b/snake.c @@ -0,0 +1 @@ +#include "snake.h" \ No newline at end of file diff --git a/snake.h b/snake.h index 9714fd8..e80c55c 100644 --- a/snake.h +++ b/snake.h @@ -1,32 +1,43 @@ -typedef enum SnakeDirection{DOWN=0, UP, LEFT, RIGHT}; //Bewegungsrichtung +#pragma once +#include -struct snake_t { - int length; //aktuelle Länge der Schlange - int headX, headY; //aktuelle Position der Schlange +typedef enum snakeDirection_t +{ + DOWN = 0, + UP, + LEFT, + RIGHT +} snakeDirection_t; // Bewegungsrichtung + +typedef struct snake_t +{ + int length; // aktuelle Länge der Schlange + int headX; + int headY; // aktuelle Position der Schlange snakeDirection_t direction; - int tail[512][2] ={0}; - bool isAlive; //lebt die Schlange noch oder ist sie mit sich selbst kollidiert? -} + int tail[512][2]; + bool isAlive; // lebt die Schlange noch oder ist sie mit sich selbst kollidiert? +} snake_t; void snakeInit(); -//Snake mit bestimmter Startlänge an Startposition erstellen -//Speicherbereich reservieren +// Snake mit bestimmter Startlänge an Startposition erstellen +// Speicherbereich reservieren -void snakegrow(); -//Snake wird um 1 Glied länger (nach Fressen) +void snakeGrow(); +// Snake wird um 1 Glied länger (nach Fressen) void snakeMove(); -//bewegt die Schlang einen Schritt in die aktuelle Richtung -//ruft lokale Variable dir von snakeSetDir auf +// bewegt die Schlang einen Schritt in die aktuelle Richtung +// ruft lokale Variable dir von snakeSetDir auf -void snakeSetDir(enum dir); //Richtung als Übergabeparameter -//definiert aktuelle Bewegungsrichtung der Schlange +void snakeSetDir(snakeDirection_t dir); // Richtung als Übergabeparameter +// definiert aktuelle Bewegungsrichtung der Schlange bool snakeIsAlive(); -//Überprüfen, ob Schlange noch lebt -//Prüft Kollision mit sich selbst +// Überprüfen, ob Schlange noch lebt +// Prüft Kollision mit sich selbst -void snakeSetHeadPos(); //optional -//für handlePortals -//generiert zufällige Zielsposition, wohin sich die Schlange nach Betreten eines Portals bewegt \ No newline at end of file +void snakeSetHeadPos(); // optional +// für handlePortals +// generiert zufällige Zielsposition, wohin sich die Schlange nach Betreten eines Portals bewegt \ No newline at end of file