SEE: add support for enpassant moves

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2008-12-21 08:29:46 +01:00
parent 2d0146fe1d
commit 72ca727b38
2 changed files with 17 additions and 1 deletions

View File

@@ -1626,6 +1626,21 @@ int Position::see(Square from, Square to) const {
// Find all attackers to the destination square, with the moving piece
// removed, but possibly an X-ray attacker added behind it.
occ = occupied_squares();
// Handle enpassant moves
if (ep_square() == to && type_of_piece_on(from) == PAWN)
{
assert(capture == EMPTY);
Square capQq = (side_to_move() == WHITE)? (to - DELTA_N) : (to - DELTA_S);
capture = piece_on(capQq);
assert(type_of_piece_on(capQq) == PAWN);
// Remove the captured pawn
clear_bit(&occ, capQq);
}
while (true)
{
clear_bit(&occ, from);