X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.h;h=c6988ffffd1d06aa887f62d7396fb4a85d4075d2;hp=56f5546936650d751db0e14f081120ac49b6b9e2;hb=351ef5c85b6d4b9c71e9da367f0be5ab6e6f8117;hpb=b21a5e2f0638a55daeaa98ba95afc6c016ea0b6e diff --git a/src/position.h b/src/position.h index 56f55469..c6988fff 100644 --- a/src/position.h +++ b/src/position.h @@ -41,8 +41,8 @@ struct CheckInfo { explicit CheckInfo(const Position&); Bitboard dcCandidates; + Bitboard pinned; Bitboard checkSq[8]; - Square ksq; }; /// Castle rights, encoded as bit fields @@ -133,8 +133,6 @@ public: Color color_of_piece_on(Square s) const; bool square_is_empty(Square s) const; bool square_is_occupied(Square s) const; - Value midgame_value_of_piece_on(Square s) const; - Value endgame_value_of_piece_on(Square s) const; // Side to move Color side_to_move() const; @@ -187,9 +185,9 @@ public: // Properties of moves bool pl_move_is_legal(Move m, Bitboard pinned) const; bool move_is_pl(const Move m) 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; @@ -213,7 +211,6 @@ public: // Static exchange evaluation int see(Move m) const; int see_sign(Move m) const; - static int see_value(PieceType pt); // Accessing hash keys Key get_key() const; @@ -247,9 +244,8 @@ public: // Position consistency check, for debugging bool is_ok(int* failedStep = NULL) const; - // Static member functions - static void init_zobrist(); - static void init_piece_square_tables(); + // Global initialization + static void init(); private: @@ -313,9 +309,6 @@ private: static Key zobSideToMove; static Score PieceSquareTable[16][64]; static Key zobExclusion; - static const Value seeValues[8]; - static const Value PieceValueMidgame[17]; - static const Value PieceValueEndgame[17]; }; inline int64_t Position::nodes_searched() const { @@ -346,14 +339,6 @@ inline bool Position::square_is_occupied(Square s) const { return !square_is_empty(s); } -inline Value Position::midgame_value_of_piece_on(Square s) const { - return PieceValueMidgame[piece_on(s)]; -} - -inline Value Position::endgame_value_of_piece_on(Square s) const { - return PieceValueEndgame[piece_on(s)]; -} - inline Color Position::side_to_move() const { return sideToMove; } @@ -475,10 +460,6 @@ inline bool Position::square_is_weak(Square s, Color c) const { return !(pieces(PAWN, opposite_color(c)) & attack_span_mask(c, s)); } -inline int Position::see_value(PieceType pt) { - return seeValues[pt]; -} - inline Key Position::get_key() const { return st->key; } @@ -536,10 +517,18 @@ inline bool Position::is_chess960() const { return chess960; } +inline bool Position::move_is_capture_or_promotion(Move m) const { + + assert(m != MOVE_NONE && m != MOVE_NULL); + return move_is_special(m) ? !move_is_castle(m) : !square_is_empty(move_to(m)); +} + inline bool Position::move_is_capture(Move m) const { - assert (m != MOVE_NONE && m != MOVE_NULL); - return !move_is_special(m) ? !square_is_empty(move_to(m)) : move_is_ep(m); + assert(m != MOVE_NONE && m != MOVE_NULL); + + // Note that castle is coded as "king captures the rook" + return (!square_is_empty(move_to(m)) && !move_is_castle(m)) || move_is_ep(m); } inline PieceType Position::captured_piece_type() const {