]> git.sesse.net Git - stockfish/blob - src/move.cpp
Fix incorrect assert(PvNode == (alpha != beta - 1))
[stockfish] / src / move.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-2012 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 #include <cassert>
21 #include <string>
22
23 #include "movegen.h"
24 #include "position.h"
25
26 using std::string;
27
28 /// move_to_uci() converts a move to a string in coordinate notation
29 /// (g1f3, a7a8q, etc.). The only special case is castling moves, where we
30 /// print in the e1g1 notation in normal chess mode, and in e1h1 notation in
31 /// Chess960 mode. Instead internally Move is coded as "king captures rook".
32
33 const string move_to_uci(Move m, bool chess960) {
34
35   Square from = from_sq(m);
36   Square to = to_sq(m);
37   string promotion;
38
39   if (m == MOVE_NONE)
40       return "(none)";
41
42   if (m == MOVE_NULL)
43       return "0000";
44
45   if (is_castle(m) && !chess960)
46       to = from + (file_of(to) == FILE_H ? Square(2) : -Square(2));
47
48   if (is_promotion(m))
49       promotion = char(tolower(piece_type_to_char(promotion_piece_type(m))));
50
51   return square_to_string(from) + square_to_string(to) + promotion;
52 }
53
54
55 /// move_from_uci() takes a position and a string representing a move in
56 /// simple coordinate notation and returns an equivalent Move if any.
57 /// Moves are guaranteed to be legal.
58
59 Move move_from_uci(const Position& pos, const string& str) {
60
61   for (MoveList<MV_LEGAL> ml(pos); !ml.end(); ++ml)
62       if (str == move_to_uci(ml.move(), pos.is_chess960()))
63           return ml.move();
64
65   return MOVE_NONE;
66 }
67
68
69 /// move_to_san() takes a position and a move as input, where it is assumed
70 /// that the move is a legal move for the position. The return value is
71 /// a string containing the move in short algebraic notation.
72
73 const string move_to_san(Position& pos, Move m) {
74
75   if (m == MOVE_NONE)
76       return "(none)";
77
78   if (m == MOVE_NULL)
79       return "(null)";
80
81   assert(is_ok(m));
82
83   Bitboard attackers;
84   bool ambiguousMove, ambiguousFile, ambiguousRank;
85   Square sq, from = from_sq(m);
86   Square to = to_sq(m);
87   PieceType pt = type_of(pos.piece_on(from));
88   string san;
89
90   if (is_castle(m))
91       san = (to_sq(m) < from_sq(m) ? "O-O-O" : "O-O");
92   else
93   {
94       if (pt != PAWN)
95       {
96           san = piece_type_to_char(pt);
97
98           // Disambiguation if we have more then one piece with destination 'to'
99           // note that for pawns is not needed because starting file is explicit.
100           attackers = pos.attackers_to(to) & pos.pieces(pt, pos.side_to_move());
101           clear_bit(&attackers, from);
102           ambiguousMove = ambiguousFile = ambiguousRank = false;
103
104           while (attackers)
105           {
106               sq = pop_1st_bit(&attackers);
107
108               // Pinned pieces are not included in the possible sub-set
109               if (!pos.pl_move_is_legal(make_move(sq, to), pos.pinned_pieces()))
110                   continue;
111
112               if (file_of(sq) == file_of(from))
113                   ambiguousFile = true;
114
115               if (rank_of(sq) == rank_of(from))
116                   ambiguousRank = true;
117
118               ambiguousMove = true;
119           }
120
121           if (ambiguousMove)
122           {
123               if (!ambiguousFile)
124                   san += file_to_char(file_of(from));
125               else if (!ambiguousRank)
126                   san += rank_to_char(rank_of(from));
127               else
128                   san += square_to_string(from);
129           }
130       }
131
132       if (pos.is_capture(m))
133       {
134           if (pt == PAWN)
135               san += file_to_char(file_of(from));
136
137           san += 'x';
138       }
139
140       san += square_to_string(to);
141
142       if (is_promotion(m))
143       {
144           san += '=';
145           san += piece_type_to_char(promotion_piece_type(m));
146       }
147   }
148
149   if (pos.move_gives_check(m, CheckInfo(pos)))
150   {
151       StateInfo st;
152       pos.do_move(m, st);
153       san += MoveList<MV_LEGAL>(pos).size() ? "+" : "#";
154       pos.undo_move(m);
155   }
156
157   return san;
158 }