]> git.cworth.org Git - ttt/commitdiff
Implemented Cat's Game
authorKevin Worth <kevin@theworths.org>
Thu, 15 Dec 2005 06:49:52 +0000 (06:49 +0000)
committerKevin Worth <kevin@theworths.org>
Thu, 15 Dec 2005 06:49:52 +0000 (06:49 +0000)
src/test-board.c

index 463e1b9eec267a35ef6cf17b8614477d5b5e5a59..104395ef39748fc5f335e8fe3d093a6146e19523 100644 (file)
@@ -7,19 +7,20 @@ 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)
     {
        ttt_board_write (&board, stdout);
        printf ("\n");    
-
+       
        printf ("Make a move ");
        m = getchar();
        newline = getchar();
        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)
        {
@@ -31,8 +32,14 @@ main (void)
            printf ("O's Win! ");
            break;
        }
+       else if (i == 8)
+       {
+           printf ("Cat's Game!");
+           break;
+       }
+       i++;
     }
-
+    
     ttt_board_write (&board, stdout);
     printf ("\n");    
     return 0;