X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.h;h=8f11a394102098ef7362b6a5428bb98c2c47ced0;hp=946608c657672b743edfa3c39c4dd337a7b4acb6;hb=e56342ed002b2d567fbecd2e4432b881f1b244bc;hpb=0049d3f337b6f3a66a06503c808d6d8b03b68505;ds=sidebyside diff --git a/src/position.h b/src/position.h index 946608c6..8f11a394 100644 --- a/src/position.h +++ b/src/position.h @@ -113,8 +113,8 @@ public: // Castling bool can_castle(CastleRight f) const; bool can_castle(Color c) const; - bool castle_impeded(CastleRight f) const; - Square castle_rook_square(CastleRight f) const; + bool castle_impeded(Color c, CastlingSide s) const; + Square castle_rook_square(Color c, CastlingSide s) const; // Checking bool in_check() const; @@ -213,9 +213,9 @@ private: int index[64]; // [square] // Other info - int castleRightsMask[64]; // [square] - Square castleRookSquare[16]; // [castleRight] - Bitboard castlePath[16]; // [castleRight] + int castleRightsMask[64]; // [square] + Square castleRookSquare[2][2]; // [color][side] + Bitboard castlePath[2][2]; // [color][side] StateInfo startState; int64_t nodes; int startPosPly; @@ -305,12 +305,12 @@ inline bool Position::can_castle(Color c) const { return st->castleRights & ((WHITE_OO | WHITE_OOO) << c); } -inline bool Position::castle_impeded(CastleRight f) const { - return byTypeBB[ALL_PIECES] & castlePath[f]; +inline bool Position::castle_impeded(Color c, CastlingSide s) const { + return byTypeBB[ALL_PIECES] & castlePath[c][s]; } -inline Square Position::castle_rook_square(CastleRight f) const { - return castleRookSquare[f]; +inline Square Position::castle_rook_square(Color c, CastlingSide s) const { + return castleRookSquare[c][s]; } template