]> git.cworth.org Git - dvonn/blob - dvonn-board.h
Initial import of DVONN game
[dvonn] / dvonn-board.h
1 /*
2  * Copyright (C) 2008 Carl Worth
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see http://www.gnu.org/licenses/ .
16  *
17  * Author: Carl Worth <cworth@cworth.org>
18  */
19
20 #ifndef DVONN_BOARD_H
21 #define DVONN_BOARD_H
22
23 typedef int dvonn_bool_t;
24
25 #ifndef FALSE
26 #define FALSE 0
27 #endif
28 #ifndef TRUE
29 #define TRUE  1
30 #endif
31
32 typedef enum {
33     DVONN_PLAYER_BLACK,
34     DVONN_PLAYER_WHITE
35 } dvonn_player_t;
36
37 typedef enum {
38     DVONN_CELL_BLACK = DVONN_PLAYER_BLACK,
39     DVONN_CELL_WHITE = DVONN_PLAYER_WHITE,
40     DVONN_CELL_EMPTY,
41     DVONN_CELL_INVALID
42 } dvonn_cell_type_t;
43
44 typedef struct {
45     dvonn_cell_type_t type;
46     int height;
47 } dvonn_cell_t;
48
49 #define DVONN_BOARD_X_SIZE 11
50 #define DVONN_BOARD_Y_SIZE 5
51
52 typedef struct {
53     dvonn_cell_t cells[DVONN_BOARD_X_SIZE][DVONN_BOARD_Y_SIZE];
54
55     dvonn_player_t player;
56 } dvonn_board_t;
57
58 /* Initialize a board for a new game of DVONN. */
59 void
60 dvonn_board_init (dvonn_board_t *board);
61
62 /* Move a piece from (x1,y1) to (x2,y2) where (0,0) is at the
63  * upper-left corner of the board. Returns TRUE if the move is legal
64  * and is performed. If the move is not legal this function returns
65  * FALSE, no change will be performed on the board, and *error will be
66  * set to a string describing why the move is illegal.*/
67 int
68 dvonn_board_move (dvonn_board_t *board,
69                 int x1, int y1,
70                 int x2, int y2,
71                 char **error);
72
73 #endif