]> git.sesse.net Git - stockfish/blob - src/position.cpp
Introduce and use TranspositionTable::refresh()
[stockfish] / src / position.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4   Copyright (C) 2008-2010 Marco Costalba, Joona Kiiski, Tord Romstad
5
6   Stockfish is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Stockfish is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20
21 ////
22 //// Includes
23 ////
24
25 #include <algorithm>
26 #include <cassert>
27 #include <cstring>
28 #include <fstream>
29 #include <map>
30 #include <iostream>
31 #include <sstream>
32
33 #include "bitcount.h"
34 #include "mersenne.h"
35 #include "movegen.h"
36 #include "movepick.h"
37 #include "position.h"
38 #include "psqtab.h"
39 #include "san.h"
40 #include "tt.h"
41 #include "ucioption.h"
42
43 using std::string;
44 using std::cout;
45 using std::endl;
46
47 static inline bool isZero(char c) { return c == '0'; }
48
49 struct PieceLetters : public std::map<char, Piece> {
50
51     PieceLetters() {
52
53       operator[]('K') = WK; operator[]('k') = BK;
54       operator[]('Q') = WQ; operator[]('q') = BQ;
55       operator[]('R') = WR; operator[]('r') = BR;
56       operator[]('B') = WB; operator[]('b') = BB;
57       operator[]('N') = WN; operator[]('n') = BN;
58       operator[]('P') = WP; operator[]('p') = BP;
59       operator[](' ') = PIECE_NONE; operator[]('.') = PIECE_NONE_DARK_SQ;
60     }
61
62     char from_piece(Piece p) const {
63
64         std::map<char, Piece>::const_iterator it;
65         for (it = begin(); it != end(); ++it)
66             if (it->second == p)
67                 return it->first;
68
69         assert(false);
70         return 0;
71     }
72 };
73
74
75 ////
76 //// Constants and variables
77 ////
78
79 /// Bonus for having the side to move (modified by Joona Kiiski)
80
81 static const Score TempoValue = make_score(48, 22);
82
83
84 Key Position::zobrist[2][8][64];
85 Key Position::zobEp[64];
86 Key Position::zobCastle[16];
87 Key Position::zobSideToMove;
88 Key Position::zobExclusion;
89
90 Score Position::PieceSquareTable[16][64];
91
92 static PieceLetters pieceLetters;
93
94 // Material values used by SEE, indexed by PieceType
95 const Value Position::seeValues[] = {
96   VALUE_ZERO, PawnValueMidgame, KnightValueMidgame, BishopValueMidgame,
97   RookValueMidgame, QueenValueMidgame, QueenValueMidgame*10
98 };
99
100
101 /// Constructors
102
103 CheckInfo::CheckInfo(const Position& pos) {
104
105   Color us = pos.side_to_move();
106   Color them = opposite_color(us);
107
108   ksq = pos.king_square(them);
109   dcCandidates = pos.discovered_check_candidates(us);
110
111   checkSq[PAWN] = pos.attacks_from<PAWN>(ksq, them);
112   checkSq[KNIGHT] = pos.attacks_from<KNIGHT>(ksq);
113   checkSq[BISHOP] = pos.attacks_from<BISHOP>(ksq);
114   checkSq[ROOK] = pos.attacks_from<ROOK>(ksq);
115   checkSq[QUEEN] = checkSq[BISHOP] | checkSq[ROOK];
116   checkSq[KING] = EmptyBoardBB;
117 }
118
119
120 /// Position c'tors. Here we always create a copy of the original position
121 /// or the FEN string, we want the new born Position object do not depend
122 /// on any external data so we detach state pointer from the source one.
123
124 Position::Position(int th) : threadID(th) {}
125
126 Position::Position(const Position& pos, int th) {
127
128   memcpy(this, &pos, sizeof(Position));
129   detach(); // Always detach() in copy c'tor to avoid surprises
130   threadID = th;
131 }
132
133 Position::Position(const string& fen, int th) {
134
135   from_fen(fen);
136   threadID = th;
137 }
138
139
140 /// Position::detach() copies the content of the current state and castling
141 /// masks inside the position itself. This is needed when the st pointee could
142 /// become stale, as example because the caller is about to going out of scope.
143
144 void Position::detach() {
145
146   startState = *st;
147   st = &startState;
148   st->previous = NULL; // as a safe guard
149 }
150
151
152 /// Position::from_fen() initializes the position object with the given FEN
153 /// string. This function is not very robust - make sure that input FENs are
154 /// correct (this is assumed to be the responsibility of the GUI).
155
156 void Position::from_fen(const string& fen) {
157 /*
158    A FEN string defines a particular position using only the ASCII character set.
159
160    A FEN string contains six fields. The separator between fields is a space. The fields are:
161
162    1) Piece placement (from white's perspective). Each rank is described, starting with rank 8 and ending
163       with rank 1; within each rank, the contents of each square are described from file a through file h.
164       Following the Standard Algebraic Notation (SAN), each piece is identified by a single letter taken
165       from the standard English names. White pieces are designated using upper-case letters ("PNBRQK")
166       while Black take lowercase ("pnbrqk"). Blank squares are noted using digits 1 through 8 (the number
167       of blank squares), and "/" separate ranks.
168
169    2) Active color. "w" means white moves next, "b" means black.
170
171    3) Castling availability. If neither side can castle, this is "-". Otherwise, this has one or more
172       letters: "K" (White can castle kingside), "Q" (White can castle queenside), "k" (Black can castle
173       kingside), and/or "q" (Black can castle queenside).
174
175    4) En passant target square in algebraic notation. If there's no en passant target square, this is "-".
176       If a pawn has just made a 2-square move, this is the position "behind" the pawn. This is recorded
177       regardless of whether there is a pawn in position to make an en passant capture.
178
179    5) Halfmove clock: This is the number of halfmoves since the last pawn advance or capture. This is used
180       to determine if a draw can be claimed under the fifty-move rule.
181
182    6) Fullmove number: The number of the full move. It starts at 1, and is incremented after Black's move.
183 */
184
185   char token;
186   std::istringstream ss(fen);
187   Rank rank = RANK_8;
188   File file = FILE_A;
189
190   clear();
191
192   // 1. Piece placement field
193   while (ss.get(token) && token != ' ')
194   {
195       if (isdigit(token))
196       {
197           file += File(token - '0'); // Skip the given number of files
198           continue;
199       }
200       else if (token == '/')
201       {
202           file = FILE_A;
203           rank--;
204           continue;
205       }
206
207       if (pieceLetters.find(token) == pieceLetters.end())
208           goto incorrect_fen;
209
210       put_piece(pieceLetters[token], make_square(file, rank));
211       file++;
212   }
213
214   // 2. Active color
215   if (!ss.get(token) || (token != 'w' && token != 'b'))
216       goto incorrect_fen;
217
218   sideToMove = (token == 'w' ? WHITE : BLACK);
219
220   if (!ss.get(token) || token != ' ')
221       goto incorrect_fen;
222
223   // 3. Castling availability
224   while (ss.get(token) && token != ' ')
225   {
226       if (token == '-')
227           continue;
228
229       if (!set_castling_rights(token))
230           goto incorrect_fen;
231   }
232
233   // 4. En passant square -- ignore if no capture is possible
234   char col, row;
235   if (   (ss.get(col) && (col >= 'a' && col <= 'h'))
236       && (ss.get(row) && (row == '3' || row == '6')))
237   {
238       Square fenEpSquare = make_square(file_from_char(col), rank_from_char(row));
239       Color them = opposite_color(sideToMove);
240
241       if (attacks_from<PAWN>(fenEpSquare, them) & pieces(PAWN, sideToMove))
242           st->epSquare = fenEpSquare;
243   }
244
245   // 5-6. Halfmove clock and fullmove number are not parsed
246
247   // Various initialisations
248   castleRightsMask[make_square(initialKFile,  RANK_1)] ^= WHITE_OO | WHITE_OOO;
249   castleRightsMask[make_square(initialKFile,  RANK_8)] ^= BLACK_OO | BLACK_OOO;
250   castleRightsMask[make_square(initialKRFile, RANK_1)] ^= WHITE_OO;
251   castleRightsMask[make_square(initialKRFile, RANK_8)] ^= BLACK_OO;
252   castleRightsMask[make_square(initialQRFile, RANK_1)] ^= WHITE_OOO;
253   castleRightsMask[make_square(initialQRFile, RANK_8)] ^= BLACK_OOO;
254
255   isChess960 =   initialKFile  != FILE_E
256               || initialQRFile != FILE_A
257               || initialKRFile != FILE_H;
258
259   find_checkers();
260
261   st->key = compute_key();
262   st->pawnKey = compute_pawn_key();
263   st->materialKey = compute_material_key();
264   st->value = compute_value();
265   st->npMaterial[WHITE] = compute_non_pawn_material(WHITE);
266   st->npMaterial[BLACK] = compute_non_pawn_material(BLACK);
267   return;
268
269 incorrect_fen:
270   cout << "Error in FEN string: " << fen << endl;
271 }
272
273
274 /// Position::set_castling_rights() sets castling parameters castling avaiability.
275 /// This function is compatible with 3 standards: Normal FEN standard, Shredder-FEN
276 /// that uses the letters of the columns on which the rooks began the game instead
277 /// of KQkq and also X-FEN standard that, in case of Chess960, if an inner Rook is
278 /// associated with the castling right, the traditional castling tag will be replaced
279 /// by the file letter of the involved rook as for the Shredder-FEN.
280
281 bool Position::set_castling_rights(char token) {
282
283     Color c = token >= 'a' ? BLACK : WHITE;
284     Square sqA = (c == WHITE ? SQ_A1 : SQ_A8);
285     Square sqH = (c == WHITE ? SQ_H1 : SQ_H8);
286     Piece rook = (c == WHITE ? WR : BR);
287
288     initialKFile = square_file(king_square(c));
289     token = char(toupper(token));
290
291     if (token == 'K')
292     {
293         for (Square sq = sqH; sq >= sqA; sq--)
294             if (piece_on(sq) == rook)
295             {
296                 allow_oo(c);
297                 initialKRFile = square_file(sq);
298                 break;
299             }
300     }
301     else if (token == 'Q')
302     {
303         for (Square sq = sqA; sq <= sqH; sq++)
304             if (piece_on(sq) == rook)
305             {
306                 allow_ooo(c);
307                 initialQRFile = square_file(sq);
308                 break;
309             }
310     }
311     else if (token >= 'A' && token <= 'H')
312     {
313         File rookFile = File(token - 'A') + FILE_A;
314         if (rookFile < initialKFile)
315         {
316             allow_ooo(c);
317             initialQRFile = rookFile;
318         }
319         else
320         {
321             allow_oo(c);
322             initialKRFile = rookFile;
323         }
324     }
325     else return false;
326
327   return true;
328 }
329
330
331 /// Position::to_fen() returns a FEN representation of the position. In case
332 /// of Chess960 the Shredder-FEN notation is used. Mainly a debugging function.
333
334 const string Position::to_fen() const {
335
336   string fen;
337   Square sq;
338   char emptyCnt = '0';
339
340   for (Rank rank = RANK_8; rank >= RANK_1; rank--)
341   {
342       for (File file = FILE_A; file <= FILE_H; file++)
343       {
344           sq = make_square(file, rank);
345
346           if (square_is_occupied(sq))
347           {
348               fen += emptyCnt;
349               fen += pieceLetters.from_piece(piece_on(sq));
350               emptyCnt = '0';
351           } else
352               emptyCnt++;
353       }
354       fen += emptyCnt;
355       fen += '/';
356       emptyCnt = '0';
357   }
358
359   fen.erase(std::remove_if(fen.begin(), fen.end(), isZero), fen.end());
360   fen.erase(--fen.end());
361   fen += (sideToMove == WHITE ? " w " : " b ");
362
363   if (st->castleRights != CASTLES_NONE)
364   {
365       if (can_castle_kingside(WHITE))
366           fen += isChess960 ? char(toupper(file_to_char(initialKRFile))) : 'K';
367
368       if (can_castle_queenside(WHITE))
369           fen += isChess960 ? char(toupper(file_to_char(initialQRFile))) : 'Q';
370
371       if (can_castle_kingside(BLACK))
372           fen += isChess960 ? file_to_char(initialKRFile) : 'k';
373
374       if (can_castle_queenside(BLACK))
375           fen += isChess960 ? file_to_char(initialQRFile) : 'q';
376   } else
377       fen += '-';
378
379   fen += (ep_square() == SQ_NONE ? " -" : " " + square_to_string(ep_square()));
380   return fen;
381 }
382
383
384 /// Position::print() prints an ASCII representation of the position to
385 /// the standard output. If a move is given then also the san is printed.
386
387 void Position::print(Move move) const {
388
389   const char* dottedLine = "\n+---+---+---+---+---+---+---+---+\n";
390   static bool requestPending = false;
391
392   // Check for reentrancy, as example when called from inside
393   // MovePicker that is used also here in move_to_san()
394   if (requestPending)
395       return;
396
397   requestPending = true;
398
399   if (move)
400   {
401       Position p(*this, thread());
402       string dd = (color_of_piece_on(move_from(move)) == BLACK ? ".." : "");
403       cout << "\nMove is: " << dd << move_to_san(p, move);
404   }
405
406   for (Rank rank = RANK_8; rank >= RANK_1; rank--)
407   {
408       cout << dottedLine << '|';
409       for (File file = FILE_A; file <= FILE_H; file++)
410       {
411           Square sq = make_square(file, rank);
412           char c = (color_of_piece_on(sq) == BLACK ? '=' : ' ');
413           Piece piece = piece_on(sq);
414
415           if (piece == PIECE_NONE && square_color(sq) == DARK)
416               piece = PIECE_NONE_DARK_SQ;
417
418           cout << c << pieceLetters.from_piece(piece) << c << '|';
419       }
420   }
421   cout << dottedLine << "Fen is: " << to_fen() << "\nKey is: " << st->key << endl;
422   requestPending = false;
423 }
424
425
426 /// Position:hidden_checkers<>() returns a bitboard of all pinned (against the
427 /// king) pieces for the given color and for the given pinner type. Or, when
428 /// template parameter FindPinned is false, the pieces of the given color
429 /// candidate for a discovery check against the enemy king.
430 /// Bitboard checkersBB must be already updated when looking for pinners.
431
432 template<bool FindPinned>
433 Bitboard Position::hidden_checkers(Color c) const {
434
435   Bitboard result = EmptyBoardBB;
436   Bitboard pinners = pieces_of_color(FindPinned ? opposite_color(c) : c);
437
438   // Pinned pieces protect our king, dicovery checks attack
439   // the enemy king.
440   Square ksq = king_square(FindPinned ? c : opposite_color(c));
441
442   // Pinners are sliders, not checkers, that give check when candidate pinned is removed
443   pinners &= (pieces(ROOK, QUEEN) & RookPseudoAttacks[ksq]) | (pieces(BISHOP, QUEEN) & BishopPseudoAttacks[ksq]);
444
445   if (FindPinned && pinners)
446       pinners &= ~st->checkersBB;
447
448   while (pinners)
449   {
450       Square s = pop_1st_bit(&pinners);
451       Bitboard b = squares_between(s, ksq) & occupied_squares();
452
453       assert(b);
454
455       if (  !(b & (b - 1)) // Only one bit set?
456           && (b & pieces_of_color(c))) // Is an our piece?
457           result |= b;
458   }
459   return result;
460 }
461
462
463 /// Position:pinned_pieces() returns a bitboard of all pinned (against the
464 /// king) pieces for the given color. Note that checkersBB bitboard must
465 /// be already updated.
466
467 Bitboard Position::pinned_pieces(Color c) const {
468
469   return hidden_checkers<true>(c);
470 }
471
472
473 /// Position:discovered_check_candidates() returns a bitboard containing all
474 /// pieces for the given side which are candidates for giving a discovered
475 /// check. Contrary to pinned_pieces() here there is no need of checkersBB
476 /// to be already updated.
477
478 Bitboard Position::discovered_check_candidates(Color c) const {
479
480   return hidden_checkers<false>(c);
481 }
482
483 /// Position::attackers_to() computes a bitboard containing all pieces which
484 /// attacks a given square.
485
486 Bitboard Position::attackers_to(Square s) const {
487
488   return  (attacks_from<PAWN>(s, BLACK) & pieces(PAWN, WHITE))
489         | (attacks_from<PAWN>(s, WHITE) & pieces(PAWN, BLACK))
490         | (attacks_from<KNIGHT>(s)      & pieces(KNIGHT))
491         | (attacks_from<ROOK>(s)        & pieces(ROOK, QUEEN))
492         | (attacks_from<BISHOP>(s)      & pieces(BISHOP, QUEEN))
493         | (attacks_from<KING>(s)        & pieces(KING));
494 }
495
496 /// Position::attacks_from() computes a bitboard of all attacks
497 /// of a given piece put in a given square.
498
499 Bitboard Position::attacks_from(Piece p, Square s) const {
500
501   assert(square_is_ok(s));
502
503   switch (p)
504   {
505   case WP:          return attacks_from<PAWN>(s, WHITE);
506   case BP:          return attacks_from<PAWN>(s, BLACK);
507   case WN: case BN: return attacks_from<KNIGHT>(s);
508   case WB: case BB: return attacks_from<BISHOP>(s);
509   case WR: case BR: return attacks_from<ROOK>(s);
510   case WQ: case BQ: return attacks_from<QUEEN>(s);
511   case WK: case BK: return attacks_from<KING>(s);
512   default: break;
513   }
514   return false;
515 }
516
517
518 /// Position::move_attacks_square() tests whether a move from the current
519 /// position attacks a given square.
520
521 bool Position::move_attacks_square(Move m, Square s) const {
522
523   assert(move_is_ok(m));
524   assert(square_is_ok(s));
525
526   Bitboard occ, xray;
527   Square f = move_from(m), t = move_to(m);
528
529   assert(square_is_occupied(f));
530
531   if (bit_is_set(attacks_from(piece_on(f), t), s))
532       return true;
533
534   // Move the piece and scan for X-ray attacks behind it
535   occ = occupied_squares();
536   do_move_bb(&occ, make_move_bb(f, t));
537   xray = ( (rook_attacks_bb(s, occ)   & pieces(ROOK, QUEEN))
538           |(bishop_attacks_bb(s, occ) & pieces(BISHOP, QUEEN)))
539          & pieces_of_color(color_of_piece_on(f));
540
541   // If we have attacks we need to verify that are caused by our move
542   // and are not already existent ones.
543   return xray && (xray ^ (xray & attacks_from<QUEEN>(s)));
544 }
545
546
547 /// Position::find_checkers() computes the checkersBB bitboard, which
548 /// contains a nonzero bit for each checking piece (0, 1 or 2). It
549 /// currently works by calling Position::attackers_to, which is probably
550 /// inefficient. Consider rewriting this function to use the last move
551 /// played, like in non-bitboard versions of Glaurung.
552
553 void Position::find_checkers() {
554
555   Color us = side_to_move();
556   st->checkersBB = attackers_to(king_square(us)) & pieces_of_color(opposite_color(us));
557 }
558
559
560 /// Position::pl_move_is_legal() tests whether a pseudo-legal move is legal
561
562 bool Position::pl_move_is_legal(Move m, Bitboard pinned) const {
563
564   assert(is_ok());
565   assert(move_is_ok(m));
566   assert(pinned == pinned_pieces(side_to_move()));
567
568   // Castling moves are checked for legality during move generation.
569   if (move_is_castle(m))
570       return true;
571
572   Color us = side_to_move();
573   Square from = move_from(m);
574
575   assert(color_of_piece_on(from) == us);
576   assert(piece_on(king_square(us)) == piece_of_color_and_type(us, KING));
577
578   // En passant captures are a tricky special case. Because they are
579   // rather uncommon, we do it simply by testing whether the king is attacked
580   // after the move is made
581   if (move_is_ep(m))
582   {
583       Color them = opposite_color(us);
584       Square to = move_to(m);
585       Square capsq = make_square(square_file(to), square_rank(from));
586       Bitboard b = occupied_squares();
587       Square ksq = king_square(us);
588
589       assert(to == ep_square());
590       assert(piece_on(from) == piece_of_color_and_type(us, PAWN));
591       assert(piece_on(capsq) == piece_of_color_and_type(them, PAWN));
592       assert(piece_on(to) == PIECE_NONE);
593
594       clear_bit(&b, from);
595       clear_bit(&b, capsq);
596       set_bit(&b, to);
597
598       return   !(rook_attacks_bb(ksq, b) & pieces(ROOK, QUEEN, them))
599             && !(bishop_attacks_bb(ksq, b) & pieces(BISHOP, QUEEN, them));
600   }
601
602   // If the moving piece is a king, check whether the destination
603   // square is attacked by the opponent.
604   if (type_of_piece_on(from) == KING)
605       return !(attackers_to(move_to(m)) & pieces_of_color(opposite_color(us)));
606
607   // A non-king move is legal if and only if it is not pinned or it
608   // is moving along the ray towards or away from the king.
609   return (   !pinned
610           || !bit_is_set(pinned, from)
611           || (direction_between_squares(from, king_square(us)) == direction_between_squares(move_to(m), king_square(us))));
612 }
613
614
615 /// Position::pl_move_is_evasion() tests whether a pseudo-legal move is a legal evasion
616
617 bool Position::pl_move_is_evasion(Move m, Bitboard pinned) const
618 {
619   assert(is_check());
620
621   Color us = side_to_move();
622   Square from = move_from(m);
623   Square to = move_to(m);
624
625   // King moves and en-passant captures are verified in pl_move_is_legal()
626   if (type_of_piece_on(from) == KING || move_is_ep(m))
627       return pl_move_is_legal(m, pinned);
628
629   Bitboard target = checkers();
630   Square checksq = pop_1st_bit(&target);
631
632   if (target) // double check ?
633       return false;
634
635   // Our move must be a blocking evasion or a capture of the checking piece
636   target = squares_between(checksq, king_square(us)) | checkers();
637   return bit_is_set(target, to) && pl_move_is_legal(m, pinned);
638 }
639
640
641 /// Position::move_is_check() tests whether a pseudo-legal move is a check
642
643 bool Position::move_is_check(Move m) const {
644
645   return move_is_check(m, CheckInfo(*this));
646 }
647
648 bool Position::move_is_check(Move m, const CheckInfo& ci) const {
649
650   assert(is_ok());
651   assert(move_is_ok(m));
652   assert(ci.dcCandidates == discovered_check_candidates(side_to_move()));
653   assert(color_of_piece_on(move_from(m)) == side_to_move());
654   assert(piece_on(ci.ksq) == piece_of_color_and_type(opposite_color(side_to_move()), KING));
655
656   Square from = move_from(m);
657   Square to = move_to(m);
658   PieceType pt = type_of_piece_on(from);
659
660   // Direct check ?
661   if (bit_is_set(ci.checkSq[pt], to))
662       return true;
663
664   // Discovery check ?
665   if (ci.dcCandidates && bit_is_set(ci.dcCandidates, from))
666   {
667       // For pawn and king moves we need to verify also direction
668       if (  (pt != PAWN && pt != KING)
669           ||(direction_between_squares(from, ci.ksq) != direction_between_squares(to, ci.ksq)))
670           return true;
671   }
672
673   // Can we skip the ugly special cases ?
674   if (!move_is_special(m))
675       return false;
676
677   Color us = side_to_move();
678   Bitboard b = occupied_squares();
679
680   // Promotion with check ?
681   if (move_is_promotion(m))
682   {
683       clear_bit(&b, from);
684
685       switch (move_promotion_piece(m))
686       {
687       case KNIGHT:
688           return bit_is_set(attacks_from<KNIGHT>(to), ci.ksq);
689       case BISHOP:
690           return bit_is_set(bishop_attacks_bb(to, b), ci.ksq);
691       case ROOK:
692           return bit_is_set(rook_attacks_bb(to, b), ci.ksq);
693       case QUEEN:
694           return bit_is_set(queen_attacks_bb(to, b), ci.ksq);
695       default:
696           assert(false);
697       }
698   }
699
700   // En passant capture with check ? We have already handled the case
701   // of direct checks and ordinary discovered check, the only case we
702   // need to handle is the unusual case of a discovered check through
703   // the captured pawn.
704   if (move_is_ep(m))
705   {
706       Square capsq = make_square(square_file(to), square_rank(from));
707       clear_bit(&b, from);
708       clear_bit(&b, capsq);
709       set_bit(&b, to);
710       return  (rook_attacks_bb(ci.ksq, b) & pieces(ROOK, QUEEN, us))
711             ||(bishop_attacks_bb(ci.ksq, b) & pieces(BISHOP, QUEEN, us));
712   }
713
714   // Castling with check ?
715   if (move_is_castle(m))
716   {
717       Square kfrom, kto, rfrom, rto;
718       kfrom = from;
719       rfrom = to;
720
721       if (rfrom > kfrom)
722       {
723           kto = relative_square(us, SQ_G1);
724           rto = relative_square(us, SQ_F1);
725       } else {
726           kto = relative_square(us, SQ_C1);
727           rto = relative_square(us, SQ_D1);
728       }
729       clear_bit(&b, kfrom);
730       clear_bit(&b, rfrom);
731       set_bit(&b, rto);
732       set_bit(&b, kto);
733       return bit_is_set(rook_attacks_bb(rto, b), ci.ksq);
734   }
735
736   return false;
737 }
738
739
740 /// Position::do_move() makes a move, and saves all information necessary
741 /// to a StateInfo object. The move is assumed to be legal.
742 /// Pseudo-legal moves should be filtered out before this function is called.
743
744 void Position::do_move(Move m, StateInfo& newSt) {
745
746   CheckInfo ci(*this);
747   do_move(m, newSt, ci, move_is_check(m, ci));
748 }
749
750 void Position::do_move(Move m, StateInfo& newSt, const CheckInfo& ci, bool moveIsCheck) {
751
752   assert(is_ok());
753   assert(move_is_ok(m));
754
755   Key key = st->key;
756
757   // Copy some fields of old state to our new StateInfo object except the
758   // ones which are recalculated from scratch anyway, then switch our state
759   // pointer to point to the new, ready to be updated, state.
760   struct ReducedStateInfo {
761     Key pawnKey, materialKey;
762     int castleRights, rule50, gamePly, pliesFromNull;
763     Square epSquare;
764     Score value;
765     Value npMaterial[2];
766   };
767
768   if (&newSt != st)
769       memcpy(&newSt, st, sizeof(ReducedStateInfo));
770
771   newSt.previous = st;
772   st = &newSt;
773
774   // Save the current key to the history[] array, in order to be able to
775   // detect repetition draws.
776   history[st->gamePly++] = key;
777
778   // Update side to move
779   key ^= zobSideToMove;
780
781   // Increment the 50 moves rule draw counter. Resetting it to zero in the
782   // case of non-reversible moves is taken care of later.
783   st->rule50++;
784   st->pliesFromNull++;
785
786   if (move_is_castle(m))
787   {
788       st->key = key;
789       do_castle_move(m);
790       return;
791   }
792
793   Color us = side_to_move();
794   Color them = opposite_color(us);
795   Square from = move_from(m);
796   Square to = move_to(m);
797   bool ep = move_is_ep(m);
798   bool pm = move_is_promotion(m);
799
800   Piece piece = piece_on(from);
801   PieceType pt = type_of_piece(piece);
802   PieceType capture = ep ? PAWN : type_of_piece_on(to);
803
804   assert(color_of_piece_on(from) == us);
805   assert(color_of_piece_on(to) == them || square_is_empty(to));
806   assert(!(ep || pm) || piece == piece_of_color_and_type(us, PAWN));
807   assert(!pm || relative_rank(us, to) == RANK_8);
808
809   if (capture)
810       do_capture_move(key, capture, them, to, ep);
811
812   // Update hash key
813   key ^= zobrist[us][pt][from] ^ zobrist[us][pt][to];
814
815   // Reset en passant square
816   if (st->epSquare != SQ_NONE)
817   {
818       key ^= zobEp[st->epSquare];
819       st->epSquare = SQ_NONE;
820   }
821
822   // Update castle rights, try to shortcut a common case
823   int cm = castleRightsMask[from] & castleRightsMask[to];
824   if (cm != ALL_CASTLES && ((cm & st->castleRights) != st->castleRights))
825   {
826       key ^= zobCastle[st->castleRights];
827       st->castleRights &= castleRightsMask[from];
828       st->castleRights &= castleRightsMask[to];
829       key ^= zobCastle[st->castleRights];
830   }
831
832   // Prefetch TT access as soon as we know key is updated
833   prefetch((char*)TT.first_entry(key));
834
835   // Move the piece
836   Bitboard move_bb = make_move_bb(from, to);
837   do_move_bb(&(byColorBB[us]), move_bb);
838   do_move_bb(&(byTypeBB[pt]), move_bb);
839   do_move_bb(&(byTypeBB[0]), move_bb); // HACK: byTypeBB[0] == occupied squares
840
841   board[to] = board[from];
842   board[from] = PIECE_NONE;
843
844   // Update piece lists, note that index[from] is not updated and
845   // becomes stale. This works as long as index[] is accessed just
846   // by known occupied squares.
847   index[to] = index[from];
848   pieceList[us][pt][index[to]] = to;
849
850   // If the moving piece was a pawn do some special extra work
851   if (pt == PAWN)
852   {
853       // Reset rule 50 draw counter
854       st->rule50 = 0;
855
856       // Update pawn hash key and prefetch in L1/L2 cache
857       st->pawnKey ^= zobrist[us][PAWN][from] ^ zobrist[us][PAWN][to];
858       prefetchPawn(st->pawnKey, threadID);
859
860       // Set en passant square, only if moved pawn can be captured
861       if ((to ^ from) == 16)
862       {
863           if (attacks_from<PAWN>(from + (us == WHITE ? DELTA_N : DELTA_S), us) & pieces(PAWN, them))
864           {
865               st->epSquare = Square((int(from) + int(to)) / 2);
866               key ^= zobEp[st->epSquare];
867           }
868       }
869
870       if (pm) // promotion ?
871       {
872           PieceType promotion = move_promotion_piece(m);
873
874           assert(promotion >= KNIGHT && promotion <= QUEEN);
875
876           // Insert promoted piece instead of pawn
877           clear_bit(&(byTypeBB[PAWN]), to);
878           set_bit(&(byTypeBB[promotion]), to);
879           board[to] = piece_of_color_and_type(us, promotion);
880
881           // Update piece counts
882           pieceCount[us][promotion]++;
883           pieceCount[us][PAWN]--;
884
885           // Update material key
886           st->materialKey ^= zobrist[us][PAWN][pieceCount[us][PAWN]];
887           st->materialKey ^= zobrist[us][promotion][pieceCount[us][promotion]-1];
888
889           // Update piece lists, move the last pawn at index[to] position
890           // and shrink the list. Add a new promotion piece to the list.
891           Square lastPawnSquare = pieceList[us][PAWN][pieceCount[us][PAWN]];
892           index[lastPawnSquare] = index[to];
893           pieceList[us][PAWN][index[lastPawnSquare]] = lastPawnSquare;
894           pieceList[us][PAWN][pieceCount[us][PAWN]] = SQ_NONE;
895           index[to] = pieceCount[us][promotion] - 1;
896           pieceList[us][promotion][index[to]] = to;
897
898           // Partially revert hash keys update
899           key ^= zobrist[us][PAWN][to] ^ zobrist[us][promotion][to];
900           st->pawnKey ^= zobrist[us][PAWN][to];
901
902           // Partially revert and update incremental scores
903           st->value -= pst(us, PAWN, to);
904           st->value += pst(us, promotion, to);
905
906           // Update material
907           st->npMaterial[us] += PieceValueMidgame[promotion];
908       }
909   }
910
911   // Update incremental scores
912   st->value += pst_delta(piece, from, to);
913
914   // Set capture piece
915   st->capturedType = capture;
916
917   // Update the key with the final value
918   st->key = key;
919
920   // Update checkers bitboard, piece must be already moved
921   st->checkersBB = EmptyBoardBB;
922
923   if (moveIsCheck)
924   {
925       if (ep | pm)
926           st->checkersBB = attackers_to(king_square(them)) & pieces_of_color(us);
927       else
928       {
929           // Direct checks
930           if (bit_is_set(ci.checkSq[pt], to))
931               st->checkersBB = SetMaskBB[to];
932
933           // Discovery checks
934           if (ci.dcCandidates && bit_is_set(ci.dcCandidates, from))
935           {
936               if (pt != ROOK)
937                   st->checkersBB |= (attacks_from<ROOK>(ci.ksq) & pieces(ROOK, QUEEN, us));
938
939               if (pt != BISHOP)
940                   st->checkersBB |= (attacks_from<BISHOP>(ci.ksq) & pieces(BISHOP, QUEEN, us));
941           }
942       }
943   }
944
945   // Finish
946   sideToMove = opposite_color(sideToMove);
947   st->value += (sideToMove == WHITE ?  TempoValue : -TempoValue);
948
949   assert(is_ok());
950 }
951
952
953 /// Position::do_capture_move() is a private method used to update captured
954 /// piece info. It is called from the main Position::do_move function.
955
956 void Position::do_capture_move(Key& key, PieceType capture, Color them, Square to, bool ep) {
957
958     assert(capture != KING);
959
960     Square capsq = to;
961
962     // If the captured piece was a pawn, update pawn hash key,
963     // otherwise update non-pawn material.
964     if (capture == PAWN)
965     {
966         if (ep) // en passant ?
967         {
968             capsq = (them == BLACK)? (to - DELTA_N) : (to - DELTA_S);
969
970             assert(to == st->epSquare);
971             assert(relative_rank(opposite_color(them), to) == RANK_6);
972             assert(piece_on(to) == PIECE_NONE);
973             assert(piece_on(capsq) == piece_of_color_and_type(them, PAWN));
974
975             board[capsq] = PIECE_NONE;
976         }
977         st->pawnKey ^= zobrist[them][PAWN][capsq];
978     }
979     else
980         st->npMaterial[them] -= PieceValueMidgame[capture];
981
982     // Remove captured piece
983     clear_bit(&(byColorBB[them]), capsq);
984     clear_bit(&(byTypeBB[capture]), capsq);
985     clear_bit(&(byTypeBB[0]), capsq);
986
987     // Update hash key
988     key ^= zobrist[them][capture][capsq];
989
990     // Update incremental scores
991     st->value -= pst(them, capture, capsq);
992
993     // Update piece count
994     pieceCount[them][capture]--;
995
996     // Update material hash key
997     st->materialKey ^= zobrist[them][capture][pieceCount[them][capture]];
998
999     // Update piece list, move the last piece at index[capsq] position
1000     //
1001     // WARNING: This is a not perfectly revresible operation. When we
1002     // will reinsert the captured piece in undo_move() we will put it
1003     // at the end of the list and not in its original place, it means
1004     // index[] and pieceList[] are not guaranteed to be invariant to a
1005     // do_move() + undo_move() sequence.
1006     Square lastPieceSquare = pieceList[them][capture][pieceCount[them][capture]];
1007     index[lastPieceSquare] = index[capsq];
1008     pieceList[them][capture][index[lastPieceSquare]] = lastPieceSquare;
1009     pieceList[them][capture][pieceCount[them][capture]] = SQ_NONE;
1010
1011     // Reset rule 50 counter
1012     st->rule50 = 0;
1013 }
1014
1015
1016 /// Position::do_castle_move() is a private method used to make a castling
1017 /// move. It is called from the main Position::do_move function. Note that
1018 /// castling moves are encoded as "king captures friendly rook" moves, for
1019 /// instance white short castling in a non-Chess960 game is encoded as e1h1.
1020
1021 void Position::do_castle_move(Move m) {
1022
1023   assert(move_is_ok(m));
1024   assert(move_is_castle(m));
1025
1026   Color us = side_to_move();
1027   Color them = opposite_color(us);
1028
1029   // Reset capture field
1030   st->capturedType = PIECE_TYPE_NONE;
1031
1032   // Find source squares for king and rook
1033   Square kfrom = move_from(m);
1034   Square rfrom = move_to(m);  // HACK: See comment at beginning of function
1035   Square kto, rto;
1036
1037   assert(piece_on(kfrom) == piece_of_color_and_type(us, KING));
1038   assert(piece_on(rfrom) == piece_of_color_and_type(us, ROOK));
1039
1040   // Find destination squares for king and rook
1041   if (rfrom > kfrom) // O-O
1042   {
1043       kto = relative_square(us, SQ_G1);
1044       rto = relative_square(us, SQ_F1);
1045   } else { // O-O-O
1046       kto = relative_square(us, SQ_C1);
1047       rto = relative_square(us, SQ_D1);
1048   }
1049
1050   // Remove pieces from source squares:
1051   clear_bit(&(byColorBB[us]), kfrom);
1052   clear_bit(&(byTypeBB[KING]), kfrom);
1053   clear_bit(&(byTypeBB[0]), kfrom); // HACK: byTypeBB[0] == occupied squares
1054   clear_bit(&(byColorBB[us]), rfrom);
1055   clear_bit(&(byTypeBB[ROOK]), rfrom);
1056   clear_bit(&(byTypeBB[0]), rfrom); // HACK: byTypeBB[0] == occupied squares
1057
1058   // Put pieces on destination squares:
1059   set_bit(&(byColorBB[us]), kto);
1060   set_bit(&(byTypeBB[KING]), kto);
1061   set_bit(&(byTypeBB[0]), kto); // HACK: byTypeBB[0] == occupied squares
1062   set_bit(&(byColorBB[us]), rto);
1063   set_bit(&(byTypeBB[ROOK]), rto);
1064   set_bit(&(byTypeBB[0]), rto); // HACK: byTypeBB[0] == occupied squares
1065
1066   // Update board array
1067   Piece king = piece_of_color_and_type(us, KING);
1068   Piece rook = piece_of_color_and_type(us, ROOK);
1069   board[kfrom] = board[rfrom] = PIECE_NONE;
1070   board[kto] = king;
1071   board[rto] = rook;
1072
1073   // Update piece lists
1074   pieceList[us][KING][index[kfrom]] = kto;
1075   pieceList[us][ROOK][index[rfrom]] = rto;
1076   int tmp = index[rfrom]; // In Chess960 could be rto == kfrom
1077   index[kto] = index[kfrom];
1078   index[rto] = tmp;
1079
1080   // Update incremental scores
1081   st->value += pst_delta(king, kfrom, kto);
1082   st->value += pst_delta(rook, rfrom, rto);
1083
1084   // Update hash key
1085   st->key ^= zobrist[us][KING][kfrom] ^ zobrist[us][KING][kto];
1086   st->key ^= zobrist[us][ROOK][rfrom] ^ zobrist[us][ROOK][rto];
1087
1088   // Clear en passant square
1089   if (st->epSquare != SQ_NONE)
1090   {
1091       st->key ^= zobEp[st->epSquare];
1092       st->epSquare = SQ_NONE;
1093   }
1094
1095   // Update castling rights
1096   st->key ^= zobCastle[st->castleRights];
1097   st->castleRights &= castleRightsMask[kfrom];
1098   st->key ^= zobCastle[st->castleRights];
1099
1100   // Reset rule 50 counter
1101   st->rule50 = 0;
1102
1103   // Update checkers BB
1104   st->checkersBB = attackers_to(king_square(them)) & pieces_of_color(us);
1105
1106   // Finish
1107   sideToMove = opposite_color(sideToMove);
1108   st->value += (sideToMove == WHITE ?  TempoValue : -TempoValue);
1109
1110   assert(is_ok());
1111 }
1112
1113
1114 /// Position::undo_move() unmakes a move. When it returns, the position should
1115 /// be restored to exactly the same state as before the move was made.
1116
1117 void Position::undo_move(Move m) {
1118
1119   assert(is_ok());
1120   assert(move_is_ok(m));
1121
1122   sideToMove = opposite_color(sideToMove);
1123
1124   if (move_is_castle(m))
1125   {
1126       undo_castle_move(m);
1127       return;
1128   }
1129
1130   Color us = side_to_move();
1131   Color them = opposite_color(us);
1132   Square from = move_from(m);
1133   Square to = move_to(m);
1134   bool ep = move_is_ep(m);
1135   bool pm = move_is_promotion(m);
1136
1137   PieceType pt = type_of_piece_on(to);
1138
1139   assert(square_is_empty(from));
1140   assert(color_of_piece_on(to) == us);
1141   assert(!pm || relative_rank(us, to) == RANK_8);
1142   assert(!ep || to == st->previous->epSquare);
1143   assert(!ep || relative_rank(us, to) == RANK_6);
1144   assert(!ep || piece_on(to) == piece_of_color_and_type(us, PAWN));
1145
1146   if (pm) // promotion ?
1147   {
1148       PieceType promotion = move_promotion_piece(m);
1149       pt = PAWN;
1150
1151       assert(promotion >= KNIGHT && promotion <= QUEEN);
1152       assert(piece_on(to) == piece_of_color_and_type(us, promotion));
1153
1154       // Replace promoted piece with a pawn
1155       clear_bit(&(byTypeBB[promotion]), to);
1156       set_bit(&(byTypeBB[PAWN]), to);
1157
1158       // Update piece counts
1159       pieceCount[us][promotion]--;
1160       pieceCount[us][PAWN]++;
1161
1162       // Update piece list replacing promotion piece with a pawn
1163       Square lastPromotionSquare = pieceList[us][promotion][pieceCount[us][promotion]];
1164       index[lastPromotionSquare] = index[to];
1165       pieceList[us][promotion][index[lastPromotionSquare]] = lastPromotionSquare;
1166       pieceList[us][promotion][pieceCount[us][promotion]] = SQ_NONE;
1167       index[to] = pieceCount[us][PAWN] - 1;
1168       pieceList[us][PAWN][index[to]] = to;
1169   }
1170
1171   // Put the piece back at the source square
1172   Bitboard move_bb = make_move_bb(to, from);
1173   do_move_bb(&(byColorBB[us]), move_bb);
1174   do_move_bb(&(byTypeBB[pt]), move_bb);
1175   do_move_bb(&(byTypeBB[0]), move_bb); // HACK: byTypeBB[0] == occupied squares
1176
1177   board[from] = piece_of_color_and_type(us, pt);
1178   board[to] = PIECE_NONE;
1179
1180   // Update piece list
1181   index[from] = index[to];
1182   pieceList[us][pt][index[from]] = from;
1183
1184   if (st->capturedType)
1185   {
1186       Square capsq = to;
1187
1188       if (ep)
1189           capsq = (us == WHITE)? (to - DELTA_N) : (to - DELTA_S);
1190
1191       assert(st->capturedType != KING);
1192       assert(!ep || square_is_empty(capsq));
1193
1194       // Restore the captured piece
1195       set_bit(&(byColorBB[them]), capsq);
1196       set_bit(&(byTypeBB[st->capturedType]), capsq);
1197       set_bit(&(byTypeBB[0]), capsq);
1198
1199       board[capsq] = piece_of_color_and_type(them, st->capturedType);
1200
1201       // Update piece count
1202       pieceCount[them][st->capturedType]++;
1203
1204       // Update piece list, add a new captured piece in capsq square
1205       index[capsq] = pieceCount[them][st->capturedType] - 1;
1206       pieceList[them][st->capturedType][index[capsq]] = capsq;
1207   }
1208
1209   // Finally point our state pointer back to the previous state
1210   st = st->previous;
1211
1212   assert(is_ok());
1213 }
1214
1215
1216 /// Position::undo_castle_move() is a private method used to unmake a castling
1217 /// move. It is called from the main Position::undo_move function. Note that
1218 /// castling moves are encoded as "king captures friendly rook" moves, for
1219 /// instance white short castling in a non-Chess960 game is encoded as e1h1.
1220
1221 void Position::undo_castle_move(Move m) {
1222
1223   assert(move_is_ok(m));
1224   assert(move_is_castle(m));
1225
1226   // When we have arrived here, some work has already been done by
1227   // Position::undo_move.  In particular, the side to move has been switched,
1228   // so the code below is correct.
1229   Color us = side_to_move();
1230
1231   // Find source squares for king and rook
1232   Square kfrom = move_from(m);
1233   Square rfrom = move_to(m);  // HACK: See comment at beginning of function
1234   Square kto, rto;
1235
1236   // Find destination squares for king and rook
1237   if (rfrom > kfrom) // O-O
1238   {
1239       kto = relative_square(us, SQ_G1);
1240       rto = relative_square(us, SQ_F1);
1241   } else { // O-O-O
1242       kto = relative_square(us, SQ_C1);
1243       rto = relative_square(us, SQ_D1);
1244   }
1245
1246   assert(piece_on(kto) == piece_of_color_and_type(us, KING));
1247   assert(piece_on(rto) == piece_of_color_and_type(us, ROOK));
1248
1249   // Remove pieces from destination squares:
1250   clear_bit(&(byColorBB[us]), kto);
1251   clear_bit(&(byTypeBB[KING]), kto);
1252   clear_bit(&(byTypeBB[0]), kto); // HACK: byTypeBB[0] == occupied squares
1253   clear_bit(&(byColorBB[us]), rto);
1254   clear_bit(&(byTypeBB[ROOK]), rto);
1255   clear_bit(&(byTypeBB[0]), rto); // HACK: byTypeBB[0] == occupied squares
1256
1257   // Put pieces on source squares:
1258   set_bit(&(byColorBB[us]), kfrom);
1259   set_bit(&(byTypeBB[KING]), kfrom);
1260   set_bit(&(byTypeBB[0]), kfrom); // HACK: byTypeBB[0] == occupied squares
1261   set_bit(&(byColorBB[us]), rfrom);
1262   set_bit(&(byTypeBB[ROOK]), rfrom);
1263   set_bit(&(byTypeBB[0]), rfrom); // HACK: byTypeBB[0] == occupied squares
1264
1265   // Update board
1266   board[rto] = board[kto] = PIECE_NONE;
1267   board[rfrom] = piece_of_color_and_type(us, ROOK);
1268   board[kfrom] = piece_of_color_and_type(us, KING);
1269
1270   // Update piece lists
1271   pieceList[us][KING][index[kto]] = kfrom;
1272   pieceList[us][ROOK][index[rto]] = rfrom;
1273   int tmp = index[rto];  // In Chess960 could be rto == kfrom
1274   index[kfrom] = index[kto];
1275   index[rfrom] = tmp;
1276
1277   // Finally point our state pointer back to the previous state
1278   st = st->previous;
1279
1280   assert(is_ok());
1281 }
1282
1283
1284 /// Position::do_null_move makes() a "null move": It switches the side to move
1285 /// and updates the hash key without executing any move on the board.
1286
1287 void Position::do_null_move(StateInfo& backupSt) {
1288
1289   assert(is_ok());
1290   assert(!is_check());
1291
1292   // Back up the information necessary to undo the null move to the supplied
1293   // StateInfo object.
1294   // Note that differently from normal case here backupSt is actually used as
1295   // a backup storage not as a new state to be used.
1296   backupSt.key      = st->key;
1297   backupSt.epSquare = st->epSquare;
1298   backupSt.value    = st->value;
1299   backupSt.previous = st->previous;
1300   backupSt.pliesFromNull = st->pliesFromNull;
1301   st->previous = &backupSt;
1302
1303   // Save the current key to the history[] array, in order to be able to
1304   // detect repetition draws.
1305   history[st->gamePly++] = st->key;
1306
1307   // Update the necessary information
1308   if (st->epSquare != SQ_NONE)
1309       st->key ^= zobEp[st->epSquare];
1310
1311   st->key ^= zobSideToMove;
1312   prefetch((char*)TT.first_entry(st->key));
1313
1314   sideToMove = opposite_color(sideToMove);
1315   st->epSquare = SQ_NONE;
1316   st->rule50++;
1317   st->pliesFromNull = 0;
1318   st->value += (sideToMove == WHITE) ?  TempoValue : -TempoValue;
1319 }
1320
1321
1322 /// Position::undo_null_move() unmakes a "null move".
1323
1324 void Position::undo_null_move() {
1325
1326   assert(is_ok());
1327   assert(!is_check());
1328
1329   // Restore information from the our backup StateInfo object
1330   StateInfo* backupSt = st->previous;
1331   st->key      = backupSt->key;
1332   st->epSquare = backupSt->epSquare;
1333   st->value    = backupSt->value;
1334   st->previous = backupSt->previous;
1335   st->pliesFromNull = backupSt->pliesFromNull;
1336
1337   // Update the necessary information
1338   sideToMove = opposite_color(sideToMove);
1339   st->rule50--;
1340   st->gamePly--;
1341 }
1342
1343
1344 /// Position::see() is a static exchange evaluator: It tries to estimate the
1345 /// material gain or loss resulting from a move. There are three versions of
1346 /// this function: One which takes a destination square as input, one takes a
1347 /// move, and one which takes a 'from' and a 'to' square. The function does
1348 /// not yet understand promotions captures.
1349
1350 int Position::see(Move m) const {
1351
1352   assert(move_is_ok(m));
1353   return see(move_from(m), move_to(m));
1354 }
1355
1356 int Position::see_sign(Move m) const {
1357
1358   assert(move_is_ok(m));
1359
1360   Square from = move_from(m);
1361   Square to = move_to(m);
1362
1363   // Early return if SEE cannot be negative because captured piece value
1364   // is not less then capturing one. Note that king moves always return
1365   // here because king midgame value is set to 0.
1366   if (midgame_value_of_piece_on(to) >= midgame_value_of_piece_on(from))
1367       return 1;
1368
1369   return see(from, to);
1370 }
1371
1372 int Position::see(Square from, Square to) const {
1373
1374   Bitboard occ, attackers, stmAttackers, b;
1375   int swapList[32], slIndex = 1;
1376   PieceType capturedType, pt;
1377   Color stm;
1378
1379   assert(square_is_ok(from));
1380   assert(square_is_ok(to));
1381
1382   capturedType = type_of_piece_on(to);
1383
1384   // King cannot be recaptured
1385   if (capturedType == KING)
1386       return seeValues[capturedType];
1387
1388   occ = occupied_squares();
1389
1390   // Handle en passant moves
1391   if (st->epSquare == to && type_of_piece_on(from) == PAWN)
1392   {
1393       Square capQq = (side_to_move() == WHITE) ? (to - DELTA_N) : (to - DELTA_S);
1394
1395       assert(capturedType == PIECE_TYPE_NONE);
1396       assert(type_of_piece_on(capQq) == PAWN);
1397
1398       // Remove the captured pawn
1399       clear_bit(&occ, capQq);
1400       capturedType = PAWN;
1401   }
1402
1403   // Find all attackers to the destination square, with the moving piece
1404   // removed, but possibly an X-ray attacker added behind it.
1405   clear_bit(&occ, from);
1406   attackers =  (rook_attacks_bb(to, occ)      & pieces(ROOK, QUEEN))
1407              | (bishop_attacks_bb(to, occ)    & pieces(BISHOP, QUEEN))
1408              | (attacks_from<KNIGHT>(to)      & pieces(KNIGHT))
1409              | (attacks_from<KING>(to)        & pieces(KING))
1410              | (attacks_from<PAWN>(to, WHITE) & pieces(PAWN, BLACK))
1411              | (attacks_from<PAWN>(to, BLACK) & pieces(PAWN, WHITE));
1412
1413   // If the opponent has no attackers we are finished
1414   stm = opposite_color(color_of_piece_on(from));
1415   stmAttackers = attackers & pieces_of_color(stm);
1416   if (!stmAttackers)
1417       return seeValues[capturedType];
1418
1419   // The destination square is defended, which makes things rather more
1420   // difficult to compute. We proceed by building up a "swap list" containing
1421   // the material gain or loss at each stop in a sequence of captures to the
1422   // destination square, where the sides alternately capture, and always
1423   // capture with the least valuable piece. After each capture, we look for
1424   // new X-ray attacks from behind the capturing piece.
1425   swapList[0] = seeValues[capturedType];
1426   capturedType = type_of_piece_on(from);
1427
1428   do {
1429       // Locate the least valuable attacker for the side to move. The loop
1430       // below looks like it is potentially infinite, but it isn't. We know
1431       // that the side to move still has at least one attacker left.
1432       for (pt = PAWN; !(stmAttackers & pieces(pt)); pt++)
1433           assert(pt < KING);
1434
1435       // Remove the attacker we just found from the 'attackers' bitboard,
1436       // and scan for new X-ray attacks behind the attacker.
1437       b = stmAttackers & pieces(pt);
1438       occ ^= (b & (~b + 1));
1439       attackers |=  (rook_attacks_bb(to, occ)   & pieces(ROOK, QUEEN))
1440                   | (bishop_attacks_bb(to, occ) & pieces(BISHOP, QUEEN));
1441
1442       attackers &= occ; // Cut out pieces we've already done
1443
1444       // Add the new entry to the swap list
1445       assert(slIndex < 32);
1446       swapList[slIndex] = -swapList[slIndex - 1] + seeValues[capturedType];
1447       slIndex++;
1448
1449       // Remember the value of the capturing piece, and change the side to move
1450       // before beginning the next iteration
1451       capturedType = pt;
1452       stm = opposite_color(stm);
1453       stmAttackers = attackers & pieces_of_color(stm);
1454
1455       // Stop after a king capture
1456       if (pt == KING && stmAttackers)
1457       {
1458           assert(slIndex < 32);
1459           swapList[slIndex++] = QueenValueMidgame*10;
1460           break;
1461       }
1462   } while (stmAttackers);
1463
1464   // Having built the swap list, we negamax through it to find the best
1465   // achievable score from the point of view of the side to move
1466   while (--slIndex)
1467       swapList[slIndex-1] = Min(-swapList[slIndex], swapList[slIndex-1]);
1468
1469   return swapList[0];
1470 }
1471
1472
1473 /// Position::clear() erases the position object to a pristine state, with an
1474 /// empty board, white to move, and no castling rights.
1475
1476 void Position::clear() {
1477
1478   st = &startState;
1479   memset(st, 0, sizeof(StateInfo));
1480   st->epSquare = SQ_NONE;
1481   startPosPlyCounter = 0;
1482
1483   memset(byColorBB,  0, sizeof(Bitboard) * 2);
1484   memset(byTypeBB,   0, sizeof(Bitboard) * 8);
1485   memset(pieceCount, 0, sizeof(int) * 2 * 8);
1486   memset(index,      0, sizeof(int) * 64);
1487
1488   for (int i = 0; i < 64; i++)
1489       board[i] = PIECE_NONE;
1490
1491   for (int i = 0; i < 8; i++)
1492       for (int j = 0; j < 16; j++)
1493           pieceList[0][i][j] = pieceList[1][i][j] = SQ_NONE;
1494
1495   for (Square sq = SQ_A1; sq <= SQ_H8; sq++)
1496       castleRightsMask[sq] = ALL_CASTLES;
1497
1498   sideToMove = WHITE;
1499   initialKFile = FILE_E;
1500   initialKRFile = FILE_H;
1501   initialQRFile = FILE_A;
1502 }
1503
1504
1505 /// Position::reset_game_ply() simply sets gamePly to 0. It is used from the
1506 /// UCI interface code, whenever a non-reversible move is made in a
1507 /// 'position fen <fen> moves m1 m2 ...' command.  This makes it possible
1508 /// for the program to handle games of arbitrary length, as long as the GUI
1509 /// handles draws by the 50 move rule correctly.
1510
1511 void Position::reset_game_ply() {
1512
1513   st->gamePly = 0;
1514 }
1515
1516 void Position::inc_startpos_ply_counter() {
1517
1518   startPosPlyCounter++;
1519 }
1520
1521 /// Position::put_piece() puts a piece on the given square of the board,
1522 /// updating the board array, bitboards, and piece counts.
1523
1524 void Position::put_piece(Piece p, Square s) {
1525
1526   Color c = color_of_piece(p);
1527   PieceType pt = type_of_piece(p);
1528
1529   board[s] = p;
1530   index[s] = pieceCount[c][pt];
1531   pieceList[c][pt][index[s]] = s;
1532
1533   set_bit(&(byTypeBB[pt]), s);
1534   set_bit(&(byColorBB[c]), s);
1535   set_bit(&byTypeBB[0], s); // HACK: byTypeBB[0] contains all occupied squares.
1536
1537   pieceCount[c][pt]++;
1538 }
1539
1540
1541 /// Position::allow_oo() gives the given side the right to castle kingside.
1542 /// Used when setting castling rights during parsing of FEN strings.
1543
1544 void Position::allow_oo(Color c) {
1545
1546   st->castleRights |= (1 + int(c));
1547 }
1548
1549
1550 /// Position::allow_ooo() gives the given side the right to castle queenside.
1551 /// Used when setting castling rights during parsing of FEN strings.
1552
1553 void Position::allow_ooo(Color c) {
1554
1555   st->castleRights |= (4 + 4*int(c));
1556 }
1557
1558
1559 /// Position::compute_key() computes the hash key of the position. The hash
1560 /// key is usually updated incrementally as moves are made and unmade, the
1561 /// compute_key() function is only used when a new position is set up, and
1562 /// to verify the correctness of the hash key when running in debug mode.
1563
1564 Key Position::compute_key() const {
1565
1566   Key result = 0;
1567
1568   for (Square s = SQ_A1; s <= SQ_H8; s++)
1569       if (square_is_occupied(s))
1570           result ^= zobrist[color_of_piece_on(s)][type_of_piece_on(s)][s];
1571
1572   if (ep_square() != SQ_NONE)
1573       result ^= zobEp[ep_square()];
1574
1575   result ^= zobCastle[st->castleRights];
1576   if (side_to_move() == BLACK)
1577       result ^= zobSideToMove;
1578
1579   return result;
1580 }
1581
1582
1583 /// Position::compute_pawn_key() computes the hash key of the position. The
1584 /// hash key is usually updated incrementally as moves are made and unmade,
1585 /// the compute_pawn_key() function is only used when a new position is set
1586 /// up, and to verify the correctness of the pawn hash key when running in
1587 /// debug mode.
1588
1589 Key Position::compute_pawn_key() const {
1590
1591   Key result = 0;
1592   Bitboard b;
1593   Square s;
1594
1595   for (Color c = WHITE; c <= BLACK; c++)
1596   {
1597       b = pieces(PAWN, c);
1598       while (b)
1599       {
1600           s = pop_1st_bit(&b);
1601           result ^= zobrist[c][PAWN][s];
1602       }
1603   }
1604   return result;
1605 }
1606
1607
1608 /// Position::compute_material_key() computes the hash key of the position.
1609 /// The hash key is usually updated incrementally as moves are made and unmade,
1610 /// the compute_material_key() function is only used when a new position is set
1611 /// up, and to verify the correctness of the material hash key when running in
1612 /// debug mode.
1613
1614 Key Position::compute_material_key() const {
1615
1616   Key result = 0;
1617   for (Color c = WHITE; c <= BLACK; c++)
1618       for (PieceType pt = PAWN; pt <= QUEEN; pt++)
1619       {
1620           int count = piece_count(c, pt);
1621           for (int i = 0; i < count; i++)
1622               result ^= zobrist[c][pt][i];
1623       }
1624   return result;
1625 }
1626
1627
1628 /// Position::compute_value() compute the incremental scores for the middle
1629 /// game and the endgame. These functions are used to initialize the incremental
1630 /// scores when a new position is set up, and to verify that the scores are correctly
1631 /// updated by do_move and undo_move when the program is running in debug mode.
1632 Score Position::compute_value() const {
1633
1634   Score result = SCORE_ZERO;
1635   Bitboard b;
1636   Square s;
1637
1638   for (Color c = WHITE; c <= BLACK; c++)
1639       for (PieceType pt = PAWN; pt <= KING; pt++)
1640       {
1641           b = pieces(pt, c);
1642           while (b)
1643           {
1644               s = pop_1st_bit(&b);
1645               assert(piece_on(s) == piece_of_color_and_type(c, pt));
1646               result += pst(c, pt, s);
1647           }
1648       }
1649
1650   result += (side_to_move() == WHITE ? TempoValue / 2 : -TempoValue / 2);
1651   return result;
1652 }
1653
1654
1655 /// Position::compute_non_pawn_material() computes the total non-pawn middle
1656 /// game material score for the given side. Material scores are updated
1657 /// incrementally during the search, this function is only used while
1658 /// initializing a new Position object.
1659
1660 Value Position::compute_non_pawn_material(Color c) const {
1661
1662   Value result = VALUE_ZERO;
1663
1664   for (PieceType pt = KNIGHT; pt <= QUEEN; pt++)
1665   {
1666       Bitboard b = pieces(pt, c);
1667       while (b)
1668       {
1669           assert(piece_on(first_1(b)) == piece_of_color_and_type(c, pt));
1670
1671           pop_1st_bit(&b);
1672           result += PieceValueMidgame[pt];
1673       }
1674   }
1675   return result;
1676 }
1677
1678
1679 /// Position::is_draw() tests whether the position is drawn by material,
1680 /// repetition, or the 50 moves rule. It does not detect stalemates, this
1681 /// must be done by the search.
1682
1683 bool Position::is_draw() const {
1684
1685   // Draw by material?
1686   if (   !pieces(PAWN)
1687       && (non_pawn_material(WHITE) + non_pawn_material(BLACK) <= BishopValueMidgame))
1688       return true;
1689
1690   // Draw by the 50 moves rule?
1691   if (st->rule50 > 99 && (st->rule50 > 100 || !is_mate()))
1692       return true;
1693
1694   // Draw by repetition?
1695   for (int i = 4, e = Min(Min(st->gamePly, st->rule50), st->pliesFromNull); i <= e; i += 2)
1696       if (history[st->gamePly - i] == st->key)
1697           return true;
1698
1699   return false;
1700 }
1701
1702
1703 /// Position::is_mate() returns true or false depending on whether the
1704 /// side to move is checkmated.
1705
1706 bool Position::is_mate() const {
1707
1708   MoveStack moves[MOVES_MAX];
1709   return is_check() && (generate_moves(*this, moves) == moves);
1710 }
1711
1712
1713 /// Position::has_mate_threat() tests whether the side to move is under
1714 /// a threat of being mated in one from the current position.
1715
1716 bool Position::has_mate_threat() {
1717
1718   MoveStack mlist[MOVES_MAX], *last, *cur;
1719   StateInfo st1, st2;
1720   bool mateFound = false;
1721
1722   // If we are under check it's up to evasions to do the job
1723   if (is_check())
1724       return false;
1725
1726   // First pass the move to our opponent doing a null move
1727   do_null_move(st1);
1728
1729   // Then generate pseudo-legal moves that give check
1730   last = generate_non_capture_checks(*this, mlist);
1731   last = generate_captures(*this, last);
1732
1733   // Loop through the moves, and see if one of them gives mate
1734   Bitboard pinned = pinned_pieces(sideToMove);
1735   CheckInfo ci(*this);
1736   for (cur = mlist; cur != last && !mateFound; cur++)
1737   {
1738       Move move = cur->move;
1739       if (   !pl_move_is_legal(move, pinned)
1740           || !move_is_check(move, ci))
1741           continue;
1742
1743       do_move(move, st2, ci, true);
1744
1745       if (is_mate())
1746           mateFound = true;
1747
1748       undo_move(move);
1749   }
1750
1751   undo_null_move();
1752   return mateFound;
1753 }
1754
1755
1756 /// Position::init_zobrist() is a static member function which initializes at
1757 /// startup the various arrays used to compute hash keys.
1758
1759 void Position::init_zobrist() {
1760
1761   int i,j, k;
1762
1763   for (i = 0; i < 2; i++) for (j = 0; j < 8; j++) for (k = 0; k < 64; k++)
1764       zobrist[i][j][k] = Key(genrand_int64());
1765
1766   for (i = 0; i < 64; i++)
1767       zobEp[i] = Key(genrand_int64());
1768
1769   for (i = 0; i < 16; i++)
1770       zobCastle[i] = Key(genrand_int64());
1771
1772   zobSideToMove = Key(genrand_int64());
1773   zobExclusion  = Key(genrand_int64());
1774 }
1775
1776
1777 /// Position::init_piece_square_tables() initializes the piece square tables.
1778 /// This is a two-step operation: First, the white halves of the tables are
1779 /// copied from the MgPST[][] and EgPST[][] arrays. Second, the black halves
1780 /// of the tables are initialized by mirroring and changing the sign of the
1781 /// corresponding white scores.
1782
1783 void Position::init_piece_square_tables() {
1784
1785   for (Square s = SQ_A1; s <= SQ_H8; s++)
1786       for (Piece p = WP; p <= WK; p++)
1787           PieceSquareTable[p][s] = make_score(MgPST[p][s], EgPST[p][s]);
1788
1789   for (Square s = SQ_A1; s <= SQ_H8; s++)
1790       for (Piece p = BP; p <= BK; p++)
1791           PieceSquareTable[p][s] = -PieceSquareTable[p-8][flip_square(s)];
1792 }
1793
1794
1795 /// Position::flipped_copy() makes a copy of the input position, but with
1796 /// the white and black sides reversed. This is only useful for debugging,
1797 /// especially for finding evaluation symmetry bugs.
1798
1799 void Position::flipped_copy(const Position& pos) {
1800
1801   assert(pos.is_ok());
1802
1803   clear();
1804   threadID = pos.thread();
1805
1806   // Board
1807   for (Square s = SQ_A1; s <= SQ_H8; s++)
1808       if (!pos.square_is_empty(s))
1809           put_piece(Piece(int(pos.piece_on(s)) ^ 8), flip_square(s));
1810
1811   // Side to move
1812   sideToMove = opposite_color(pos.side_to_move());
1813
1814   // Castling rights
1815   if (pos.can_castle_kingside(WHITE))  allow_oo(BLACK);
1816   if (pos.can_castle_queenside(WHITE)) allow_ooo(BLACK);
1817   if (pos.can_castle_kingside(BLACK))  allow_oo(WHITE);
1818   if (pos.can_castle_queenside(BLACK)) allow_ooo(WHITE);
1819
1820   initialKFile  = pos.initialKFile;
1821   initialKRFile = pos.initialKRFile;
1822   initialQRFile = pos.initialQRFile;
1823
1824   castleRightsMask[make_square(initialKFile,  RANK_1)] ^= (WHITE_OO | WHITE_OOO);
1825   castleRightsMask[make_square(initialKFile,  RANK_8)] ^= (BLACK_OO | BLACK_OOO);
1826   castleRightsMask[make_square(initialKRFile, RANK_1)] ^=  WHITE_OO;
1827   castleRightsMask[make_square(initialKRFile, RANK_8)] ^=  BLACK_OO;
1828   castleRightsMask[make_square(initialQRFile, RANK_1)] ^=  WHITE_OOO;
1829   castleRightsMask[make_square(initialQRFile, RANK_8)] ^=  BLACK_OOO;
1830
1831   // En passant square
1832   if (pos.st->epSquare != SQ_NONE)
1833       st->epSquare = flip_square(pos.st->epSquare);
1834
1835   // Checkers
1836   find_checkers();
1837
1838   // Hash keys
1839   st->key = compute_key();
1840   st->pawnKey = compute_pawn_key();
1841   st->materialKey = compute_material_key();
1842
1843   // Incremental scores
1844   st->value = compute_value();
1845
1846   // Material
1847   st->npMaterial[WHITE] = compute_non_pawn_material(WHITE);
1848   st->npMaterial[BLACK] = compute_non_pawn_material(BLACK);
1849
1850   assert(is_ok());
1851 }
1852
1853
1854 /// Position::is_ok() performs some consitency checks for the position object.
1855 /// This is meant to be helpful when debugging.
1856
1857 bool Position::is_ok(int* failedStep) const {
1858
1859   // What features of the position should be verified?
1860   static const bool debugBitboards = false;
1861   static const bool debugKingCount = false;
1862   static const bool debugKingCapture = false;
1863   static const bool debugCheckerCount = false;
1864   static const bool debugKey = false;
1865   static const bool debugMaterialKey = false;
1866   static const bool debugPawnKey = false;
1867   static const bool debugIncrementalEval = false;
1868   static const bool debugNonPawnMaterial = false;
1869   static const bool debugPieceCounts = false;
1870   static const bool debugPieceList = false;
1871   static const bool debugCastleSquares = false;
1872
1873   if (failedStep) *failedStep = 1;
1874
1875   // Side to move OK?
1876   if (!color_is_ok(side_to_move()))
1877       return false;
1878
1879   // Are the king squares in the position correct?
1880   if (failedStep) (*failedStep)++;
1881   if (piece_on(king_square(WHITE)) != WK)
1882       return false;
1883
1884   if (failedStep) (*failedStep)++;
1885   if (piece_on(king_square(BLACK)) != BK)
1886       return false;
1887
1888   // Castle files OK?
1889   if (failedStep) (*failedStep)++;
1890   if (!file_is_ok(initialKRFile))
1891       return false;
1892
1893   if (!file_is_ok(initialQRFile))
1894       return false;
1895
1896   // Do both sides have exactly one king?
1897   if (failedStep) (*failedStep)++;
1898   if (debugKingCount)
1899   {
1900       int kingCount[2] = {0, 0};
1901       for (Square s = SQ_A1; s <= SQ_H8; s++)
1902           if (type_of_piece_on(s) == KING)
1903               kingCount[color_of_piece_on(s)]++;
1904
1905       if (kingCount[0] != 1 || kingCount[1] != 1)
1906           return false;
1907   }
1908
1909   // Can the side to move capture the opponent's king?
1910   if (failedStep) (*failedStep)++;
1911   if (debugKingCapture)
1912   {
1913       Color us = side_to_move();
1914       Color them = opposite_color(us);
1915       Square ksq = king_square(them);
1916       if (attackers_to(ksq) & pieces_of_color(us))
1917           return false;
1918   }
1919
1920   // Is there more than 2 checkers?
1921   if (failedStep) (*failedStep)++;
1922   if (debugCheckerCount && count_1s<CNT32>(st->checkersBB) > 2)
1923       return false;
1924
1925   // Bitboards OK?
1926   if (failedStep) (*failedStep)++;
1927   if (debugBitboards)
1928   {
1929       // The intersection of the white and black pieces must be empty
1930       if ((pieces_of_color(WHITE) & pieces_of_color(BLACK)) != EmptyBoardBB)
1931           return false;
1932
1933       // The union of the white and black pieces must be equal to all
1934       // occupied squares
1935       if ((pieces_of_color(WHITE) | pieces_of_color(BLACK)) != occupied_squares())
1936           return false;
1937
1938       // Separate piece type bitboards must have empty intersections
1939       for (PieceType p1 = PAWN; p1 <= KING; p1++)
1940           for (PieceType p2 = PAWN; p2 <= KING; p2++)
1941               if (p1 != p2 && (pieces(p1) & pieces(p2)))
1942                   return false;
1943   }
1944
1945   // En passant square OK?
1946   if (failedStep) (*failedStep)++;
1947   if (ep_square() != SQ_NONE)
1948   {
1949       // The en passant square must be on rank 6, from the point of view of the
1950       // side to move.
1951       if (relative_rank(side_to_move(), ep_square()) != RANK_6)
1952           return false;
1953   }
1954
1955   // Hash key OK?
1956   if (failedStep) (*failedStep)++;
1957   if (debugKey && st->key != compute_key())
1958       return false;
1959
1960   // Pawn hash key OK?
1961   if (failedStep) (*failedStep)++;
1962   if (debugPawnKey && st->pawnKey != compute_pawn_key())
1963       return false;
1964
1965   // Material hash key OK?
1966   if (failedStep) (*failedStep)++;
1967   if (debugMaterialKey && st->materialKey != compute_material_key())
1968       return false;
1969
1970   // Incremental eval OK?
1971   if (failedStep) (*failedStep)++;
1972   if (debugIncrementalEval && st->value != compute_value())
1973       return false;
1974
1975   // Non-pawn material OK?
1976   if (failedStep) (*failedStep)++;
1977   if (debugNonPawnMaterial)
1978   {
1979       if (st->npMaterial[WHITE] != compute_non_pawn_material(WHITE))
1980           return false;
1981
1982       if (st->npMaterial[BLACK] != compute_non_pawn_material(BLACK))
1983           return false;
1984   }
1985
1986   // Piece counts OK?
1987   if (failedStep) (*failedStep)++;
1988   if (debugPieceCounts)
1989       for (Color c = WHITE; c <= BLACK; c++)
1990           for (PieceType pt = PAWN; pt <= KING; pt++)
1991               if (pieceCount[c][pt] != count_1s<CNT32>(pieces(pt, c)))
1992                   return false;
1993
1994   if (failedStep) (*failedStep)++;
1995   if (debugPieceList)
1996   {
1997       for (Color c = WHITE; c <= BLACK; c++)
1998           for (PieceType pt = PAWN; pt <= KING; pt++)
1999               for (int i = 0; i < pieceCount[c][pt]; i++)
2000               {
2001                   if (piece_on(piece_list(c, pt, i)) != piece_of_color_and_type(c, pt))
2002                       return false;
2003
2004                   if (index[piece_list(c, pt, i)] != i)
2005                       return false;
2006               }
2007   }
2008
2009   if (failedStep) (*failedStep)++;
2010   if (debugCastleSquares) {
2011       for (Color c = WHITE; c <= BLACK; c++) {
2012           if (can_castle_kingside(c) && piece_on(initial_kr_square(c)) != piece_of_color_and_type(c, ROOK))
2013               return false;
2014           if (can_castle_queenside(c) && piece_on(initial_qr_square(c)) != piece_of_color_and_type(c, ROOK))
2015               return false;
2016       }
2017       if (castleRightsMask[initial_kr_square(WHITE)] != (ALL_CASTLES ^ WHITE_OO))
2018           return false;
2019       if (castleRightsMask[initial_qr_square(WHITE)] != (ALL_CASTLES ^ WHITE_OOO))
2020           return false;
2021       if (castleRightsMask[initial_kr_square(BLACK)] != (ALL_CASTLES ^ BLACK_OO))
2022           return false;
2023       if (castleRightsMask[initial_qr_square(BLACK)] != (ALL_CASTLES ^ BLACK_OOO))
2024           return false;
2025   }
2026
2027   if (failedStep) *failedStep = 0;
2028   return true;
2029 }