]> git.sesse.net Git - stockfish/blob - src/movegen.cpp
Singular quiet LMR
[stockfish] / src / movegen.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-2015 Marco Costalba, Joona Kiiski, Tord Romstad
5   Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
6
7   Stockfish is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   Stockfish is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include <cassert>
22
23 #include "movegen.h"
24 #include "position.h"
25
26 namespace {
27
28   template<GenType Type, Direction D>
29   ExtMove* make_promotions(ExtMove* moveList, Square to, Square ksq) {
30
31     if (Type == CAPTURES || Type == EVASIONS || Type == NON_EVASIONS)
32         *moveList++ = make<PROMOTION>(to - D, to, QUEEN);
33
34     if (Type == QUIETS || Type == EVASIONS || Type == NON_EVASIONS)
35     {
36         *moveList++ = make<PROMOTION>(to - D, to, ROOK);
37         *moveList++ = make<PROMOTION>(to - D, to, BISHOP);
38         *moveList++ = make<PROMOTION>(to - D, to, KNIGHT);
39     }
40
41     // Knight promotion is the only promotion that can give a direct check
42     // that's not already included in the queen promotion.
43     if (Type == QUIET_CHECKS && (attacks_bb<KNIGHT>(to) & ksq))
44         *moveList++ = make<PROMOTION>(to - D, to, KNIGHT);
45     else
46         (void)ksq; // Silence a warning under MSVC
47
48     return moveList;
49   }
50
51
52   template<Color Us, GenType Type>
53   ExtMove* generate_pawn_moves(const Position& pos, ExtMove* moveList, Bitboard target) {
54
55     constexpr Color     Them     = ~Us;
56     constexpr Bitboard  TRank7BB = (Us == WHITE ? Rank7BB    : Rank2BB);
57     constexpr Bitboard  TRank3BB = (Us == WHITE ? Rank3BB    : Rank6BB);
58     constexpr Direction Up       = pawn_push(Us);
59     constexpr Direction UpRight  = (Us == WHITE ? NORTH_EAST : SOUTH_WEST);
60     constexpr Direction UpLeft   = (Us == WHITE ? NORTH_WEST : SOUTH_EAST);
61
62     const Square ksq = pos.square<KING>(Them);
63     Bitboard emptySquares;
64
65     Bitboard pawnsOn7    = pos.pieces(Us, PAWN) &  TRank7BB;
66     Bitboard pawnsNotOn7 = pos.pieces(Us, PAWN) & ~TRank7BB;
67
68     Bitboard enemies = (Type == EVASIONS ? pos.pieces(Them) & target:
69                         Type == CAPTURES ? target : pos.pieces(Them));
70
71     // Single and double pawn pushes, no promotions
72     if (Type != CAPTURES)
73     {
74         emptySquares = (Type == QUIETS || Type == QUIET_CHECKS ? target : ~pos.pieces());
75
76         Bitboard b1 = shift<Up>(pawnsNotOn7)   & emptySquares;
77         Bitboard b2 = shift<Up>(b1 & TRank3BB) & emptySquares;
78
79         if (Type == EVASIONS) // Consider only blocking squares
80         {
81             b1 &= target;
82             b2 &= target;
83         }
84
85         if (Type == QUIET_CHECKS)
86         {
87             b1 &= pawn_attacks_bb(Them, ksq);
88             b2 &= pawn_attacks_bb(Them, ksq);
89
90             // Add pawn pushes which give discovered check. This is possible only
91             // if the pawn is not on the same file as the enemy king, because we
92             // don't generate captures. Note that a possible discovery check
93             // promotion has been already generated amongst the captures.
94             Bitboard dcCandidateQuiets = pos.blockers_for_king(Them) & pawnsNotOn7;
95             if (dcCandidateQuiets)
96             {
97                 Bitboard dc1 = shift<Up>(dcCandidateQuiets) & emptySquares & ~file_bb(ksq);
98                 Bitboard dc2 = shift<Up>(dc1 & TRank3BB) & emptySquares;
99
100                 b1 |= dc1;
101                 b2 |= dc2;
102             }
103         }
104
105         while (b1)
106         {
107             Square to = pop_lsb(&b1);
108             *moveList++ = make_move(to - Up, to);
109         }
110
111         while (b2)
112         {
113             Square to = pop_lsb(&b2);
114             *moveList++ = make_move(to - Up - Up, to);
115         }
116     }
117
118     // Promotions and underpromotions
119     if (pawnsOn7)
120     {
121         if (Type == CAPTURES)
122             emptySquares = ~pos.pieces();
123
124         if (Type == EVASIONS)
125             emptySquares &= target;
126
127         Bitboard b1 = shift<UpRight>(pawnsOn7) & enemies;
128         Bitboard b2 = shift<UpLeft >(pawnsOn7) & enemies;
129         Bitboard b3 = shift<Up     >(pawnsOn7) & emptySquares;
130
131         while (b1)
132             moveList = make_promotions<Type, UpRight>(moveList, pop_lsb(&b1), ksq);
133
134         while (b2)
135             moveList = make_promotions<Type, UpLeft >(moveList, pop_lsb(&b2), ksq);
136
137         while (b3)
138             moveList = make_promotions<Type, Up     >(moveList, pop_lsb(&b3), ksq);
139     }
140
141     // Standard and en-passant captures
142     if (Type == CAPTURES || Type == EVASIONS || Type == NON_EVASIONS)
143     {
144         Bitboard b1 = shift<UpRight>(pawnsNotOn7) & enemies;
145         Bitboard b2 = shift<UpLeft >(pawnsNotOn7) & enemies;
146
147         while (b1)
148         {
149             Square to = pop_lsb(&b1);
150             *moveList++ = make_move(to - UpRight, to);
151         }
152
153         while (b2)
154         {
155             Square to = pop_lsb(&b2);
156             *moveList++ = make_move(to - UpLeft, to);
157         }
158
159         if (pos.ep_square() != SQ_NONE)
160         {
161             assert(rank_of(pos.ep_square()) == relative_rank(Us, RANK_6));
162
163             // An en passant capture can be an evasion only if the checking piece
164             // is the double pushed pawn and so is in the target. Otherwise this
165             // is a discovery check and we are forced to do otherwise.
166             if (Type == EVASIONS && !(target & (pos.ep_square() - Up)))
167                 return moveList;
168
169             b1 = pawnsNotOn7 & pawn_attacks_bb(Them, pos.ep_square());
170
171             assert(b1);
172
173             while (b1)
174                 *moveList++ = make<ENPASSANT>(pop_lsb(&b1), pos.ep_square());
175         }
176     }
177
178     return moveList;
179   }
180
181
182   template<PieceType Pt, bool Checks>
183   ExtMove* generate_moves(const Position& pos, ExtMove* moveList, Color us,
184                           Bitboard target) {
185
186     static_assert(Pt != KING && Pt != PAWN, "Unsupported piece type in generate_moves()");
187
188     const Square* pl = pos.squares<Pt>(us);
189
190     for (Square from = *pl; from != SQ_NONE; from = *++pl)
191     {
192         if (Checks)
193         {
194             if (    (Pt == BISHOP || Pt == ROOK || Pt == QUEEN)
195                 && !(attacks_bb<Pt>(from) & target & pos.check_squares(Pt)))
196                 continue;
197
198             if (pos.blockers_for_king(~us) & from)
199                 continue;
200         }
201
202         Bitboard b = attacks_bb<Pt>(from, pos.pieces()) & target;
203
204         if (Checks)
205             b &= pos.check_squares(Pt);
206
207         while (b)
208             *moveList++ = make_move(from, pop_lsb(&b));
209     }
210
211     return moveList;
212   }
213
214
215   template<Color Us, GenType Type>
216   ExtMove* generate_all(const Position& pos, ExtMove* moveList) {
217     constexpr bool Checks = Type == QUIET_CHECKS; // Reduce template instantations
218     Bitboard target;
219
220     switch (Type)
221     {
222         case CAPTURES:
223             target =  pos.pieces(~Us);
224             break;
225         case QUIETS:
226         case QUIET_CHECKS:
227             target = ~pos.pieces();
228             break;
229         case EVASIONS:
230         {
231             Square checksq = lsb(pos.checkers());
232             target = between_bb(pos.square<KING>(Us), checksq) | checksq;
233             break;
234         }
235         case NON_EVASIONS:
236             target = ~pos.pieces(Us);
237             break;
238         default:
239             static_assert(true, "Unsupported type in generate_all()");
240     }
241
242     moveList = generate_pawn_moves<Us, Type>(pos, moveList, target);
243     moveList = generate_moves<KNIGHT, Checks>(pos, moveList, Us, target);
244     moveList = generate_moves<BISHOP, Checks>(pos, moveList, Us, target);
245     moveList = generate_moves<  ROOK, Checks>(pos, moveList, Us, target);
246     moveList = generate_moves< QUEEN, Checks>(pos, moveList, Us, target);
247
248     if (Type != QUIET_CHECKS && Type != EVASIONS)
249     {
250         Square ksq = pos.square<KING>(Us);
251         Bitboard b = attacks_bb<KING>(ksq) & target;
252         while (b)
253             *moveList++ = make_move(ksq, pop_lsb(&b));
254
255         if ((Type != CAPTURES) && pos.can_castle(Us & ANY_CASTLING))
256             for(CastlingRights cr : { Us & KING_SIDE, Us & QUEEN_SIDE } )
257                 if (!pos.castling_impeded(cr) && pos.can_castle(cr))
258                     *moveList++ = make<CASTLING>(ksq, pos.castling_rook_square(cr));
259     }
260
261     return moveList;
262   }
263
264 } // namespace
265
266
267 /// <CAPTURES>     Generates all pseudo-legal captures and queen promotions
268 /// <QUIETS>       Generates all pseudo-legal non-captures and underpromotions
269 /// <NON_EVASIONS> Generates all pseudo-legal captures and non-captures
270 ///
271 /// Returns a pointer to the end of the move list.
272
273 template<GenType Type>
274 ExtMove* generate(const Position& pos, ExtMove* moveList) {
275
276   static_assert(Type == CAPTURES || Type == QUIETS || Type == NON_EVASIONS, "Unsupported type in generate()");
277   assert(!pos.checkers());
278
279   Color us = pos.side_to_move();
280
281   return us == WHITE ? generate_all<WHITE, Type>(pos, moveList)
282                      : generate_all<BLACK, Type>(pos, moveList);
283 }
284
285 // Explicit template instantiations
286 template ExtMove* generate<CAPTURES>(const Position&, ExtMove*);
287 template ExtMove* generate<QUIETS>(const Position&, ExtMove*);
288 template ExtMove* generate<NON_EVASIONS>(const Position&, ExtMove*);
289
290
291 /// generate<QUIET_CHECKS> generates all pseudo-legal non-captures and knight
292 /// underpromotions that give check. Returns a pointer to the end of the move list.
293 template<>
294 ExtMove* generate<QUIET_CHECKS>(const Position& pos, ExtMove* moveList) {
295
296   assert(!pos.checkers());
297
298   Color us = pos.side_to_move();
299   Bitboard dc = pos.blockers_for_king(~us) & pos.pieces(us) & ~pos.pieces(PAWN);
300
301   while (dc)
302   {
303      Square from = pop_lsb(&dc);
304      PieceType pt = type_of(pos.piece_on(from));
305
306      Bitboard b = attacks_bb(pt, from, pos.pieces()) & ~pos.pieces();
307
308      if (pt == KING)
309          b &= ~attacks_bb<QUEEN>(pos.square<KING>(~us));
310
311      while (b)
312          *moveList++ = make_move(from, pop_lsb(&b));
313   }
314
315   return us == WHITE ? generate_all<WHITE, QUIET_CHECKS>(pos, moveList)
316                      : generate_all<BLACK, QUIET_CHECKS>(pos, moveList);
317 }
318
319
320 /// generate<EVASIONS> generates all pseudo-legal check evasions when the side
321 /// to move is in check. Returns a pointer to the end of the move list.
322 template<>
323 ExtMove* generate<EVASIONS>(const Position& pos, ExtMove* moveList) {
324
325   assert(pos.checkers());
326
327   Color us = pos.side_to_move();
328   Square ksq = pos.square<KING>(us);
329   Bitboard sliderAttacks = 0;
330   Bitboard sliders = pos.checkers() & ~pos.pieces(KNIGHT, PAWN);
331
332   // Find all the squares attacked by slider checkers. We will remove them from
333   // the king evasions in order to skip known illegal moves, which avoids any
334   // useless legality checks later on.
335   while (sliders)
336       sliderAttacks |= LineBB[ksq][pop_lsb(&sliders)] & ~pos.checkers();
337
338   // Generate evasions for king, capture and non capture moves
339   Bitboard b = attacks_bb<KING>(ksq) & ~pos.pieces(us) & ~sliderAttacks;
340   while (b)
341       *moveList++ = make_move(ksq, pop_lsb(&b));
342
343   if (more_than_one(pos.checkers()))
344       return moveList; // Double check, only a king move can save the day
345
346   // Generate blocking evasions or captures of the checking piece
347   return us == WHITE ? generate_all<WHITE, EVASIONS>(pos, moveList)
348                      : generate_all<BLACK, EVASIONS>(pos, moveList);
349 }
350
351
352 /// generate<LEGAL> generates all the legal moves in the given position
353
354 template<>
355 ExtMove* generate<LEGAL>(const Position& pos, ExtMove* moveList) {
356
357   Color us = pos.side_to_move();
358   Bitboard pinned = pos.blockers_for_king(us) & pos.pieces(us);
359   Square ksq = pos.square<KING>(us);
360   ExtMove* cur = moveList;
361
362   moveList = pos.checkers() ? generate<EVASIONS    >(pos, moveList)
363                             : generate<NON_EVASIONS>(pos, moveList);
364   while (cur != moveList)
365       if (   (pinned || from_sq(*cur) == ksq || type_of(*cur) == ENPASSANT)
366           && !pos.legal(*cur))
367           *cur = (--moveList)->move;
368       else
369           ++cur;
370
371   return moveList;
372 }