chess:programming:bitboards
This is an old revision of the document!
Chess - Programming - BitBoards
A BitBoard is comprised of a 64-bit word, which is used to store the positions of different Chess Pieces.
Every square on a Chess Board is represented by one bit in the 64-bit word.
Since there are 12 different pieces in chess, 12 BitBoards are needed to store a chess position:
- whiteKing - bitboard with the position bit of the white king set to 1 (and other bits set to 0).
- whiteQueens - bitboard with the position bits of all white queens set to 1 (and other bits set to 0), etc
- whiteRooks
- whiteBishops
- whiteKnights
- whitePawns
- blackKing
- blackQueens
- blackRooks
- blackBishops
- blackKnights
- blackPawns
The bit-numbering convention for the bitboards:
- bit #0 will be the rightmost bit in the 64-bit word (least significant bit, or LSB), and
- bit #63 will be the leftmost bit in the 64-bit word (most significant bit, or MSB).
- Furthermore, square a1 = bit #0, h1 = bit #7, a8 = bit #56 and h8 = bit #63.
RANKS: 8 | 56 57 58 59 60 61 62 63 (MSB, 7 | 48 49 50 51 52 53 54 55 left) 6 | 40 41 42 43 44 45 46 47 5 | 32 33 34 35 36 37 38 39 4 | 24 25 26 27 28 29 30 31 3 | 16 17 18 19 20 21 22 23 2 | 8 9 10 11 12 13 14 15 1 | (LSB, 0 1 2 3 4 5 6 7 right) ------------------------------------------- FILES: a b c d e f g h
chess/programming/bitboards.1633981914.txt.gz · Last modified: 2021/10/11 19:51 by peter