-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChessBoard.h
50 lines (42 loc) · 1.02 KB
/
ChessBoard.h
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
41
42
43
44
45
46
47
48
49
50
#ifndef CHESS_BOARD_H
#define CHESS_BOARD_H
#include"common.h"
#include"Move.h"
//these constants are used in building the board
#define NONE 0
#define BLACK_PIECE 1
#define WHITE_PIECE 2
//these are constants used in determining the next move
#define PAWN_BLACK_PIECE_CAN_CAPTURE_EN_PASSENT 3
#define PAWN_WHITE_PIECE_CAN_CAPTURE_EN_PASSENT 4
/*
This class is used to represent a board of chess data
the constants above can be assigned to cells
to save data
*/
class ChessBoard : public std::vector<std::vector<GLint>> {
public:
/*
Creates an empty 8x8 board
*/
ChessBoard();
/*
Access a grid square by a move
(with a modifyable return)
@param move
The move to access with
@return
The grid value at the provided position
*/
GLint& at(const Move& move);
/*
Access a grid square by a move
(with a constant return)
@param move
The move to access with
@return
The grid value at the provided position
*/
GLint at(const Move& move) const;
};
#endif