]> git.cworth.org Git - ttt/blobdiff - src/test-board.c
Implemented Cat's Game
[ttt] / src / test-board.c
index abdb01b2f92807d58fe4eb8ea6d5539aa26292be..104395ef39748fc5f335e8fe3d093a6146e19523 100644 (file)
@@ -2,28 +2,25 @@
 
 #include "ttt-board.h"
 
-ttt_cell_t ttt_test_board_is_won (ttt_board_t *board);
-
 int
 main (void)
 {
     ttt_board_t board;
     int m, i, newline;
-
+    
     ttt_board_init (&board);
     
-    for (i = 0; i <= 8; i++)
+    i = 0; while (i < 9)
     {
-       printf ("This is the board \"");
        ttt_board_write (&board, stdout);
-       printf ("\"\n");    
-
-       printf ("Make a move \n");
+       printf ("\n");    
+       
+       printf ("Make a move ");
        m = getchar();
        newline = getchar();
-       printf ("getchar returned a numeric value of %d which is character '%c'\n", m, m);
        m = m - '0';
-       ttt_board_make_move (&board, m);
+       if (ttt_board_make_move (&board, m) == TTT_ERROR_NOT_VALID_MOVE)
+           continue;
        ttt_board_is_won (&board);
        if (ttt_board_is_won (&board) == TTT_CELL_X)
        {
@@ -35,12 +32,15 @@ main (void)
            printf ("O's Win! ");
            break;
        }
+       else if (i == 8)
+       {
+           printf ("Cat's Game!");
+           break;
+       }
+       i++;
     }
-
-    printf ("This is the board \"");
+    
     ttt_board_write (&board, stdout);
-    printf ("\"\n");    
-
-
+    printf ("\n");    
     return 0;
 }