From 27383bcfbfd79693c79920fdc424f68e3caaa4d2 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 18 Apr 2021 22:41:17 -0400 Subject: Allow cumulative score games --- play.c | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 52 insertions(+), 7 deletions(-) diff --git a/play.c b/play.c index a9dcc34..3c5f418 100644 --- a/play.c +++ b/play.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018 C. McEnroe +/* Copyright (C) 2018, 2021 C. McEnroe * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -81,6 +81,26 @@ static size_t scoresInsert(struct Score new) { return ScoresLen; } +static size_t scoresAccum(struct Score acc) { + if (!acc.score) return ScoresLen; + for (size_t i = 0; i < ScoresLen; ++i) { + if (strcmp(scores[i].name, acc.name)) continue; + scores[i].date = acc.date; + scores[i].score += acc.score; + while (i && scores[i-1].score < scores[i].score) { + acc = scores[i]; + scores[i] = scores[i-1]; + scores[--i] = acc; + } + return i; + } + size_t index = scoresInsert(acc); + if (index < ScoresLen) return index; + index = ScoresLen - 1; + scores[index] = acc; + return index; +} + static void curse(void) { initscr(); cbreak(); @@ -181,9 +201,16 @@ static const struct Game { const char *title; const char *desc; Play *play; + bool cum; } Games[] = { - { "2048", "2048", "Slide and merge matching tiles", play2048 }, - { "snake", "Snake", "Eat food before it spoils to become long", playSnake }, + { + "2048", "2048", "Slide and merge matching tiles", + play2048, false, + }, + { + "snake", "Snake", "Eat food before it spoils to become long", + playSnake, false, + }, }; static const struct Game *menu(void) { @@ -289,6 +316,10 @@ int main(int argc, char *argv[]) { scoresRead(weekly); size_t index = scoresInsert(new); + if (game->cum && index == ScoresLen && new.score) { + index = ScoresLen - 1; + scores[index] = new; + } draw("WEEKLY SCORES", index); if (index < ScoresLen) { @@ -305,24 +336,38 @@ int main(int argc, char *argv[]) { scoresLock(weekly); scoresRead(weekly); - scoresInsert(new); + if (game->cum) { + index = scoresAccum(new); + } else { + index = scoresInsert(new); + } scoresWrite(weekly); fclose(weekly); } - noecho(); curs_set(0); + + erase(); + draw("WEEKLY SCORES", index); getch(); erase(); scoresRead(top); - index = scoresInsert(new); + if (game->cum) { + index = scoresAccum(new); + } else { + index = scoresInsert(new); + } draw("TOP SCORES", index); if (index < ScoresLen) { scoresLock(top); scoresRead(top); - scoresInsert(new); + if (game->cum) { + scoresAccum(new); + } else { + scoresInsert(new); + } scoresWrite(top); fclose(top); } -- cgit 1.4.1