X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=score.c;h=c0a0277b36afd4f5d1f2e0c2d26f6665eba39c52;hb=9e9731d59b79a1a7c4bd4583d621ec125849220a;hp=7e6b28c26ae9ee02a96f3d596983f39a6abae393;hpb=9a1b4d021e360c48e3fb885a9975077063f8e012;p=open-adventure.git diff --git a/score.c b/score.c index 7e6b28c..c0a0277 100644 --- a/score.c +++ b/score.c @@ -1,9 +1,9 @@ /* * 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: 1977, 2005 by Will Crowther and Don Woods + * SPDX-FileCopyrightText: 2017 by Eric S. Raymond + * SPDX-License-Identifier: BSD-2-Clause */ #include #include "advent.h" @@ -48,9 +48,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 +86,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 +96,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 +117,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);