forked from ulthiel/polyglot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattack.h
More file actions
37 lines (22 loc) · 705 Bytes
/
attack.h
File metadata and controls
37 lines (22 loc) · 705 Bytes
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
// attack.h
#ifndef ATTACK_H
#define ATTACK_H
// includes
#include "board.h"
#include "util.h"
// defines
#define IncNone 0
// "constants"
extern const sint8 KnightInc[8+1];
extern const sint8 BishopInc[4+1];
extern const sint8 RookInc[4+1];
extern const sint8 QueenInc[8+1];
extern const sint8 KingInc[8+1];
// functions
extern void attack_init ();
extern bool is_in_check (const board_t * board, int colour);
extern bool is_attacked (const board_t * board, int to, int colour);
extern bool piece_attack (const board_t * board, int piece, int from, int to);
extern bool is_pinned (const board_t * board, int from, int to, int colour);
#endif // !defined ATTACK_H
// end of attack.h