]> git.sesse.net Git - stockfish/blob - src/ucioption.cpp
Reformatting in material.h
[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-2014 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 #include <algorithm>
21 #include <cassert>
22 #include <cstdlib>
23 #include <sstream>
24
25 #include "evaluate.h"
26 #include "misc.h"
27 #include "thread.h"
28 #include "tt.h"
29 #include "ucioption.h"
30
31 using std::string;
32
33 UCI::OptionsMap Options; // Global object
34
35 namespace UCI {
36
37 /// 'On change' actions, triggered by an option's value change
38 void on_logger(const Option& o) { start_logger(o); }
39 void on_eval(const Option&) { Eval::init(); }
40 void on_threads(const Option&) { Threads.read_uci_options(); }
41 void on_hash_size(const Option& o) { TT.resize(o); }
42 void on_clear_hash(const Option&) { TT.clear(); }
43
44
45 /// Our case insensitive less() function as required by UCI protocol
46 bool ci_less(char c1, char c2) { return tolower(c1) < tolower(c2); }
47
48 bool CaseInsensitiveLess::operator() (const string& s1, const string& s2) const {
49   return std::lexicographical_compare(s1.begin(), s1.end(), s2.begin(), s2.end(), ci_less);
50 }
51
52
53 /// init() initializes the UCI options to their hard-coded default values
54
55 void init(OptionsMap& o) {
56
57   o["Write Debug Log"]          << Option(false, on_logger);
58   o["Write Search Log"]         << Option(false);
59   o["Search Log Filename"]      << Option("SearchLog.txt");
60   o["Book File"]                << Option("book.bin");
61   o["Best Book Move"]           << Option(false);
62   o["Contempt Factor"]          << Option(0, -50,  50);
63   o["Mobility (Midgame)"]       << Option(100, 0, 200, on_eval);
64   o["Mobility (Endgame)"]       << Option(100, 0, 200, on_eval);
65   o["Pawn Structure (Midgame)"] << Option(100, 0, 200, on_eval);
66   o["Pawn Structure (Endgame)"] << Option(100, 0, 200, on_eval);
67   o["Passed Pawns (Midgame)"]   << Option(100, 0, 200, on_eval);
68   o["Passed Pawns (Endgame)"]   << Option(100, 0, 200, on_eval);
69   o["Space"]                    << Option(100, 0, 200, on_eval);
70   o["Aggressiveness"]           << Option(100, 0, 200, on_eval);
71   o["Cowardice"]                << Option(100, 0, 200, on_eval);
72   o["Min Split Depth"]          << Option(0, 0, 12, on_threads);
73   o["Threads"]                  << Option(1, 1, MAX_THREADS, on_threads);
74   o["Idle Threads Sleep"]       << Option(true);
75   o["Hash"]                     << Option(32, 1, 16384, on_hash_size);
76   o["Clear Hash"]               << Option(on_clear_hash);
77   o["Ponder"]                   << Option(true);
78   o["OwnBook"]                  << Option(false);
79   o["MultiPV"]                  << Option(1, 1, 500);
80   o["Skill Level"]              << Option(20, 0, 20);
81   o["Emergency Move Horizon"]   << Option(40, 0, 50);
82   o["Emergency Base Time"]      << Option(60, 0, 30000);
83   o["Emergency Move Time"]      << Option(30, 0, 5000);
84   o["Minimum Thinking Time"]    << Option(20, 0, 5000);
85   o["Slow Mover"]               << Option(80, 10, 1000);
86   o["UCI_Chess960"]             << Option(false);
87 }
88
89
90 /// operator<<() is used to print all the options default values in chronological
91 /// insertion order (the idx field) and in the format defined by the UCI protocol.
92
93 std::ostream& operator<<(std::ostream& os, const OptionsMap& om) {
94
95   for (size_t idx = 0; idx < om.size(); ++idx)
96       for (OptionsMap::const_iterator it = om.begin(); it != om.end(); ++it)
97           if (it->second.idx == idx)
98           {
99               const Option& o = it->second;
100               os << "\noption name " << it->first << " type " << o.type;
101
102               if (o.type != "button")
103                   os << " default " << o.defaultValue;
104
105               if (o.type == "spin")
106                   os << " min " << o.min << " max " << o.max;
107
108               break;
109           }
110   return os;
111 }
112
113
114 /// Option class constructors and conversion operators
115
116 Option::Option(const char* v, OnChange f) : type("string"), min(0), max(0), on_change(f)
117 { defaultValue = currentValue = v; }
118
119 Option::Option(bool v, OnChange f) : type("check"), min(0), max(0), on_change(f)
120 { defaultValue = currentValue = (v ? "true" : "false"); }
121
122 Option::Option(OnChange f) : type("button"), min(0), max(0), on_change(f)
123 {}
124
125 Option::Option(int v, int minv, int maxv, OnChange f) : type("spin"), min(minv), max(maxv), on_change(f)
126 { std::ostringstream ss; ss << v; defaultValue = currentValue = ss.str(); }
127
128
129 Option::operator int() const {
130   assert(type == "check" || type == "spin");
131   return (type == "spin" ? atoi(currentValue.c_str()) : currentValue == "true");
132 }
133
134 Option::operator std::string() const {
135   assert(type == "string");
136   return currentValue;
137 }
138
139
140 /// operator<<() inits options and assigns idx in the correct printing order
141
142 void Option::operator<<(const Option& o) {
143
144   static size_t insert_order = 0;
145
146   *this = o;
147   idx = insert_order++;
148 }
149
150
151 /// operator=() updates currentValue and triggers on_change() action. It's up to
152 /// the GUI to check for option's limits, but we could receive the new value from
153 /// the user by console window, so let's check the bounds anyway.
154
155 Option& Option::operator=(const string& v) {
156
157   assert(!type.empty());
158
159   if (   (type != "button" && v.empty())
160       || (type == "check" && v != "true" && v != "false")
161       || (type == "spin" && (atoi(v.c_str()) < min || atoi(v.c_str()) > max)))
162       return *this;
163
164   if (type != "button")
165       currentValue = v;
166
167   if (on_change)
168       on_change(*this);
169
170   return *this;
171 }
172
173 } // namespace UCI