]> git.sesse.net Git - stockfish/blob - src/uci.cpp
826ecd12e1ad694c2988719f3bc46b0e85ed20fc
[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 <cctype>
27 #include <iostream>
28 #include <sstream>
29 #include <string>
30
31 #include "evaluate.h"
32 #include "misc.h"
33 #include "move.h"
34 #include "movegen.h"
35 #include "position.h"
36 #include "search.h"
37 #include "ucioption.h"
38
39 using namespace std;
40
41
42 namespace {
43
44   // FEN string for the initial position
45   const string StartPositionFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
46
47   // UCIParser is a class for parsing UCI input. The class
48   // is actually a string stream built on a given input string.
49   typedef istringstream UCIParser;
50
51   // Local functions
52   void set_option(UCIParser& up);
53   void set_position(Position& pos, UCIParser& up);
54   bool go(Position& pos, UCIParser& up);
55   void perft(Position& pos, UCIParser& up);
56 }
57
58
59 /// execute_uci_command() takes a string as input, uses a UCIParser
60 /// object to parse this text string as a UCI command, and calls
61 /// the appropriate functions. In addition to the UCI commands,
62 /// the function also supports a few debug commands.
63
64 bool execute_uci_command(const string& cmd) {
65
66   static Position pos(StartPositionFEN, false, 0); // The root position
67   UCIParser up(cmd);
68   string token;
69
70   if (!(up >> token)) // operator>>() skips any whitespace
71       return true;
72
73   if (token == "quit")
74       return false;
75
76   if (token == "go")
77       return go(pos, up);
78
79   if (token == "uci")
80   {
81       cout << "id name " << engine_name()
82            << "\nid author Tord Romstad, Marco Costalba, Joona Kiiski\n";
83       print_uci_options();
84       cout << "uciok" << endl;
85   }
86   else if (token == "ucinewgame")
87       pos.from_fen(StartPositionFEN, false);
88
89   else if (token == "isready")
90       cout << "readyok" << endl;
91
92   else if (token == "position")
93       set_position(pos, up);
94
95   else if (token == "setoption")
96       set_option(up);
97
98   // The remaining commands are for debugging purposes only
99   else if (token == "d")
100       pos.print();
101
102   else if (token == "flip")
103   {
104       Position p(pos, pos.thread());
105       pos.flipped_copy(p);
106   }
107   else if (token == "eval")
108   {
109       Value evalMargin;
110       cout << "Incremental mg: "   << mg_value(pos.value())
111            << "\nIncremental eg: " << eg_value(pos.value())
112            << "\nFull eval: "      << evaluate(pos, evalMargin) << endl;
113   }
114   else if (token == "key")
115       cout << "key: " << hex << pos.get_key()
116            << "\nmaterial key: " << pos.get_material_key()
117            << "\npawn key: " << pos.get_pawn_key() << endl;
118
119   else if (token == "perft")
120       perft(pos, up);
121
122   else
123       cout << "Unknown command: " << cmd << endl;
124
125   return true;
126 }
127
128
129 ////
130 //// Local functions
131 ////
132
133 namespace {
134
135   // set_position() is called when Stockfish receives the "position" UCI
136   // command. The input parameter is a UCIParser. It is assumed
137   // that this parser has consumed the first token of the UCI command
138   // ("position"), and is ready to read the second token ("startpos"
139   // or "fen", if the input is well-formed).
140
141   void set_position(Position& pos, UCIParser& up) {
142
143     string fen, token;
144
145     up >> token; // operator>>() skips any whitespace
146
147     if (token == "startpos")
148     {
149         pos.from_fen(StartPositionFEN, false);
150         up >> token; // Consume "moves" token
151     }
152     else if (token == "fen")
153     {
154         while (up >> token && token != "moves")
155             fen += token + " ";
156
157         pos.from_fen(fen, Options["UCI_Chess960"].value<bool>());
158     }
159     else return;
160
161     // Parse move list (if any)
162     while (up >> token)
163         pos.do_setup_move(move_from_uci(pos, token));
164   }
165
166
167   // set_option() is called when Stockfish receives the "setoption" UCI
168   // command. The input parameter is a UCIParser. It is assumed
169   // that this parser has consumed the first token of the UCI command
170   // ("setoption"), and is ready to read the second token ("name", if
171   // the input is well-formed).
172
173   void set_option(UCIParser& up) {
174
175     string value = "true"; // UCI buttons don't have a "value" field
176     string token, name;
177
178     up >> token; // Consume "name" token
179     up >> name;  // Read option name
180
181     // Handle names with included spaces
182     while (up >> token && token != "value")
183         name += " " + token;
184
185     up >> value; // Read option value
186
187     // Handle values with included spaces
188     while (up >> token)
189         value += " " + token;
190
191     if (Options.find(name) != Options.end())
192         Options[name].set_value(value);
193     else
194         cout << "No such option: " << name << endl;
195   }
196
197
198   // go() is called when Stockfish receives the "go" UCI command. The
199   // input parameter is a UCIParser. It is assumed that this
200   // parser has consumed the first token of the UCI command ("go"),
201   // and is ready to read the second token. The function sets the
202   // thinking time and other parameters from the input string, and
203   // calls think() (defined in search.cpp) with the appropriate
204   // parameters. Returns false if a quit command is received while
205   // thinking, returns true otherwise.
206
207   bool go(Position& pos, UCIParser& up) {
208
209     string token;
210
211     int time[2] = {0, 0}, inc[2] = {0, 0};
212     int movesToGo = 0, depth = 0, nodes = 0, moveTime = 0;
213     bool infinite = false, ponder = false;
214     Move searchMoves[MOVES_MAX];
215
216     searchMoves[0] = MOVE_NONE;
217
218     while (up >> token)
219     {
220         if (token == "infinite")
221             infinite = true;
222         else if (token == "ponder")
223             ponder = true;
224         else if (token == "wtime")
225             up >> time[0];
226         else if (token == "btime")
227             up >> time[1];
228         else if (token == "winc")
229             up >> inc[0];
230         else if (token == "binc")
231             up >> inc[1];
232         else if (token == "movestogo")
233             up >> movesToGo;
234         else if (token == "depth")
235             up >> depth;
236         else if (token == "nodes")
237             up >> nodes;
238         else if (token == "movetime")
239             up >> moveTime;
240         else if (token == "searchmoves")
241         {
242             int numOfMoves = 0;
243             while (up >> token)
244                 searchMoves[numOfMoves++] = move_from_uci(pos, token);
245
246             searchMoves[numOfMoves] = MOVE_NONE;
247         }
248     }
249
250     assert(pos.is_ok());
251
252     return think(pos, infinite, ponder, time, inc, movesToGo,
253                  depth, nodes, moveTime, searchMoves);
254   }
255
256   void perft(Position& pos, UCIParser& up) {
257
258     int depth, tm;
259     int64_t n;
260
261     if (!(up >> depth))
262         return;
263
264     tm = get_system_time();
265
266     n = perft(pos, depth * ONE_PLY);
267
268     tm = get_system_time() - tm;
269     std::cout << "\nNodes " << n
270               << "\nTime (ms) " << tm
271               << "\nNodes/second " << int(n / (tm / 1000.0)) << std::endl;
272   }
273 }