]> git.cworth.org Git - dvonn/blob - dvonn-board.h
Add visual indication of selected stack
[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_RED,
41     DVONN_CELL_EMPTY,
42     DVONN_CELL_INVALID
43 } dvonn_cell_type_t;
44
45 typedef struct {
46     dvonn_cell_type_t type;
47     int height;
48 } dvonn_cell_t;
49
50 #define DVONN_BOARD_X_SIZE 11
51 #define DVONN_BOARD_Y_SIZE 5
52
53 typedef enum {
54     DVONN_PHASE_PLACEMENT,
55     DVONN_PHASE_MOVEMENT
56 } dvonn_phase_t;
57
58 typedef struct {
59     dvonn_cell_t cells[DVONN_BOARD_X_SIZE][DVONN_BOARD_Y_SIZE];
60     dvonn_phase_t phase;
61     dvonn_player_t player;
62     int moves;
63 } dvonn_board_t;
64
65 /* Initialize a board for a new game of DVONN. */
66 void
67 dvonn_board_init (dvonn_board_t *board);
68
69 /* Place a piece at (x,y) where (0,0) is at the upper-left corner of
70  * the board. Returns TRUE if the move is legal and is performed. If
71  * the move is not legal this function returns FALSE, no change will
72  * be performed on the board, and *error will be set to a string
73  * describing why the move is illegal.*/
74 int
75 dvonn_board_place (dvonn_board_t *board,
76                    int x, int y,
77                    char **error);
78
79 /* Move a piece from (x1,y1) to (x2,y2) where (0,0) is at the
80  * upper-left corner of the board. Returns TRUE if the move is legal
81  * and is performed. If the move is not legal this function returns
82  * FALSE, no change will be performed on the board, and *error will be
83  * set to a string describing why the move is illegal.*/
84 int
85 dvonn_board_move (dvonn_board_t *board,
86                 int x1, int y1,
87                 int x2, int y2,
88                 char **error);
89
90 #endif