X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbook.cpp;h=85a88fcb801e3499376d3038a8087bebbc2bdc4f;hp=7b5be1864c667b4269a388b0e4bdf4b267c9a2d0;hb=d9b96f0e492583bfb461e7e3c9510ddeae1e3fce;hpb=57b3ca916fdf12ad4ad3dfdcd215379e908b12be diff --git a/src/book.cpp b/src/book.cpp index 7b5be186..85a88fcb 100644 --- a/src/book.cpp +++ b/src/book.cpp @@ -435,11 +435,27 @@ Move Book::get_move(const Position& pos, bool findBestMove) { if (!bookMove) return MOVE_NONE; + // A PolyGlot book move is encoded as follows: + // + // bit 0- 5: destination square (from 0 to 63) + // bit 6-11: origin square (from 0 to 63) + // bit 12-13-14: promotion piece (from KNIGHT == 1 to QUEEN == 4) + // + // Castling moves follow "king captures rook" representation. So in case + // book move is a promotion we have to convert to our representation, in + // all other cases we can directly compare with a Move after having + // masked out special Move's flags that are not supported by PolyGlot. + int p = (bookMove >> 12) & 7; + + if (p) + bookMove = int(make_promotion_move(move_from(Move(bookMove)), + move_to(Move(bookMove)), PieceType(p + 1))); + // Verify the book move is legal MoveStack mlist[MOVES_MAX]; MoveStack* last = generate(pos, mlist); for (MoveStack* cur = mlist; cur != last; cur++) - if ((int(cur->move) & 07777) == bookMove) + if ((int(cur->move) & ~(3 << 14)) == bookMove) // Mask out special flags return cur->move; return MOVE_NONE;