src/chess/bishop.h

changeset 195
27d02ccb0cef
parent 194
619f07c95894
equal deleted inserted replaced
194:619f07c95894 195:27d02ccb0cef
39 bool bishop_chkrules(const Move *move); 39 bool bishop_chkrules(const Move *move);
40 bool bishop_isblocked(const GameState *gamestate, const Move *move); 40 bool bishop_isblocked(const GameState *gamestate, const Move *move);
41 41
42 #define BISHOP_MOVES_MAX 13 42 #define BISHOP_MOVES_MAX 13
43 size_t bishop_moves(const GameState *gamestate, 43 size_t bishop_moves(const GameState *gamestate,
44 Color c, Rank r, File f, Move *moves); 44 Color c, File f, Rank r, Move *moves);
45 #define bishop_moves_allowed(gamestate, color, rank, file, moves) \ 45 #define bishop_moves_allowed(gamestate, color, file, rank, moves) \
46 filter_moves_allowed(gamestate, color, rank, file, moves, bishop_moves) 46 filter_moves_allowed(gamestate, color, file, rank, moves, bishop_moves)
47 47
48 #ifdef __cplusplus 48 #ifdef __cplusplus
49 } 49 }
50 #endif 50 #endif
51 51

mercurial