Add difficulty level and start map
- game speed(cycleDurationMs) and food placement depend on difficulty level - start map would be chosen at the beginning - switching maps and game speed(cycleDurationMs) is not available during playing
This commit is contained in:
parent
b0bf7e3d62
commit
f6619d1289
@ -46,9 +46,10 @@ typedef struct tllData_t
|
|||||||
bool showEnter; // ENTER should be printed only every second cycle
|
bool showEnter; // ENTER should be printed only every second cycle
|
||||||
int inputStatus; // 1 if player name was entered; 2 if difficulty level was entered, 3 map was entered
|
int inputStatus; // 1 if player name was entered; 2 if difficulty level was entered, 3 map was entered
|
||||||
char textInput[TEXT_INPUT_SIZE]; // auxiliary variable for user input
|
char textInput[TEXT_INPUT_SIZE]; // auxiliary variable for user input
|
||||||
char userName[TEXT_INPUT_SIZE]; // user name
|
char numbers[2][TEXT_INPUT_SIZE]; // auxiliary variable to store entered textInput-number into local pointer 'textLinesInMenu' in render.c
|
||||||
int userDifficultyLevel; // difficulty level which was entered by user
|
char userName[TEXT_INPUT_SIZE]; // user name
|
||||||
int userSelectedMap; // map which was entered by user
|
int userDifficultyLevel; // difficulty level which was entered by user
|
||||||
|
int userSelectedMap; // map which was entered by user
|
||||||
} ttlData_t;
|
} ttlData_t;
|
||||||
|
|
||||||
extern ttlData_t ttlStorage;
|
extern ttlData_t ttlStorage;
|
||||||
|
@ -43,7 +43,9 @@ void gameInit()
|
|||||||
//load default map if no map loaded yet
|
//load default map if no map loaded yet
|
||||||
if (!game.mapIsLoaded){
|
if (!game.mapIsLoaded){
|
||||||
//loadMapByName("default");
|
//loadMapByName("default");
|
||||||
loadMapByName(config.defaultMapName);
|
|
||||||
|
//loadMapByName(config.defaultMapName);
|
||||||
|
loadMap(*storedMaps[ttlStorage.userSelectedMap - 1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
//----- snake -----
|
//----- snake -----
|
||||||
|
22
src/input.c
22
src/input.c
@ -52,19 +52,19 @@ void handleInput_runningState(SDL_Event event)
|
|||||||
snakeSetDir(RIGHT);
|
snakeSetDir(RIGHT);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SDLK_m: // m: cycle through maps
|
// case SDLK_m: // m: cycle through maps
|
||||||
rotateMapNext();
|
// rotateMapNext();
|
||||||
break;
|
// break;
|
||||||
|
|
||||||
case SDLK_2: // 2: speed up game by increment
|
// case SDLK_2: // 2: speed up game by increment
|
||||||
config.cycleDurationMs -= sqrt(config.cycleDurationMs) + 1;
|
// config.cycleDurationMs -= sqrt(config.cycleDurationMs) + 1;
|
||||||
if (config.cycleDurationMs < 20)
|
// if (config.cycleDurationMs < 20)
|
||||||
config.cycleDurationMs = 20;
|
// config.cycleDurationMs = 20;
|
||||||
break;
|
// break;
|
||||||
|
|
||||||
case SDLK_1: // 1: slow down game by increment
|
// case SDLK_1: // 1: slow down game by increment
|
||||||
config.cycleDurationMs += 50;
|
// config.cycleDurationMs += 50;
|
||||||
break;
|
// break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
LOGD("input: key %d is not handled in RUNNING mode\n", event.key.keysym.sym);
|
LOGD("input: key %d is not handled in RUNNING mode\n", event.key.keysym.sym);
|
||||||
|
@ -31,7 +31,7 @@ extern "C"
|
|||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
gameInit();
|
// gameInit(); is removed in menu.c
|
||||||
|
|
||||||
// Initialisiere SDL
|
// Initialisiere SDL
|
||||||
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
|
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
|
||||||
|
20
src/menu.c
20
src/menu.c
@ -186,21 +186,23 @@ void menuHandleInput(SDL_Event event){
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 1: // confirm difficulty level
|
case 1: // confirm difficulty level
|
||||||
// user input must be between 0 and 3
|
// user input must be between 1 and 3
|
||||||
if((ttlStorage.textInput[0] > '0') && (ttlStorage.textInput[0] <= '3'))
|
if((ttlStorage.textInput[0] > '0') && (ttlStorage.textInput[0] <= '3'))
|
||||||
{
|
{
|
||||||
ttlStorage.inputStatus++;
|
ttlStorage.inputStatus++;
|
||||||
ttlStorage.userDifficultyLevel = ttlStorage.textInput[0] - '\0'; // copy textInput to userDifficultyLevel
|
strcpy(ttlStorage.numbers[0], ttlStorage.textInput); // copy textInput to userDifficultyLevel
|
||||||
|
ttlStorage.userDifficultyLevel = ttlStorage.textInput[0] - '0'; // copy textInput to userDifficultyLevel
|
||||||
}
|
}
|
||||||
memset(ttlStorage.textInput, 0, sizeof(ttlStorage.textInput)); // clear textInput[]
|
memset(ttlStorage.textInput, 0, sizeof(ttlStorage.textInput)); // clear textInput[]
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2: // confirm map
|
case 2: // confirm map
|
||||||
// user input must be between 0 and 3
|
// user input must be between 1 and 3
|
||||||
if((ttlStorage.textInput[0] > '0') && (ttlStorage.textInput[0] <= '3'))
|
if((ttlStorage.textInput[0] > '0') && (ttlStorage.textInput[0] <= '3'))
|
||||||
{
|
{
|
||||||
ttlStorage.inputStatus++;
|
ttlStorage.inputStatus++;
|
||||||
ttlStorage.userSelectedMap = ttlStorage.textInput[0] - '\0'; // copy textInput to userSelectedMap
|
strcpy(ttlStorage.numbers[1], ttlStorage.textInput); // copy textInput to userSelectedMap
|
||||||
|
ttlStorage.userSelectedMap = ttlStorage.textInput[0] - '0'; // copy textInput to userSelectedMap
|
||||||
}
|
}
|
||||||
memset(ttlStorage.textInput, 0, sizeof(ttlStorage.textInput)); // clear textInput[]
|
memset(ttlStorage.textInput, 0, sizeof(ttlStorage.textInput)); // clear textInput[]
|
||||||
break;
|
break;
|
||||||
@ -213,6 +215,12 @@ void menuHandleInput(SDL_Event event){
|
|||||||
{
|
{
|
||||||
SDL_DestroyTexture(ttlStorage.textTextures[i]);
|
SDL_DestroyTexture(ttlStorage.textTextures[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// initialize game
|
||||||
|
config.difficulty = ttlStorage.userDifficultyLevel;
|
||||||
|
config.cycleDurationMs = config.cycleDurationMs / sqrt(config.difficulty);
|
||||||
|
gameInit();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
11
src/render.c
11
src/render.c
@ -225,11 +225,11 @@ void renderSettings()
|
|||||||
" ",
|
" ",
|
||||||
" ",
|
" ",
|
||||||
"Bitte geben Sie ein Schwierigkeitslevel ein:",
|
"Bitte geben Sie ein Schwierigkeitslevel ein:",
|
||||||
"1 fuer Einfach - 2 fuer Fortgeschritten - 3 fuer Profi",
|
"1 fuer Beginner - 2 fuer Fortgeschrittener - 3 fuer Profi",
|
||||||
" ",
|
" ",
|
||||||
" ",
|
" ",
|
||||||
"Bitte waehlen Sie eine Map:",
|
"Bitte waehlen Sie eine Map:",
|
||||||
"1 fuer Klein - 2 fuer Mittel - 3 fuer Gross",
|
"1 fuer Standard - 2 fuer Leer - 3 fuer Intermediate",
|
||||||
" ",
|
" ",
|
||||||
"-- ENTER --"
|
"-- ENTER --"
|
||||||
};
|
};
|
||||||
@ -306,7 +306,7 @@ void renderSettings()
|
|||||||
|
|
||||||
//=== two user inputs ===
|
//=== two user inputs ===
|
||||||
case 2:
|
case 2:
|
||||||
textLinesInMenu[8] = &(ttlStorage.userDifficultyLevel);
|
textLinesInMenu[8] = ttlStorage.numbers[0];
|
||||||
//--- rendering ---
|
//--- rendering ---
|
||||||
for (int i = 0; i < 12; ++i)
|
for (int i = 0; i < 12; ++i)
|
||||||
{
|
{
|
||||||
@ -334,7 +334,7 @@ void renderSettings()
|
|||||||
|
|
||||||
//=== user inputs completely
|
//=== user inputs completely
|
||||||
case 3:
|
case 3:
|
||||||
textLinesInMenu[12] = &(ttlStorage.userSelectedMap);
|
textLinesInMenu[12] = ttlStorage.numbers[1];
|
||||||
//--- rendering ---
|
//--- rendering ---
|
||||||
for (int i = 0; i < (MAX_LINES_SETTINGS - 1); ++i)
|
for (int i = 0; i < (MAX_LINES_SETTINGS - 1); ++i)
|
||||||
{
|
{
|
||||||
@ -450,7 +450,10 @@ void renderInfoScreen()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void renderLeaderboard()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
int CreateSDLWindow(){
|
int CreateSDLWindow(){
|
||||||
// Erstelle ein SDL-Fenster
|
// Erstelle ein SDL-Fenster
|
||||||
|
Loading…
x
Reference in New Issue
Block a user