]> git.sesse.net Git - stockfish/blob - src/uci.cpp
Fix an issue when adding a book during the game
[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-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 <iostream>
21 #include <sstream>
22 #include <string>
23
24 #include "evaluate.h"
25 #include "position.h"
26 #include "search.h"
27 #include "thread.h"
28 #include "ucioption.h"
29
30 using namespace std;
31
32 extern void benchmark(const Position& pos, istream& is);
33
34 namespace {
35
36   // FEN string of the initial position, normal chess
37   const char* StartFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
38
39   // Keep track of position keys along the setup moves (from start position to the
40   // position just before to start searching). This is needed by draw detection
41   // where, due to 50 moves rule, we need to check at most 100 plies back.
42   StateInfo StateRingBuf[102], *SetupState = StateRingBuf;
43
44   void set_option(istringstream& up);
45   void set_position(Position& pos, istringstream& up);
46   void go(Position& pos, istringstream& up);
47 }
48
49
50 /// Wait for a command from the user, parse this text string as an UCI command,
51 /// and call the appropriate functions. Also intercepts EOF from stdin to ensure
52 /// that we exit gracefully if the GUI dies unexpectedly. In addition to the UCI
53 /// commands, the function also supports a few debug commands.
54
55 void uci_loop(const string& args) {
56
57   Position pos(StartFEN, false, Threads.main_thread()); // The root position
58   string cmd, token;
59
60   while (token != "quit")
61   {
62       if (!args.empty())
63           cmd = args;
64
65       else if (!getline(cin, cmd)) // Block here waiting for input
66           cmd = "quit";
67
68       istringstream is(cmd);
69
70       is >> skipws >> token;
71
72       if (token == "quit" || token == "stop")
73       {
74           Search::Signals.stop = true;
75           Threads.wait_for_search_finished(); // Cannot quit while threads are running
76       }
77
78       else if (token == "ponderhit")
79       {
80           // The opponent has played the expected move. GUI sends "ponderhit" if
81           // we were told to ponder on the same move the opponent has played. We
82           // should continue searching but switching from pondering to normal search.
83           Search::Limits.ponder = false;
84
85           if (Search::Signals.stopOnPonderhit)
86           {
87               Search::Signals.stop = true;
88               Threads.main_thread()->wake_up(); // Could be sleeping
89           }
90       }
91
92       else if (token == "go")
93           go(pos, is);
94
95       else if (token == "ucinewgame")
96       { /* Avoid returning "Unknown command" */ }
97
98       else if (token == "isready")
99           cout << "readyok" << endl;
100
101       else if (token == "position")
102           set_position(pos, is);
103
104       else if (token == "setoption")
105           set_option(is);
106
107       else if (token == "d")
108           pos.print();
109
110       else if (token == "flip")
111           pos.flip();
112
113       else if (token == "eval")
114           cout << Eval::trace(pos) << endl;
115
116       else if (token == "bench")
117           benchmark(pos, is);
118
119       else if (token == "key")
120           cout << "key: " << hex     << pos.key()
121                << "\nmaterial key: " << pos.material_key()
122                << "\npawn key: "     << pos.pawn_key() << endl;
123
124       else if (token == "uci")
125           cout << "id name "     << engine_info(true)
126                << "\n"           << Options
127                << "\nuciok"      << endl;
128
129       else if (token == "perft" && (is >> token)) // Read depth
130       {
131           stringstream ss;
132
133           ss << Options["Hash"]    << " "
134              << Options["Threads"] << " " << token << " current perft";
135
136           benchmark(pos, ss);
137       }
138
139       else
140           cout << "Unknown command: " << cmd << endl;
141
142       if (!args.empty()) // Command line arguments have one-shot behaviour
143       {
144           Threads.wait_for_search_finished();
145           break;
146       }
147   }
148 }
149
150
151 namespace {
152
153   // set_position() is called when engine receives the "position" UCI
154   // command. The function sets up the position described in the given
155   // fen string ("fen") or the starting position ("startpos") and then
156   // makes the moves given in the following move list ("moves").
157
158   void set_position(Position& pos, istringstream& is) {
159
160     Move m;
161     string token, fen;
162
163     is >> token;
164
165     if (token == "startpos")
166     {
167         fen = StartFEN;
168         is >> token; // Consume "moves" token if any
169     }
170     else if (token == "fen")
171         while (is >> token && token != "moves")
172             fen += token + " ";
173     else
174         return;
175
176     pos.from_fen(fen, Options["UCI_Chess960"], Threads.main_thread());
177
178     // Parse move list (if any)
179     while (is >> token && (m = move_from_uci(pos, token)) != MOVE_NONE)
180     {
181         pos.do_move(m, *SetupState);
182
183         // Increment pointer to StateRingBuf circular buffer
184         if (++SetupState - StateRingBuf >= 102)
185             SetupState = StateRingBuf;
186     }
187   }
188
189
190   // set_option() is called when engine receives the "setoption" UCI command. The
191   // function updates the UCI option ("name") to the given value ("value").
192
193   void set_option(istringstream& is) {
194
195     string token, name, value;
196
197     is >> token; // Consume "name" token
198
199     // Read option name (can contain spaces)
200     while (is >> token && token != "value")
201         name += string(" ", !name.empty()) + token;
202
203     // Read option value (can contain spaces)
204     while (is >> token)
205         value += string(" ", !value.empty()) + token;
206
207     if (Options.count(name))
208         Options[name] = value;
209     else
210         cout << "No such option: " << name << endl;
211   }
212
213
214   // go() is called when engine receives the "go" UCI command. The function sets
215   // the thinking time and other parameters from the input string, and then starts
216   // the search.
217
218   void go(Position& pos, istringstream& is) {
219
220     Search::LimitsType limits;
221     vector<Move> searchMoves;
222     string token;
223
224     while (is >> token)
225     {
226         if (token == "wtime")
227             is >> limits.time[WHITE];
228         else if (token == "btime")
229             is >> limits.time[BLACK];
230         else if (token == "winc")
231             is >> limits.inc[WHITE];
232         else if (token == "binc")
233             is >> limits.inc[BLACK];
234         else if (token == "movestogo")
235             is >> limits.movestogo;
236         else if (token == "depth")
237             is >> limits.depth;
238         else if (token == "nodes")
239             is >> limits.nodes;
240         else if (token == "movetime")
241             is >> limits.movetime;
242         else if (token == "infinite")
243             limits.infinite = true;
244         else if (token == "ponder")
245             limits.ponder = true;
246         else if (token == "searchmoves")
247             while (is >> token)
248                 searchMoves.push_back(move_from_uci(pos, token));
249     }
250
251     Threads.start_searching(pos, limits, searchMoves);
252   }
253 }