]> git.cworth.org Git - ttt/blob - src/ttt-board.c
92391ebd2d7db4243ed14f76ff7253fa2c9a963f
[ttt] / src / ttt-board.c
1 /* ttt.c - client-server tic-tac-toe game
2  *
3  * Copyright © 2005 Carl Worth
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software Foundation,
17  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  * Author: Carl Worth <cworth@cworth.org>
20  */
21
22 #include <stdio.h>
23 #include "ttt-board.h"
24 #include "ttt-error.h"
25
26 /* Initialize an empty board. */
27 void
28 ttt_board_init (ttt_board_t *board)
29 {
30     int i;
31     for (i = 0; i < TTT_BOARD_MAX_CELLS; i++)
32     {
33         board->cells[i] = TTT_CELL_EMPTY;
34     }
35     board->current_player = TTT_CELL_X;
36 }
37
38 /* Initialize a board from its string representation.
39  *
40  * Returns: TTT_BOARD_SUCCESS or TTT_BOARD_INVALID_BOARD if the board
41  * string could not be properly parsed.
42  */
43 void
44 ttt_board_init_from_string (ttt_board_t *board,
45                             const char  *s)
46 {
47     /* XXX: NYI */
48 }
49
50 /* Return the string representation of a board.
51  *
52  * The return value is a malloc()ed string that should be free()ed
53  * when no longer needed.
54  *
55  * Errors: If out-of-memory occurs, this function will not return.
56  */
57 char *
58 ttt_board_to_string (ttt_board_t *board)
59 {
60     char *s;
61     xasprintf (&s, "\r\n" 
62                "%c|%c|%c\r\n"
63                "%c|%c|%c\r\n"
64                "%c|%c|%c",
65                board->cells[0], board->cells[1], board->cells[2], 
66                board->cells[3], board->cells[4], board->cells[5], 
67                board->cells[6], board->cells[7], board->cells[8]); 
68     return s;
69 }
70
71 /* Write a string representation of a board to the provided file.
72  *
73  * Errors: If out-of-memory or a file IO error occurs, this function
74  * will not return.
75  */
76 void
77 ttt_board_write (ttt_board_t *board, FILE *file)
78 {
79     char *s;
80
81     s = ttt_board_to_string (board);
82
83     xfwrite (s, 1, strlen (s) + 1, file);
84
85     free (s);
86 }
87
88 /* Makes a new move in the given board.
89  *
90  * The move value is a number from 0 to 9 giving the position to be
91  * moved as follows:
92  * 
93  *  0|1|2
94  *  3|4|5
95  *  6|7|8
96  *
97  * Returns: 1 if a move is made succesfully. O if a move is invalid
98  * (the given cell is not empty).
99  *
100  * Bugs: Currently this function always places X for all moves. So,
101  * yeah, we'll need to fix that.
102  */
103
104  
105 ttt_error_t ttt_board_make_move (ttt_board_t *board, int move)
106 {  
107     if (board->cells[move] != '_')
108         return TTT_ERROR_NOT_VALID_MOVE;
109
110     board->cells[move] = board->current_player;
111
112     if (board->current_player == TTT_CELL_X)
113         board->current_player = TTT_CELL_O;     
114     else
115         board->current_player = TTT_CELL_X;
116
117     return TTT_ERROR_NONE;
118 }
119
120
121
122
123
124