Quit game when collided
This commit is contained in:
parent
eac493e412
commit
5cd0f41123
@ -93,9 +93,9 @@ void runGameCycle()
|
|||||||
// TODO consider game.lifesRemaining and reset if still good?
|
// TODO consider game.lifesRemaining and reset if still good?
|
||||||
LOGI("game: collided with wall or self! => show leaderboard\n");
|
LOGI("game: collided with wall or self! => show leaderboard\n");
|
||||||
LOGI("DEBUG: collision currently disabled, game will continue in 1s...\n");
|
LOGI("DEBUG: collision currently disabled, game will continue in 1s...\n");
|
||||||
DELAY(1000);
|
DELAY(800);
|
||||||
//game.gameState = MENU; //TODO add config.collisionEnabled option?
|
//game.gameState = MENU; //TODO add config.collisionEnabled option?
|
||||||
//showLeaderboard();
|
showLeaderboard();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,10 +8,12 @@ void showStartScreen(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
void showLeaderboard(){
|
void showLeaderboard(){
|
||||||
|
game.gameState = EXIT;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
void showPauseScreen(){
|
void showPauseScreen(){
|
||||||
|
game.gameState = PAUSED;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user