]> git.sesse.net Git - stockfish/blob - src/uci.cpp
Fix PGO build with GCC (#904)
[stockfish] / src / uci.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-2016 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 <iostream>
22 #include <sstream>
23 #include <string>
24
25 #include "evaluate.h"
26 #include "movegen.h"
27 #include "position.h"
28 #include "search.h"
29 #include "thread.h"
30 #include "timeman.h"
31 #include "uci.h"
32 #include "syzygy/tbprobe.h"
33
34 using namespace std;
35
36 extern void benchmark(const Position& pos, istream& is);
37
38 namespace {
39
40   // FEN string of the initial position, normal chess
41   const char* StartFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
42
43   // A list to keep track of the position states along the setup moves (from the
44   // start position to the position just before the search starts). Needed by
45   // 'draw by repetition' detection.
46   StateListPtr States(new std::deque<StateInfo>(1));
47
48
49   // position() is called when engine receives the "position" UCI command.
50   // The function sets up the position described in the given FEN string ("fen")
51   // or the starting position ("startpos") and then makes the moves given in the
52   // following move list ("moves").
53
54   void position(Position& pos, istringstream& is) {
55
56     Move m;
57     string token, fen;
58
59     is >> token;
60
61     if (token == "startpos")
62     {
63         fen = StartFEN;
64         is >> token; // Consume "moves" token if any
65     }
66     else if (token == "fen")
67         while (is >> token && token != "moves")
68             fen += token + " ";
69     else
70         return;
71
72     States = StateListPtr(new std::deque<StateInfo>(1));
73     pos.set(fen, Options["UCI_Chess960"], &States->back(), Threads.main());
74
75     // Parse move list (if any)
76     while (is >> token && (m = UCI::to_move(pos, token)) != MOVE_NONE)
77     {
78         States->push_back(StateInfo());
79         pos.do_move(m, States->back());
80     }
81   }
82
83
84   // setoption() is called when engine receives the "setoption" UCI command. The
85   // function updates the UCI option ("name") to the given value ("value").
86
87   void setoption(istringstream& is) {
88
89     string token, name, value;
90
91     is >> token; // Consume "name" token
92
93     // Read option name (can contain spaces)
94     while (is >> token && token != "value")
95         name += string(" ", name.empty() ? 0 : 1) + token;
96
97     // Read option value (can contain spaces)
98     while (is >> token)
99         value += string(" ", value.empty() ? 0 : 1) + token;
100
101     if (Options.count(name))
102         Options[name] = value;
103     else
104         sync_cout << "No such option: " << name << sync_endl;
105   }
106
107
108   // go() is called when engine receives the "go" UCI command. The function sets
109   // the thinking time and other parameters from the input string, then starts
110   // the search.
111
112   void go(Position& pos, istringstream& is) {
113
114     Search::LimitsType limits;
115     string token;
116
117     limits.startTime = now(); // As early as possible!
118
119     while (is >> token)
120         if (token == "searchmoves")
121             while (is >> token)
122                 limits.searchmoves.push_back(UCI::to_move(pos, token));
123
124         else if (token == "wtime")     is >> limits.time[WHITE];
125         else if (token == "btime")     is >> limits.time[BLACK];
126         else if (token == "winc")      is >> limits.inc[WHITE];
127         else if (token == "binc")      is >> limits.inc[BLACK];
128         else if (token == "movestogo") is >> limits.movestogo;
129         else if (token == "depth")     is >> limits.depth;
130         else if (token == "nodes")     is >> limits.nodes;
131         else if (token == "movetime")  is >> limits.movetime;
132         else if (token == "mate")      is >> limits.mate;
133         else if (token == "infinite")  limits.infinite = 1;
134         else if (token == "ponder")    limits.ponder = 1;
135
136     Threads.start_thinking(pos, States, limits);
137   }
138
139 } // namespace
140
141
142 /// UCI::loop() waits for a command from stdin, parses it and calls the appropriate
143 /// function. Also intercepts EOF from stdin to ensure gracefully exiting if the
144 /// GUI dies unexpectedly. When called with some command line arguments, e.g. to
145 /// run 'bench', once the command is executed the function returns immediately.
146 /// In addition to the UCI ones, also some additional debug commands are supported.
147
148 void UCI::loop(int argc, char* argv[]) {
149
150   Position pos;
151   string token, cmd;
152
153   pos.set(StartFEN, false, &States->back(), Threads.main());
154
155   for (int i = 1; i < argc; ++i)
156       cmd += std::string(argv[i]) + " ";
157
158   do {
159       if (argc == 1 && !getline(cin, cmd)) // Block here waiting for input or EOF
160           cmd = "quit";
161
162       istringstream is(cmd);
163
164       token.clear(); // getline() could return empty or blank line
165       is >> skipws >> token;
166
167       // The GUI sends 'ponderhit' to tell us to ponder on the same move the
168       // opponent has played. In case Signals.stopOnPonderhit is set we are
169       // waiting for 'ponderhit' to stop the search (for instance because we
170       // already ran out of time), otherwise we should continue searching but
171       // switching from pondering to normal search.
172       if (    token == "quit"
173           ||  token == "stop"
174           || (token == "ponderhit" && Search::Signals.stopOnPonderhit))
175       {
176           Search::Signals.stop = true;
177           Threads.main()->start_searching(true); // Could be sleeping
178       }
179       else if (token == "ponderhit")
180           Search::Limits.ponder = 0; // Switch to normal search
181
182       else if (token == "uci")
183           sync_cout << "id name " << engine_info(true)
184                     << "\n"       << Options
185                     << "\nuciok"  << sync_endl;
186
187       else if (token == "ucinewgame")
188       {
189           Search::clear();
190           Tablebases::init(Options["SyzygyPath"]);
191           Time.availableNodes = 0;
192       }
193       else if (token == "isready")    sync_cout << "readyok" << sync_endl;
194       else if (token == "go")         go(pos, is);
195       else if (token == "position")   position(pos, is);
196       else if (token == "setoption")  setoption(is);
197
198       // Additional custom non-UCI commands, useful for debugging
199       else if (token == "flip")       pos.flip();
200       else if (token == "bench")      benchmark(pos, is);
201       else if (token == "d")          sync_cout << pos << sync_endl;
202       else if (token == "eval")       sync_cout << Eval::trace(pos) << sync_endl;
203       else if (token == "perft")
204       {
205           int depth;
206           stringstream ss;
207
208           is >> depth;
209           ss << Options["Hash"]    << " "
210              << Options["Threads"] << " " << depth << " current perft";
211
212           benchmark(pos, ss);
213       }
214       else
215           sync_cout << "Unknown command: " << cmd << sync_endl;
216
217   } while (token != "quit" && argc == 1); // Passed args have one-shot behaviour
218
219   Threads.main()->wait_for_search_finished();
220 }
221
222
223 /// UCI::value() converts a Value to a string suitable for use with the UCI
224 /// protocol specification:
225 ///
226 /// cp <x>    The score from the engine's point of view in centipawns.
227 /// mate <y>  Mate in y moves, not plies. If the engine is getting mated
228 ///           use negative values for y.
229
230 string UCI::value(Value v) {
231
232   stringstream ss;
233
234   if (abs(v) < VALUE_MATE - MAX_PLY)
235       ss << "cp " << v * 100 / PawnValueEg;
236   else
237       ss << "mate " << (v > 0 ? VALUE_MATE - v + 1 : -VALUE_MATE - v) / 2;
238
239   return ss.str();
240 }
241
242
243 /// UCI::square() converts a Square to a string in algebraic notation (g1, a7, etc.)
244
245 std::string UCI::square(Square s) {
246   return std::string{ char('a' + file_of(s)), char('1' + rank_of(s)) };
247 }
248
249
250 /// UCI::move() converts a Move to a string in coordinate notation (g1f3, a7a8q).
251 /// The only special case is castling, where we print in the e1g1 notation in
252 /// normal chess mode, and in e1h1 notation in chess960 mode. Internally all
253 /// castling moves are always encoded as 'king captures rook'.
254
255 string UCI::move(Move m, bool chess960) {
256
257   Square from = from_sq(m);
258   Square to = to_sq(m);
259
260   if (m == MOVE_NONE)
261       return "(none)";
262
263   if (m == MOVE_NULL)
264       return "0000";
265
266   if (type_of(m) == CASTLING && !chess960)
267       to = make_square(to > from ? FILE_G : FILE_C, rank_of(from));
268
269   string move = UCI::square(from) + UCI::square(to);
270
271   if (type_of(m) == PROMOTION)
272       move += " pnbrqk"[promotion_type(m)];
273
274   return move;
275 }
276
277
278 /// UCI::to_move() converts a string representing a move in coordinate notation
279 /// (g1f3, a7a8q) to the corresponding legal Move, if any.
280
281 Move UCI::to_move(const Position& pos, string& str) {
282
283   if (str.length() == 5) // Junior could send promotion piece in uppercase
284       str[4] = char(tolower(str[4]));
285
286   for (const auto& m : MoveList<LEGAL>(pos))
287       if (str == UCI::move(m, pos.is_chess960()))
288           return m;
289
290   return MOVE_NONE;
291 }