April 2018
Beginner
714 pages
18h 21m
English
Now we will focus on our data structure. Add a new private member to ChessBoard, a vector of characters that will contain information about pieces on the board:
QVector<char> m_boardData;
Consider the following table that shows the piece type and the letters used for it:
| Piece type | White | Black | |
|
King |
K |
k |
|
|
|
Queen |
Q |
q |
|
|
Rook |
R |
r |
|
|
Bishop |
B |
b |
|
|
Knight ... |
Read now
Unlock full access