From 7b9ef39ac7c9e15c3ad2b216ca23a3268497b31b Mon Sep 17 00:00:00 2001 From: Tiehuis Date: Thu, 13 Mar 2014 12:35:03 +1300 Subject: [PATCH] Added help command and removed warnings --- 2048_no_curses.c | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/2048_no_curses.c b/2048_no_curses.c index b73bbe3..083ac32 100644 --- a/2048_no_curses.c +++ b/2048_no_curses.c @@ -3,13 +3,14 @@ #include /* for printf */ #include /* for malloc */ #include /* */ +#include /* for time */ #include /* for getopts */ // Repeat an expression y, x times */ -#define ITER(x, y)\ +#define ITER(x, expr)\ do {\ int i;\ - for (i = 0; i < x; i++){y;}\ + for (i = 0; i < x; i++){ expr;}\ } while (0) /* Allocates a square pointer of array of arrays onto heap */ @@ -177,7 +178,8 @@ void rand_block() void draw_grid() { printf("SCORE: %d ", s); - printf(sl ? "(+%d)\n" : "\n", sl); + if (sl) printf("(+%d)", sl); + printf("\n"); // alter this SZ + 1 to match abitrary grid size ITER(SZ + 1, printf("-----")); @@ -218,7 +220,7 @@ int main(int argc, char **argv) /* parse options */ int c; - while ((c = getopt(argc, argv, "s:b:")) != -1) { + while ((c = getopt(argc, argv, "hs:b:")) != -1) { switch (c) { // different board sizes case 's': @@ -230,6 +232,18 @@ int main(int argc, char **argv) case 'b': n_blocks = atoi(optarg); break; + case 'h': + printf("Controls:\n" + " hjkl, wasd Movement\n" + " q Quit\n" + "\n" + "Usage:\n" + " 2048 [options]\n" + "\n" + "Options:\n" + " -b Set the grid border length\n" + " -s Set the block spawn rate\n"); + exit(EXIT_SUCCESS); } }