X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.h;h=e560a097330d1ec0f65c0a8364d59551334aaac3;hp=7dcbb6f479ab91302e964e50de4c64cae5936e65;hb=13fe7ee4df30f5bc15189870ebf5d166e26d9906;hpb=ad0fdf0da6d9fdc38a5ceb96eeed0d79c8e38dc9 diff --git a/src/position.h b/src/position.h index 7dcbb6f4..e560a097 100644 --- a/src/position.h +++ b/src/position.h @@ -178,6 +178,7 @@ public: // Information about attacks to or from a given square Bitboard attackers_to(Square s) const; + Bitboard attackers_to(Square s, Bitboard occ) const; Bitboard attacks_from(Piece p, Square s) const; static Bitboard attacks_from(Piece p, Square s, Bitboard occ); template Bitboard attacks_from(Square s) const; @@ -185,13 +186,11 @@ public: // Properties of moves bool pl_move_is_legal(Move m, Bitboard pinned) const; - bool pl_move_is_evasion(Move m, Bitboard pinned) const; bool move_is_legal(const Move m) const; bool move_is_legal(const Move m, Bitboard pinned) const; bool move_gives_check(Move m) const; bool move_gives_check(Move m, const CheckInfo& ci) const; bool move_is_capture(Move m) const; - bool move_is_capture_or_promotion(Move m) const; bool move_is_passed_pawn_push(Move m) const; bool move_attacks_square(Move m, Square s) const; @@ -527,13 +526,7 @@ inline bool Position::is_chess960() const { inline bool Position::move_is_capture(Move m) const { assert (m != MOVE_NONE && m != MOVE_NULL); - return (m & (3 << 15)) ? !move_is_castle(m) : !square_is_empty(move_to(m)); -} - -inline bool Position::move_is_capture_or_promotion(Move m) const { - - assert (m != MOVE_NONE && m != MOVE_NULL); - return (m & (0x1F << 12)) ? !move_is_castle(m) : !square_is_empty(move_to(m)); + return !move_is_special(m) ? !square_is_empty(move_to(m)) : move_is_ep(m); } inline PieceType Position::captured_piece_type() const {