From 49d7a088a0768fdbd22624f28d4350469b8da421 Mon Sep 17 00:00:00 2001 From: lshprung Date: Mon, 14 Dec 2020 17:04:56 -0800 Subject: First commit --- draw.c | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 draw.c (limited to 'draw.c') diff --git a/draw.c b/draw.c new file mode 100644 index 0000000..79f8bd5 --- /dev/null +++ b/draw.c @@ -0,0 +1,96 @@ +#include +#include +#include +#include + +#define DEBUG 1 + +void updateScore(int which, int score); + +#ifdef DEBUG +void count_up(void); +#endif + +int main(){ + int score = 0; + int score2 = 0; + int highscore; + + //TODO implement code to retreive existing high score + highscore = 0; + + initscr(); + cbreak(); + keypad(stdscr, true); + noecho(); + //TODO consider adding color + + //draw current score, and high score + updateScore(0, score); + updateScore(1, highscore); + updateScore(2, score2); + + getch(); + + //DEBUG +#ifdef DEBUG + count_up(); +#endif + + endwin(); + return 0; +} + +// 0 for p1 score, 1 for highscore, 2 for p2 score +void updateScore(int which, int score){ + char *title; + int start; + + switch(which){ + case 0: //p1 score + title = "Score"; + start = 2; + break; + + case 1: //high score + title = "Highscore"; + start = getmaxx(stdscr)/2 - 5; + break; + + case 2: //p2 score + title = "Score"; + start = getmaxx(stdscr) - 6; + break; + + default: + exit(1); + } + + //draw the title and the score in the right location + mvprintw(0, start, "%s", title); + mvprintw(1, start + (which % 2 ? 5 : 3) - (!score ? 0 : (int)log10(score)), "%d", score); + + return; +} + +//debug functions start here +#ifdef DEBUG +void count_up(){ + int score = 0; + int score2 = 0; + int highscore = 0; + + while(1){ + score++; + score2++; + highscore++; + updateScore(0, score); + updateScore(1, highscore); + updateScore(2, score2); + refresh(); + usleep(50000); + } + + return; +} +#endif -- cgit