blob: a993680c28e4cdb754b6264dc57062e91778e902 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#define BOARD_WIDTH 9
#define BOARD_ROW_UNITS ((BOARD_WIDTH * 2) + 1)
#define BOARD_UNITS BOARD_ROW_UNITS * BOARD_ROW_UNITS
#define PLAYERS 2
/* constants */
const char EMPTY = ' ';
const char ANY = '*';
const char SEPARATOR = '+';
const int NEIGHBOR_INCREMENTS[] = { -BOARD_ROW_UNITS, 1, BOARD_ROW_UNITS, -1 };
/* structs */
typedef struct {
char edges[4];
char center;
int shield;
} Tile;
typedef struct {
char feature;
int meeple;
int structure_group;
} BoardUnit;
/* board */
void initialize_board(BoardUnit* board);
int translate_coordinate(int index);
int is_center_index(int index);
/* tiles */
int is_allowed_placement(Tile tile, int index, BoardUnit* board);
int place_tile(Tile tile, int index, BoardUnit* board, int force);
void rotate_tile(Tile* tile, int increment);
/* structures */
void traverse_structure(int group, int index, BoardUnit* board);
void refresh_structure_groups(BoardUnit* board);
int evaluate_structure(int index, BoardUnit* board);
|