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