]> git.sesse.net Git - stockfish/blob - src/uci.cpp
3cb97b7fafdcc7e8c214a98f2a41a2702371fe05
[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   // UCIParser is a class for parsing UCI input. The class
51   // is actually a string stream built on a given input string.
52   typedef istringstream UCIParser;
53
54   // Local functions
55   bool handle_command(Position& pos, const string& command);
56   void set_option(UCIParser& uip);
57   void set_position(Position& pos, UCIParser& uip);
58   bool go(Position& pos, UCIParser& uip);
59   void perft(Position& pos, UCIParser& 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 string as input, uses a UCIParser
96   // object to parse this text string as a UCI command, and calls
97   // the appropriate functions. In addition to the UCI commands,
98   // the function also supports a few debug commands.
99
100   bool handle_command(Position& pos, const string& command) {
101
102     UCIParser up(command);
103     string token;
104
105     if (!(up >> 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, up);
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         pos.from_fen(StartPositionFEN);
123
124     else if (token == "isready")
125         cout << "readyok" << endl;
126
127     else if (token == "position")
128         set_position(pos, up);
129
130     else if (token == "setoption")
131         set_option(up);
132
133     // The remaining commands are for debugging purposes only
134     else if (token == "d")
135         pos.print();
136
137     else if (token == "flip")
138     {
139         Position p(pos, pos.thread());
140         pos.flipped_copy(p);
141     }
142     else if (token == "eval")
143     {
144         Value evalMargin;
145         cout << "Incremental mg: "   << mg_value(pos.value())
146              << "\nIncremental eg: " << eg_value(pos.value())
147              << "\nFull eval: "      << evaluate(pos, evalMargin) << endl;
148     }
149     else if (token == "key")
150         cout << "key: " << hex << pos.get_key()
151              << "\nmaterial key: " << pos.get_material_key()
152              << "\npawn key: " << pos.get_pawn_key() << endl;
153
154     else if (token == "perft")
155         perft(pos, up);
156
157     else
158         cout << "Unknown command: " << command << endl;
159
160     return true;
161   }
162
163
164   // set_position() is called when Stockfish receives the "position" UCI
165   // command. The input parameter is a UCIParser. It is assumed
166   // that this parser has consumed the first token of the UCI command
167   // ("position"), and is ready to read the second token ("startpos"
168   // or "fen", if the input is well-formed).
169
170   void set_position(Position& pos, UCIParser& up) {
171
172     string token;
173
174     if (!(up >> token)) // operator>>() skips any whitespace
175         return;
176
177     if (token == "startpos")
178         pos.from_fen(StartPositionFEN);
179     else if (token == "fen")
180     {
181         string fen;
182         while (up >> token && token != "moves")
183         {
184             fen += token;
185             fen += ' ';
186         }
187         pos.from_fen(fen);
188     }
189
190     if (up.good())
191     {
192         if (token != "moves")
193           up >> token;
194
195         if (token == "moves")
196         {
197             Move move;
198             StateInfo st;
199             while (up >> token)
200             {
201                 move = move_from_uci(pos, token);
202                 pos.do_move(move, st);
203                 if (pos.rule_50_counter() == 0)
204                     pos.reset_game_ply();
205
206                 pos.inc_startpos_ply_counter(); //FIXME: make from_fen to support this and rule50
207             }
208             // Our StateInfo st is about going out of scope so copy
209             // its content inside pos before it disappears.
210             pos.detach();
211         }
212     }
213   }
214
215
216   // set_option() is called when Stockfish receives the "setoption" UCI
217   // command. The input parameter is a UCIParser. It is assumed
218   // that this parser has consumed the first token of the UCI command
219   // ("setoption"), and is ready to read the second token ("name", if
220   // the input is well-formed).
221
222   void set_option(UCIParser& up) {
223
224     string token, name, value;
225
226     if (!(up >> token) || token != "name") // operator>>() skips any whitespace
227         return;
228
229     if (!(up >> name))
230         return;
231
232     // Handle names with included spaces
233     while (up >> token && token != "value")
234         name += (" " + token);
235
236     if (Options.find(name) == Options.end())
237     {
238         cout << "No such option: " << name << endl;
239         return;
240     }
241
242     // Is a button ?
243     if (token != "value")
244     {
245         Options[name].set_value("true");
246         return;
247     }
248
249     if (!(up >> value))
250         return;
251
252     // Handle values with included spaces
253     while (up >> token)
254         value += (" " + token);
255
256     Options[name].set_value(value);
257   }
258
259
260   // go() is called when Stockfish receives the "go" UCI command. The
261   // input parameter is a UCIParser. It is assumed that this
262   // parser has consumed the first token of the UCI command ("go"),
263   // and is ready to read the second token. The function sets the
264   // thinking time and other parameters from the input string, and
265   // calls think() (defined in search.cpp) with the appropriate
266   // parameters. Returns false if a quit command is received while
267   // thinking, returns true otherwise.
268
269   bool go(Position& pos, UCIParser& up) {
270
271     string token;
272
273     int time[2] = {0, 0}, inc[2] = {0, 0};
274     int movesToGo = 0, depth = 0, nodes = 0, moveTime = 0;
275     bool infinite = false, ponder = false;
276     Move searchMoves[MOVES_MAX];
277
278     searchMoves[0] = MOVE_NONE;
279
280     while (up >> token)
281     {
282         if (token == "infinite")
283             infinite = true;
284         else if (token == "ponder")
285             ponder = true;
286         else if (token == "wtime")
287             up >> time[0];
288         else if (token == "btime")
289             up >> time[1];
290         else if (token == "winc")
291             up >> inc[0];
292         else if (token == "binc")
293             up >> inc[1];
294         else if (token == "movestogo")
295             up >> movesToGo;
296         else if (token == "depth")
297             up >> depth;
298         else if (token == "nodes")
299             up >> nodes;
300         else if (token == "movetime")
301             up >> moveTime;
302         else if (token == "searchmoves")
303         {
304             int numOfMoves = 0;
305             while (up >> token)
306                 searchMoves[numOfMoves++] = move_from_uci(pos, token);
307
308             searchMoves[numOfMoves] = MOVE_NONE;
309         }
310     }
311
312     assert(pos.is_ok());
313
314     return think(pos, infinite, ponder, time, inc, movesToGo,
315                  depth, nodes, moveTime, searchMoves);
316   }
317
318   void perft(Position& pos, UCIParser& up) {
319
320     int depth, tm, n;
321
322     if (!(up >> depth))
323         return;
324
325     tm = get_system_time();
326
327     n = perft(pos, depth * ONE_PLY);
328
329     tm = get_system_time() - tm;
330     std::cout << "\nNodes " << n
331               << "\nTime (ms) " << tm
332               << "\nNodes/second " << int(n / (tm / 1000.0)) << std::endl;
333   }
334 }