X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=score.c;h=1c9a397fe64b6771dbb17675a00ff9721a552f33;hb=258b7703f22045be1b6e9fb74bd3391ed94ed86b;hp=4331f7f93bfecd6485eaa71e2c8fef1730a71c8e;hpb=20859304c0e13f4d7a61835fb6912735d98cd3b2;p=open-adventure.git diff --git a/score.c b/score.c index 4331f7f..1c9a397 100644 --- a/score.c +++ b/score.c @@ -1,9 +1,8 @@ /* * Scoring and wrap-up. * - * Copyright (c) 1977, 2005 by Will Crowther and Don Woods - * Copyright (c) 2017 by Eric S. Raymond - * SPDX-License-Identifier: BSD-2-clause + * SPDX-FileCopyrightText: (C) 1977, 2005 by Will Crowther and Don Woods + * SPDX-License-Identifier: BSD-2-Clause */ #include #include "advent.h" @@ -48,9 +47,9 @@ int score(enum termination mode) k = 14; if (i > CHEST) k = 16; - if (game.prop[i] > STATE_NOTFOUND) + if (!PROP_IS_STASHED(i) && !PROP_IS_NOTFOUND(i)) score += 2; - if (game.place[i] == LOC_BUILDING && game.prop[i] == STATE_FOUND) + if (game.objects[i].place == LOC_BUILDING && PROP_IS_FOUND(i)) score += k - 2; mxscor += k; } @@ -86,7 +85,7 @@ int score(enum termination mode) mxscor += 45; /* Did he come to Witt's End as he should? */ - if (game.place[MAGAZINE] == LOC_WITTSEND) + if (game.objects[MAGAZINE].place == LOC_WITTSEND) score += 1; mxscor += 1; @@ -96,7 +95,7 @@ int score(enum termination mode) /* Deduct for hints/turns/saves. Hints < 4 are special; see database desc. */ for (int i = 0; i < NHINTS; i++) { - if (game.hinted[i]) + if (game.hints[i].used) score = score - hints[i].penalty; } if (game.novice) @@ -117,6 +116,9 @@ void terminate(enum termination mode) /* End of game. Let's tell him all about it. */ { int points = score(mode); +#if defined ADVENT_AUTOSAVE + autosave(); +#endif if (points + game.trnluz + 1 >= mxscor && game.trnluz != 0) rspeak(TOOK_LONG); @@ -126,13 +128,16 @@ void terminate(enum termination mode) for (int i = 1; i <= (int)NCLASSES; i++) { if (classes[i].threshold >= points) { speak(classes[i].message); - int nxt = classes[i].threshold + 1 - points; - rspeak(NEXT_HIGHER, nxt, nxt); + if (i < (int)NCLASSES) { + int nxt = classes[i].threshold + 1 - points; + rspeak(NEXT_HIGHER, nxt, nxt); + } else { + rspeak(NO_HIGHER); + } exit(EXIT_SUCCESS); } } rspeak(OFF_SCALE); - rspeak(NO_HIGHER); exit(EXIT_SUCCESS); }