X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=score.c;h=275a35815f075a60a5cab46b6f9d96bba76a5e3b;hp=ba7d98b7518ddbac1a4513f43726bfadf14f280f;hb=7d0b15ef897d7a066998fa0a44fb7be958c60cd8;hpb=609159ad6d62af90cdbf97cbb09fffabde87a026 diff --git a/score.c b/score.c index ba7d98b..275a358 100644 --- a/score.c +++ b/score.c @@ -1,14 +1,17 @@ +/* + * 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 + */ #include #include "advent.h" #include "dungeon.h" -/* - * scoring and wrap-up - */ - static int mxscor; /* ugh..the price for having score() not exit. */ -long score(enum termination mode) +int score(enum termination mode) /* mode is 'scoregame' if scoring, 'quitgame' if quitting, 'endgame' if died * or won */ { @@ -113,14 +116,14 @@ long score(enum termination mode) void terminate(enum termination mode) /* End of game. Let's tell him all about it. */ { - long points = score(mode); + int points = score(mode); if (points + game.trnluz + 1 >= mxscor && game.trnluz != 0) rspeak(TOOK_LONG); if (points + game.saved + 1 >= mxscor && game.saved != 0) rspeak(WITHOUT_SUSPENDS); rspeak(TOTAL_SCORE, points, mxscor, game.turns, game.turns); - for (long i = 1; i <= (long)NCLASSES; i++) { + for (int i = 1; i <= (int)NCLASSES; i++) { if (classes[i].threshold >= points) { speak(classes[i].message); i = classes[i].threshold + 1 - points;