Fix delay after crash (play crash sound async)

This commit is contained in:
jonny_l480 2023-12-18 14:13:42 +01:00 committed by Hanse-14
parent 747b949218
commit 4ea40d99d2
2 changed files with 6 additions and 7 deletions

View File

@ -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;
}
@ -134,7 +133,7 @@ void runGameCycle()
// NOTE: order of place and grow is relevant, otherwise function in food.c will access invalid memory
placeFood();
snakeGrow();
}
}
//--- update frame ---
renderGame();

View File

@ -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);