]> git.sesse.net Git - stockfish/blob - src/uci.cpp
TTEntry simplification
[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     if (!(up >> token) || (token != "startpos" && token != "fen"))
146         return;
147
148     if (token == "startpos")
149     {
150         pos.from_fen(StartPositionFEN, false);
151         up >> token; // Consume "moves" token
152     }
153     else // fen
154     {
155         while (up >> token && token != "moves")
156             fen += token + string(" ");
157
158         pos.from_fen(fen, Options["UCI_Chess960"].value<bool>());
159     }
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 token, name, value;
176
177     if (!(up >> token) || token != "name") // operator>>() skips any whitespace
178         return;
179
180     if (!(up >> name))
181         return;
182
183     // Handle names with included spaces
184     while (up >> token && token != "value")
185         name += (" " + token);
186
187     if (Options.find(name) == Options.end())
188     {
189         cout << "No such option: " << name << endl;
190         return;
191     }
192
193     // Is a button ?
194     if (token != "value")
195     {
196         Options[name].set_value("true");
197         return;
198     }
199
200     if (!(up >> value))
201         return;
202
203     // Handle values with included spaces
204     while (up >> token)
205         value += (" " + token);
206
207     Options[name].set_value(value);
208   }
209
210
211   // go() is called when Stockfish receives the "go" UCI command. The
212   // input parameter is a UCIParser. It is assumed that this
213   // parser has consumed the first token of the UCI command ("go"),
214   // and is ready to read the second token. The function sets the
215   // thinking time and other parameters from the input string, and
216   // calls think() (defined in search.cpp) with the appropriate
217   // parameters. Returns false if a quit command is received while
218   // thinking, returns true otherwise.
219
220   bool go(Position& pos, UCIParser& up) {
221
222     string token;
223
224     int time[2] = {0, 0}, inc[2] = {0, 0};
225     int movesToGo = 0, depth = 0, nodes = 0, moveTime = 0;
226     bool infinite = false, ponder = false;
227     Move searchMoves[MOVES_MAX];
228
229     searchMoves[0] = MOVE_NONE;
230
231     while (up >> token)
232     {
233         if (token == "infinite")
234             infinite = true;
235         else if (token == "ponder")
236             ponder = true;
237         else if (token == "wtime")
238             up >> time[0];
239         else if (token == "btime")
240             up >> time[1];
241         else if (token == "winc")
242             up >> inc[0];
243         else if (token == "binc")
244             up >> inc[1];
245         else if (token == "movestogo")
246             up >> movesToGo;
247         else if (token == "depth")
248             up >> depth;
249         else if (token == "nodes")
250             up >> nodes;
251         else if (token == "movetime")
252             up >> moveTime;
253         else if (token == "searchmoves")
254         {
255             int numOfMoves = 0;
256             while (up >> token)
257                 searchMoves[numOfMoves++] = move_from_uci(pos, token);
258
259             searchMoves[numOfMoves] = MOVE_NONE;
260         }
261     }
262
263     assert(pos.is_ok());
264
265     return think(pos, infinite, ponder, time, inc, movesToGo,
266                  depth, nodes, moveTime, searchMoves);
267   }
268
269   void perft(Position& pos, UCIParser& up) {
270
271     int depth, tm;
272     int64_t n;
273
274     if (!(up >> depth))
275         return;
276
277     tm = get_system_time();
278
279     n = perft(pos, depth * ONE_PLY);
280
281     tm = get_system_time() - tm;
282     std::cout << "\nNodes " << n
283               << "\nTime (ms) " << tm
284               << "\nNodes/second " << int(n / (tm / 1000.0)) << std::endl;
285   }
286 }