chess:programming:bitboards
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
chess:programming:bitboards [2021/10/11 20:08] – peter | chess:programming:bitboards [2021/10/29 00:56] (current) – peter | ||
---|---|---|---|
Line 2: | Line 2: | ||
A BitBoard is comprised of a 64-bit word, which is used to store the positions of different Chess Pieces. | A BitBoard is comprised of a 64-bit word, which is used to store the positions of different Chess Pieces. | ||
+ | |||
+ | < | ||
+ | 8 0 0 0 0 0 0 0 0 | ||
+ | 7 0 0 0 0 0 0 0 0 | ||
+ | 6 0 0 0 0 0 0 0 0 | ||
+ | 5 0 0 0 0 0 0 0 0 | ||
+ | 4 0 0 0 0 0 0 0 0 | ||
+ | 3 0 0 0 0 0 0 0 0 | ||
+ | 2 0 0 0 0 0 0 0 0 | ||
+ | 1 0 0 0 0 0 0 0 0 | ||
+ | a b c d e f g h | ||
+ | </ | ||
Every square on a Chess Board is represented by one bit in the 64-bit word. | Every square on a Chess Board is represented by one bit in the 64-bit word. | ||
Line 19: | Line 31: | ||
* blackKnights | * blackKnights | ||
* blackPawns | * blackPawns | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Benefits of BitBoards ===== | ||
+ | |||
+ | Bitboards offer speed advantages in two parts of the program. | ||
+ | |||
+ | * First (and this is the main reason for using them) the move generator is going to be very fast. | ||
+ | * There are no loops to slide a piece down a diagonal, or rank/file as you will see later in the section on the move generator. | ||
+ | * Second, bitboards offer speed improvements in the evaluation function. | ||
+ | * For example, we can check if the white pawn on square e4 is passed with a single bitboard operation, there is no need to loop over the squares d5, d6, d7, e5, e6, e7, f5, f6 and f7 to see if any square is occupied by black pawns. | ||
+ | * The Board structure will contain the 12 bitboards, together with additional variables for e.g. castling rights. | ||
---- | ---- | ||
Line 48: | Line 72: | ||
---- | ---- | ||
+ | |||
+ | ===== Fast bitwise Operations ===== | ||
There are some fast bit-wise operations that we can perform on bitboards. | There are some fast bit-wise operations that we can perform on bitboards. | ||
Line 61: | Line 87: | ||
< | < | ||
occupiedSquares = whitePieces | blackPieces; | occupiedSquares = whitePieces | blackPieces; | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Determine what pieces are on the board ===== | ||
+ | |||
+ | The union of two sets is superset of both. | ||
+ | |||
+ | * For instance the union of all white and black pieces are the set of all occupied squares: | ||
+ | |||
+ | < | ||
+ | white pieces | ||
+ | . . . . . . . . 1 . 1 1 1 1 1 1 1 . 1 1 1 1 1 1 | ||
+ | . . . . . . . . 1 1 1 1 . 1 1 1 1 1 1 1 . 1 1 1 | ||
+ | . . . . . . . . . . 1 . . . . . . . 1 . . . . . | ||
+ | . . . . . . . . . . . . 1 . . . . . . . 1 . . . | ||
+ | . . . . 1 . . . | . . . . . . . . = . . . . 1 . . . | ||
+ | . . . . . 1 . . . . . . . . . . . . . . . 1 . . | ||
+ | 1 1 1 1 . 1 1 1 . . . . . . . . 1 1 1 1 . 1 1 1 | ||
+ | 1 1 1 1 1 1 . 1 . . . . . . . . 1 1 1 1 1 1 . 1 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * But this fails for unions of attack sets, since squares may be attacked or defended by multiple pieces of course. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Attacks ===== | ||
+ | |||
+ | To determine opponent pieces a queen may capture: | ||
+ | |||
+ | * ' | ||
+ | |||
+ | < | ||
+ | queen attacks | ||
+ | . . . . . . . . 1 . . 1 1 . . 1 . . . . . . . . | ||
+ | . . . 1 . . 1 . 1 . 1 1 1 1 1 . . . . 1 . . 1 . | ||
+ | . 1 . 1 . 1 . . . 1 . . . . . 1 . 1 . . . . . . | ||
+ | . . 1 1 1 . . . . . . . . . . . . . . . . . . . | ||
+ | 1 1 1 * 1 1 1 . & . . . * . . 1 . = . . . * . . 1 . | ||
+ | . . 1 1 1 . . . . . . . . . . . . . . . . . . . | ||
+ | . . . 1 . 1 . . . . . . . . . . . . . . . . . . | ||
+ | . . . 1 . . . . . . . . . . . . . . . . . . . . | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Determine Empty Squares ===== | ||
+ | |||
+ | The set of empty squares for instance is the complement-set of all occupied squares and vice versa: | ||
+ | |||
+ | < | ||
+ | ~occupied squares | ||
+ | 1 . 1 1 1 1 1 1 . 1 . . . . . . | ||
+ | 1 1 1 1 . 1 1 1 . . . . 1 . . . | ||
+ | . . 1 . . . . . 1 1 . 1 1 1 1 1 | ||
+ | . . . . 1 . . . 1 1 1 1 . 1 1 1 | ||
+ | ~ . . . . 1 . . . = 1 1 1 1 . 1 1 1 | ||
+ | . . . . . 1 . . 1 1 1 1 1 . 1 1 | ||
+ | 1 1 1 1 . 1 1 1 . . . . 1 . . . | ||
+ | 1 1 1 1 1 1 . 1 . . . . . . 1 . | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Determine Squares which are exclusively set in one of the two sets ===== | ||
+ | |||
+ | Use XOR (Exclusive or). | ||
+ | |||
+ | < | ||
+ | 1 . . . . . . 1 . . . . . . . . 1 . . . . . . 1 | ||
+ | . 1 . . . . 1 . . . . . . . . . . 1 . . . . 1 . | ||
+ | . . 1 . . 1 . . . . 1 1 1 1 . . . . . 1 1 . . . | ||
+ | . . . 1 1 . . . . . 1 1 1 1 . . . . 1 . . 1 . . | ||
+ | . . . 1 1 . . . ^ . . 1 1 1 1 . . = . . 1 . . 1 . . | ||
+ | . . 1 . . 1 . . . . 1 1 1 1 . . . . . 1 1 . . . | ||
+ | . 1 . . . . 1 . . . . . . . . . . 1 . . . . 1 . | ||
+ | 1 . . . . . . 1 . . . . . . . . 1 . . . . . . 1 | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Determine Squares which are set in both BitBoards ===== | ||
+ | |||
+ | Determine if one Bitboard is a subset of the other. | ||
+ | |||
+ | * Use xor (or subtraction). | ||
+ | |||
+ | < | ||
+ | super | ||
+ | . . . . . . . . . . . . . . . . . . . . . . . . | ||
+ | . 1 1 1 1 1 1 . . . . . . . . . . 1 1 1 1 1 1 . | ||
+ | . 1 1 1 1 1 1 . . . 1 1 1 1 . . . 1 . . . . 1 . | ||
+ | . 1 1 1 1 1 1 . ^ . . 1 1 1 1 . . . 1 . . . . 1 . | ||
+ | . 1 1 1 1 1 1 . . . 1 1 1 1 . . = . 1 . . . . 1 . | ||
+ | . 1 1 1 1 1 1 . - . . 1 1 1 1 . . . 1 . . . . 1 . | ||
+ | . 1 1 1 1 1 1 . . . . . . . . . . 1 1 1 1 1 1 . | ||
+ | . . . . . . . . . . . . . . . . . . . . . . . . | ||
</ | </ | ||
Line 191: | Line 319: | ||
---- | ---- | ||
+ | ===== References ===== | ||
+ | |||
+ | |||
+ | http:// | ||
chess/programming/bitboards.1633982911.txt.gz · Last modified: 2021/10/11 20:08 by peter