replaced final score with net worth instead of out of 100

closes #5
This commit is contained in:
Rudis Muiznieks 2022-06-21 20:37:52 -05:00
parent c0937fed08
commit cd55de5ce0
Signed by: rudism
GPG Key ID: CABF2F86EF7884F9
1 changed files with 11 additions and 9 deletions

View File

@ -158,7 +158,7 @@ void loop() {
font3x5.print(F("v1.1.1"));
menu[0] = F("Hit the Streets");
menu[1] = F("Extended Game");
//menu[2] = F("High Scores");
// menu[2] = F("High Scores");
menuLength = 2;
menuSmall = true;
menuCols = false;
@ -353,17 +353,19 @@ void loop() {
break;
case STATE_GAME_OVER: {
int score = floor(sqrt((pSavingsAmount + pMoney - pLoanAmount) / 31.5));
if (score > 100) score = 100;
dialog[0] = "";
dialog[1] = " Game over!";
dialog[2] = " Your score: ";
dialog[2] += String(score);
dialog[3] = " out of 100.";
dialog[0] = "Game over! Score:";
dialogSmall = false;
dialogLength = 4;
dialogLength = 1;
sPreviousGameState = STATE_TITLE;
pMoney += pSavingsAmount - pLoanAmount;
for (int i = 0; i < 6; i++) {
pMoney += pInventory[i] * sDrugPrices[i];
}
if (pMoney < 0) {
pMoney = 0;
}
drawDialog();
drawMoney(10, 20, pMoney);
break;
}