]> git.sesse.net Git - stockfish/blob - src/ucioption.cpp
Update TT documentation
[stockfish] / src / ucioption.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 <algorithm>
26 #include <cassert>
27 #include <map>
28 #include <string>
29 #include <sstream>
30 #include <vector>
31
32 #include "misc.h"
33 #include "thread.h"
34 #include "ucioption.h"
35
36 using std::string;
37 using std::cout;
38 using std::endl;
39
40 ////
41 //// Local definitions
42 ////
43
44 namespace {
45
46   enum OptionType { SPIN, COMBO, CHECK, STRING, BUTTON };
47
48   typedef std::vector<string> StrVector;
49
50   struct Option {
51
52     string name, defaultValue, currentValue;
53     OptionType type;
54     size_t idx;
55     int minValue, maxValue;
56     StrVector comboValues;
57
58     Option();
59     Option(const char* defaultValue, OptionType = STRING);
60     Option(bool defaultValue, OptionType = CHECK);
61     Option(int defaultValue, int minValue, int maxValue);
62
63     bool operator<(const Option& o) const { return idx < o.idx; }
64   };
65
66   typedef std::vector<Option> OptionsVector;
67   typedef std::map<string, Option> Options;
68
69   Options options;
70
71   // stringify() converts a value of type T to a std::string
72   template<typename T>
73   string stringify(const T& v) {
74
75      std::ostringstream ss;
76      ss << v;
77      return ss.str();
78   }
79
80   Option::Option() {} // To allow insertion in a std::map
81
82   Option::Option(const char* def, OptionType t)
83   : defaultValue(def), currentValue(def), type(t), idx(options.size()), minValue(0), maxValue(0) {}
84
85   Option::Option(bool def, OptionType t)
86   : defaultValue(stringify(def)), currentValue(stringify(def)), type(t), idx(options.size()), minValue(0), maxValue(0) {}
87
88   Option::Option(int def, int minv, int maxv)
89   : defaultValue(stringify(def)), currentValue(stringify(def)), type(SPIN), idx(options.size()), minValue(minv), maxValue(maxv) {}
90
91   // load_defaults() populates the options map with the hard
92   // coded names and default values.
93
94   void load_defaults(Options& o) {
95
96     o["Use Search Log"] = Option(false);
97     o["Search Log Filename"] = Option("SearchLog.txt");
98     o["Book File"] = Option("book.bin");
99     o["Best Book Move"] = Option(false);
100     o["Mobility (Middle Game)"] = Option(100, 0, 200);
101     o["Mobility (Endgame)"] = Option(100, 0, 200);
102     o["Pawn Structure (Middle Game)"] = Option(100, 0, 200);
103     o["Pawn Structure (Endgame)"] = Option(100, 0, 200);
104     o["Passed Pawns (Middle Game)"] = Option(100, 0, 200);
105     o["Passed Pawns (Endgame)"] = Option(100, 0, 200);
106     o["Space"] = Option(100, 0, 200);
107     o["Aggressiveness"] = Option(100, 0, 200);
108     o["Cowardice"] = Option(100, 0, 200);
109     o["Check Extension (PV nodes)"] = Option(2, 0, 2);
110     o["Check Extension (non-PV nodes)"] = Option(1, 0, 2);
111     o["Single Evasion Extension (PV nodes)"] = Option(2, 0, 2);
112     o["Single Evasion Extension (non-PV nodes)"] = Option(2, 0, 2);
113     o["Mate Threat Extension (PV nodes)"] = Option(2, 0, 2);
114     o["Mate Threat Extension (non-PV nodes)"] = Option(2, 0, 2);
115     o["Pawn Push to 7th Extension (PV nodes)"] = Option(1, 0, 2);
116     o["Pawn Push to 7th Extension (non-PV nodes)"] = Option(1, 0, 2);
117     o["Passed Pawn Extension (PV nodes)"] = Option(1, 0, 2);
118     o["Passed Pawn Extension (non-PV nodes)"] = Option(0, 0, 2);
119     o["Pawn Endgame Extension (PV nodes)"] = Option(2, 0, 2);
120     o["Pawn Endgame Extension (non-PV nodes)"] = Option(2, 0, 2);
121     o["Randomness"] = Option(0, 0, 10);
122     o["Minimum Split Depth"] = Option(4, 4, 7);
123     o["Maximum Number of Threads per Split Point"] = Option(5, 4, 8);
124     o["Threads"] = Option(1, 1, MAX_THREADS);
125     o["Hash"] = Option(32, 4, 8192);
126     o["Clear Hash"] = Option(false, BUTTON);
127     o["New Game"] = Option(false, BUTTON);
128     o["Ponder"] = Option(true);
129     o["OwnBook"] = Option(true);
130     o["MultiPV"] = Option(1, 1, 500);
131     o["UCI_Chess960"] = Option(false);
132     o["UCI_AnalyseMode"] = Option(false);
133
134     // Any option should know its name so to be easily printed
135     for (Options::iterator it = o.begin(); it != o.end(); ++it)
136         it->second.name = it->first;
137   }
138
139   // get_option_value() implements the various get_option_value_<type>
140   // functions defined later.
141
142   template<typename T>
143   T get_option_value(const string& optionName) {
144
145       T ret = T();
146       if (options.find(optionName) == options.end())
147           return ret;
148
149       std::istringstream ss(options[optionName].currentValue);
150       ss >> ret;
151       return ret;
152   }
153
154   // Specialization for std::string where instruction 'ss >> ret'
155   // would erroneusly tokenize a string with spaces.
156   template<>
157   string get_option_value<string>(const string& optionName) {
158
159       if (options.find(optionName) == options.end())
160           return string();
161
162       return options[optionName].currentValue;
163   }
164
165 }
166
167
168 /// init_uci_options() initializes the UCI options. Currently, the only thing
169 /// this function does is to initialize the default value of "Threads" and
170 /// "Minimum Split Depth" parameters according to the number of CPU cores.
171
172 void init_uci_options() {
173
174   load_defaults(options);
175
176   assert(options.find("Threads") != options.end());
177   assert(options.find("Minimum Split Depth") != options.end());
178
179   Option& thr = options["Threads"];
180   Option& msd = options["Minimum Split Depth"];
181
182   thr.defaultValue = thr.currentValue = stringify(cpu_count());
183
184   if (cpu_count() >= 8)
185       msd.defaultValue = msd.currentValue = stringify(7);
186 }
187
188
189 /// print_uci_options() prints all the UCI options to the standard output,
190 /// in the format defined by the UCI protocol.
191
192 void print_uci_options() {
193
194   const char OptTypeName[][16] = {
195     "spin", "combo", "check", "string", "button"
196   };
197
198   // Build up a vector out of the options map and sort it according to idx
199   // field, that is the chronological insertion order in options map.
200   OptionsVector vec;
201   for (Options::const_iterator it = options.begin(); it != options.end(); ++it)
202       vec.push_back(it->second);
203
204   std::sort(vec.begin(), vec.end());
205
206   for (OptionsVector::const_iterator it = vec.begin(); it != vec.end(); ++it)
207   {
208       cout << "\noption name " << it->name << " type " << OptTypeName[it->type];
209
210       if (it->type == BUTTON)
211           continue;
212
213       if (it->type == CHECK)
214           cout << " default " << (it->defaultValue == "1" ? "true" : "false");
215       else
216           cout << " default " << it->defaultValue;
217
218       if (it->type == SPIN)
219           cout << " min " << it->minValue << " max " << it->maxValue;
220       else if (it->type == COMBO)
221       {
222           StrVector::const_iterator itc;
223           for (itc = it->comboValues.begin(); itc != it->comboValues.end(); ++itc)
224               cout << " var " << *itc;
225       }
226   }
227   cout << endl;
228 }
229
230
231 /// get_option_value_bool() returns the current value of a UCI parameter of
232 /// type "check".
233
234 bool get_option_value_bool(const string& optionName) {
235
236   return get_option_value<bool>(optionName);
237 }
238
239
240 /// get_option_value_int() returns the value of a UCI parameter as an integer.
241 /// Normally, this function will be used for a parameter of type "spin", but
242 /// it could also be used with a "combo" parameter, where all the available
243 /// values are integers.
244
245 int get_option_value_int(const string& optionName) {
246
247   return get_option_value<int>(optionName);
248 }
249
250
251 /// get_option_value_string() returns the current value of a UCI parameter as
252 /// a string. It is used with parameters of type "combo" and "string".
253
254 string get_option_value_string(const string& optionName) {
255
256    return get_option_value<string>(optionName);
257 }
258
259
260 /// set_option_value() inserts a new value for a UCI parameter
261
262 void set_option_value(const string& name, const string& value) {
263
264   if (options.find(name) == options.end())
265   {
266       cout << "No such option: " << name << endl;
267       return;
268   }
269
270   // UCI protocol uses "true" and "false" instead of "1" and "0", so convert
271   // value according to standard C++ convention before to store it.
272   string v(value);
273   if (v == "true")
274       v = "1";
275   else if (v == "false")
276       v = "0";
277
278   // Normally it's up to the GUI to check for option's limits,
279   // but we could receive the new value directly from the user
280   // by teminal window. So let's check the bounds anyway.
281   Option& opt = options[name];
282
283   if (opt.type == CHECK && v != "0" && v != "1")
284       return;
285
286   else if (opt.type == SPIN)
287   {
288       int val = atoi(v.c_str());
289       if (val < opt.minValue || val > opt.maxValue)
290           return;
291   }
292   opt.currentValue = v;
293 }
294
295
296 /// push_button() is used to tell the engine that a UCI parameter of type
297 /// "button" has been selected:
298
299 void push_button(const string& buttonName) {
300
301   set_option_value(buttonName, "true");
302 }
303
304
305 /// button_was_pressed() tests whether a UCI parameter of type "button" has
306 /// been selected since the last time the function was called, in this case
307 /// it also resets the button.
308
309 bool button_was_pressed(const string& buttonName) {
310
311   if (!get_option_value<bool>(buttonName))
312       return false;
313
314   set_option_value(buttonName, "false");
315   return true;
316 }