Fix delay after crash (play crash sound async)
This commit is contained in:
parent
747b949218
commit
4ea40d99d2
@ -108,18 +108,17 @@ void runGameCycle()
|
||||
//--- handle collision ---
|
||||
//collision with map object or snake tail
|
||||
if (checkCollides(game.map, game.snake.headX, game.snake.headY) || !snakeIsAlive()){
|
||||
// show leaderboard when collided
|
||||
// TODO consider game.lifesRemaining and reset if still good?
|
||||
//--- play crash sound ---
|
||||
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?
|
||||
savePlayerScore("../build/player_scores.bin"/*(game.snake.length - config.snakeDefaultLength), ttlStorage.userName, config.difficulty, *storedMaps[ttlStorage.userSelectedMap - 1]*/);
|
||||
readTopScores("../build/player_scores.bin");
|
||||
game.gameState = MENU;
|
||||
activeMenu = LEADERBOARD;
|
||||
|
||||
// cut out of showLeaderboard()
|
||||
playSound("../sounds/crash_rock-cinematic.wav", true);
|
||||
DELAY(100);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -533,7 +533,7 @@ void renderLeaderboard()
|
||||
// difficulty
|
||||
SDL_Surface *difficultySurface = NULL;
|
||||
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]);
|
||||
SDL_Texture *numberTexture2 = SDL_CreateTextureFromSurface(game.renderer, difficultySurface);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user