Fix delay after crash (play crash sound async)
This commit is contained in:
parent
747b949218
commit
4ea40d99d2
11
src/game.c
11
src/game.c
@ -108,18 +108,17 @@ void runGameCycle()
|
|||||||
//--- handle collision ---
|
//--- handle collision ---
|
||||||
//collision with map object or snake tail
|
//collision with map object or snake tail
|
||||||
if (checkCollides(game.map, game.snake.headX, game.snake.headY) || !snakeIsAlive()){
|
if (checkCollides(game.map, game.snake.headX, game.snake.headY) || !snakeIsAlive()){
|
||||||
// show leaderboard when collided
|
|
||||||
// TODO consider game.lifesRemaining and reset if still good?
|
// TODO consider game.lifesRemaining and reset if still good?
|
||||||
|
//--- play crash sound ---
|
||||||
LOGI("game: collided with wall or self! => show leaderboard\n");
|
LOGI("game: collided with wall or self! => show leaderboard\n");
|
||||||
|
playSound("../sounds/crash_rock-cinematic.wav", false);
|
||||||
|
DELAY(200);
|
||||||
|
//--- leaderboard ---
|
||||||
//game.gameState = MENU; //TODO add config.collisionEnabled option?
|
//game.gameState = MENU; //TODO add config.collisionEnabled option?
|
||||||
savePlayerScore("../build/player_scores.bin"/*(game.snake.length - config.snakeDefaultLength), ttlStorage.userName, config.difficulty, *storedMaps[ttlStorage.userSelectedMap - 1]*/);
|
savePlayerScore("../build/player_scores.bin"/*(game.snake.length - config.snakeDefaultLength), ttlStorage.userName, config.difficulty, *storedMaps[ttlStorage.userSelectedMap - 1]*/);
|
||||||
readTopScores("../build/player_scores.bin");
|
readTopScores("../build/player_scores.bin");
|
||||||
game.gameState = MENU;
|
game.gameState = MENU;
|
||||||
activeMenu = LEADERBOARD;
|
activeMenu = LEADERBOARD;
|
||||||
|
|
||||||
// cut out of showLeaderboard()
|
|
||||||
playSound("../sounds/crash_rock-cinematic.wav", true);
|
|
||||||
DELAY(100);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -134,7 +133,7 @@ void runGameCycle()
|
|||||||
// NOTE: order of place and grow is relevant, otherwise function in food.c will access invalid memory
|
// NOTE: order of place and grow is relevant, otherwise function in food.c will access invalid memory
|
||||||
placeFood();
|
placeFood();
|
||||||
snakeGrow();
|
snakeGrow();
|
||||||
}
|
}
|
||||||
|
|
||||||
//--- update frame ---
|
//--- update frame ---
|
||||||
renderGame();
|
renderGame();
|
||||||
|
@ -533,7 +533,7 @@ void renderLeaderboard()
|
|||||||
// difficulty
|
// difficulty
|
||||||
SDL_Surface *difficultySurface = NULL;
|
SDL_Surface *difficultySurface = NULL;
|
||||||
char numberDifficulty[30]; // buffer for number 'difficulty'
|
char numberDifficulty[30]; // buffer for number 'difficulty'
|
||||||
snprintf(numberDifficulty, sizeof(numberDifficulty), "%d", topScores->difficulty);
|
snprintf(numberDifficulty, sizeof(numberDifficulty), "%d", topScores[i].difficulty);
|
||||||
difficultySurface = TTF_RenderText_Solid(ttlStorage.ptrFont_30, numberDifficulty, ttlStorage.textColour[5]);
|
difficultySurface = TTF_RenderText_Solid(ttlStorage.ptrFont_30, numberDifficulty, ttlStorage.textColour[5]);
|
||||||
SDL_Texture *numberTexture2 = SDL_CreateTextureFromSurface(game.renderer, difficultySurface);
|
SDL_Texture *numberTexture2 = SDL_CreateTextureFromSurface(game.renderer, difficultySurface);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user