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