Minor fixes
This commit is contained in:
parent
f6619d1289
commit
7acb37824e
@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "snake.h"
|
||||
#include "config.h"
|
||||
@ -31,10 +32,20 @@ typedef struct gameData_t
|
||||
gameState_t gameState; // state the game is in
|
||||
} gameData_t;
|
||||
|
||||
|
||||
// struct that store player score at the end of the game
|
||||
typedef struct playerScore_t
|
||||
{
|
||||
int score;
|
||||
char playerName[30];
|
||||
int difficulty;
|
||||
char map[30];
|
||||
} playerScore_t;
|
||||
|
||||
|
||||
// global struct for storing all game data (defined in game.c)
|
||||
extern gameData_t game;
|
||||
|
||||
|
||||
// run once at game start and does the following:
|
||||
// - init snake
|
||||
// - load map
|
||||
@ -51,3 +62,6 @@ void handlePortals(); //(ran in gameCycle)
|
||||
// - handles collision, portals, food
|
||||
// - triggers frame update (render.c)
|
||||
void runGameCycle();
|
||||
|
||||
// function which saves score in a .csv file
|
||||
// void savePlayerScore()
|
@ -56,12 +56,13 @@ extern ttlData_t ttlStorage;
|
||||
|
||||
extern menus_t activeMenu;
|
||||
|
||||
|
||||
|
||||
|
||||
// edit various menus
|
||||
// is called up in main.cpp
|
||||
void manageMenu();
|
||||
|
||||
|
||||
|
||||
void showStartScreen();
|
||||
//zum Starten Enter drücken
|
||||
//optional: "E" eingeben für Settings
|
||||
|
35
src/game.c
35
src/game.c
@ -111,6 +111,7 @@ void runGameCycle()
|
||||
// TODO consider game.lifesRemaining and reset if still good?
|
||||
LOGI("game: collided with wall or self! => show leaderboard\n");
|
||||
//game.gameState = MENU; //TODO add config.collisionEnabled option?
|
||||
//savePlayerScore(/*(game.snake.length - config.snakeDefaultLength), ttlStorage.userName, config.difficulty, *storedMaps[ttlStorage.userSelectedMap - 1]*/);
|
||||
showLeaderboard();
|
||||
return;
|
||||
}
|
||||
@ -135,3 +136,37 @@ void runGameCycle()
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
//==========================
|
||||
//==== savePlayerScores ====
|
||||
//==========================
|
||||
// void savePlayerScore(/*int score, int difficulty, const char *playerName, const char *map*/)
|
||||
// {
|
||||
// // playerScore_t playerScore;
|
||||
|
||||
// // // copy data into struct
|
||||
// // playerScore.score = game.snake.length - config.snakeDefaultLength;
|
||||
// // playerScore.difficulty = config.difficulty;
|
||||
// // strcpy(playerScore.playerName, ttlStorage.userName);
|
||||
// // strcpy(playerScore.map, "testmap");
|
||||
|
||||
|
||||
// // FILE *file;
|
||||
// // // open file
|
||||
// // file = fopen("../player_scores.bin", "ab");
|
||||
|
||||
// // // write data in file
|
||||
// // if (file != NULL)
|
||||
// // {
|
||||
// // fwrite(&playerScore, sizeof(playerScore_t), 1, file);
|
||||
// // fclose(file);
|
||||
|
||||
// // LOGI("Spielergebnis wurde erfolgreich in die Binärdatei gespeichert.\n");
|
||||
// // }
|
||||
// // else
|
||||
// // {
|
||||
// // LOGI("Fehler beim Öffnen der Datei!\n");
|
||||
// // }
|
||||
// }
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <math.h>
|
||||
|
||||
#include "render.h"
|
||||
#include "input.h"
|
||||
#include "common.h"
|
||||
#include "SDL.h"
|
||||
|
@ -3,6 +3,7 @@
|
||||
#include "sound.h"
|
||||
#include "common.h"
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
//#include <Windows.h>
|
||||
|
||||
|
||||
@ -56,6 +57,7 @@ void manageMenu()
|
||||
|
||||
// shows start screen with blinking ENTER
|
||||
void showStartScreen()
|
||||
|
||||
{
|
||||
LOGD("menu: showing start-screen\n");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user