]> git.sesse.net Git - stockfish/blob - src/uci.cpp
Retire uci.h and benchmark.h
[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-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 <iostream>
27 #include <sstream>
28 #include <string>
29
30 #include "evaluate.h"
31 #include "misc.h"
32 #include "move.h"
33 #include "movegen.h"
34 #include "position.h"
35 #include "san.h"
36 #include "search.h"
37 #include "ucioption.h"
38
39 using namespace std;
40
41 ////
42 //// Local definitions:
43 ////
44
45 namespace {
46
47   // FEN string for the initial position
48   const string StartPositionFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
49
50   // UCIInputParser is a class for parsing UCI input. The class
51   // is actually a string stream built on a given input string.
52   typedef istringstream UCIInputParser;
53
54   // Local functions
55   bool handle_command(Position& pos, const string& command);
56   void set_option(UCIInputParser& uip);
57   void set_position(Position& pos, UCIInputParser& uip);
58   bool go(Position& pos, UCIInputParser& uip);
59   void perft(Position& pos, UCIInputParser& uip);
60 }
61
62
63 ////
64 //// Functions
65 ////
66
67 /// uci_main_loop() is the only global function in this file. It is
68 /// called immediately after the program has finished initializing.
69 /// The program remains in this loop until it receives the "quit" UCI
70 /// command. It waits for a command from the user, and passes this
71 /// command to handle_command and also intercepts EOF from stdin,
72 /// by translating EOF to the "quit" command. This ensures that Stockfish
73 /// exits gracefully if the GUI dies unexpectedly.
74
75 void uci_main_loop() {
76
77   Position pos(StartPositionFEN, 0); // The root position
78   string command;
79
80   do {
81       // Wait for a command from stdin
82       if (!getline(cin, command))
83           command = "quit";
84
85   } while (handle_command(pos, command));
86 }
87
88
89 ////
90 //// Local functions
91 ////
92
93 namespace {
94
95   // handle_command() takes a text string as input, uses a
96   // UCIInputParser object to parse this text string as a UCI command,
97   // and calls the appropriate functions. In addition to the UCI
98   // commands, the function also supports a few debug commands.
99
100   bool handle_command(Position& pos, const string& command) {
101
102     UCIInputParser uip(command);
103     string token;
104
105     if (!(uip >> token)) // operator>>() skips any whitespace
106         return true;
107
108     if (token == "quit")
109         return false;
110
111     if (token == "go")
112         return go(pos, uip);
113
114     if (token == "uci")
115     {
116         cout << "id name " << engine_name()
117              << "\nid author Tord Romstad, Marco Costalba, Joona Kiiski\n";
118         print_uci_options();
119         cout << "uciok" << endl;
120     }
121     else if (token == "ucinewgame")
122     {
123         Options["New Game"].set_value("true");
124         pos.from_fen(StartPositionFEN);
125     }
126     else if (token == "isready")
127         cout << "readyok" << endl;
128     else if (token == "position")
129         set_position(pos, uip);
130     else if (token == "setoption")
131         set_option(uip);
132
133     // The remaining commands are for debugging purposes only.
134     // Perhaps they should be removed later in order to reduce the
135     // size of the program binary.
136     else if (token == "d")
137         pos.print();
138     else if (token == "flip")
139     {
140         Position p(pos, pos.thread());
141         pos.flipped_copy(p);
142     }
143     else if (token == "eval")
144     {
145         Value evalMargin;
146         cout << "Incremental mg: "   << mg_value(pos.value())
147              << "\nIncremental eg: " << eg_value(pos.value())
148              << "\nFull eval: "      << evaluate(pos, evalMargin) << endl;
149     }
150     else if (token == "key")
151         cout << "key: " << hex << pos.get_key()
152              << "\nmaterial key: " << pos.get_material_key()
153              << "\npawn key: " << pos.get_pawn_key() << endl;
154     else if (token == "perft")
155         perft(pos, uip);
156     else
157         cout << "Unknown command: " << command << endl;
158
159     return true;
160   }
161
162
163   // set_position() is called when Stockfish receives the "position" UCI
164   // command. The input parameter is a UCIInputParser. It is assumed
165   // that this parser has consumed the first token of the UCI command
166   // ("position"), and is ready to read the second token ("startpos"
167   // or "fen", if the input is well-formed).
168
169   void set_position(Position& pos, UCIInputParser& uip) {
170
171     string token;
172
173     if (!(uip >> token)) // operator>>() skips any whitespace
174         return;
175
176     if (token == "startpos")
177         pos.from_fen(StartPositionFEN);
178     else if (token == "fen")
179     {
180         string fen;
181         while (uip >> token && token != "moves")
182         {
183             fen += token;
184             fen += ' ';
185         }
186         pos.from_fen(fen);
187     }
188
189     if (uip.good())
190     {
191         if (token != "moves")
192           uip >> token;
193
194         if (token == "moves")
195         {
196             Move move;
197             StateInfo st;
198             while (uip >> token)
199             {
200                 move = move_from_string(pos, token);
201                 pos.do_move(move, st);
202                 if (pos.rule_50_counter() == 0)
203                     pos.reset_game_ply();
204
205                 pos.inc_startpos_ply_counter(); //FIXME: make from_fen to support this and rule50
206             }
207             // Our StateInfo st is about going out of scope so copy
208             // its content inside pos before it disappears.
209             pos.detach();
210         }
211     }
212   }
213
214
215   // set_option() is called when Stockfish receives the "setoption" UCI
216   // command. The input parameter is a UCIInputParser. It is assumed
217   // that this parser has consumed the first token of the UCI command
218   // ("setoption"), and is ready to read the second token ("name", if
219   // the input is well-formed).
220
221   void set_option(UCIInputParser& uip) {
222
223     string token, name, value;
224
225     if (!(uip >> token)) // operator>>() skips any whitespace
226         return;
227
228     if (token != "name" || !(uip >> name))
229         return;
230
231     while (uip >> token && token != "value")
232         name += (" " + token);
233
234     if (Options.find(name) == Options.end())
235     {
236         cout << "No such option: " << name << endl;
237         return;
238     }
239
240     if (token != "value" || !(uip >> value))
241     {
242         Options[name].set_value("true");
243         return;
244     }
245
246     while (uip >> token)
247         value += (" " + token);
248
249     Options[name].set_value(value);
250   }
251
252
253   // go() is called when Stockfish receives the "go" UCI command. The
254   // input parameter is a UCIInputParser. It is assumed that this
255   // parser has consumed the first token of the UCI command ("go"),
256   // and is ready to read the second token. The function sets the
257   // thinking time and other parameters from the input string, and
258   // calls think() (defined in search.cpp) with the appropriate
259   // parameters. Returns false if a quit command is received while
260   // thinking, returns true otherwise.
261
262   bool go(Position& pos, UCIInputParser& uip) {
263
264     string token;
265
266     int time[2] = {0, 0}, inc[2] = {0, 0};
267     int movesToGo = 0, depth = 0, nodes = 0, moveTime = 0;
268     bool infinite = false, ponder = false;
269     Move searchMoves[MOVES_MAX];
270
271     searchMoves[0] = MOVE_NONE;
272
273     while (uip >> token)
274     {
275         if (token == "infinite")
276             infinite = true;
277         else if (token == "ponder")
278             ponder = true;
279         else if (token == "wtime")
280             uip >> time[0];
281         else if (token == "btime")
282             uip >> time[1];
283         else if (token == "winc")
284             uip >> inc[0];
285         else if (token == "binc")
286             uip >> inc[1];
287         else if (token == "movestogo")
288             uip >> movesToGo;
289         else if (token == "depth")
290             uip >> depth;
291         else if (token == "nodes")
292             uip >> nodes;
293         else if (token == "movetime")
294             uip >> moveTime;
295         else if (token == "searchmoves")
296         {
297             int numOfMoves = 0;
298             while (uip >> token)
299                 searchMoves[numOfMoves++] = move_from_string(pos, token);
300
301             searchMoves[numOfMoves] = MOVE_NONE;
302         }
303     }
304
305     assert(pos.is_ok());
306
307     return think(pos, infinite, ponder, time, inc, movesToGo,
308                  depth, nodes, moveTime, searchMoves);
309   }
310
311   void perft(Position& pos, UCIInputParser& uip) {
312
313     string token;
314     int depth, tm, n;
315
316     if (!(uip >> depth))
317         return;
318
319     tm = get_system_time();
320
321     n = perft(pos, depth * ONE_PLY);
322
323     tm = get_system_time() - tm;
324     std::cout << "\nNodes " << n
325               << "\nTime (ms) " << tm
326               << "\nNodes/second " << int(n / (tm / 1000.0)) << std::endl;
327   }
328 }