-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.cpp
305 lines (267 loc) · 9.82 KB
/
cli.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
#include "cli.hpp"
#include "options.hpp"
#include "process_pgn/read_pgn_data.hpp"
#include "representation/fen.hpp"
#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/split.hpp>
#include <iostream>
#include <string>
#include <thread>
#include <unordered_map>
#include "representation/position.hpp"
#include "representation/notation.hpp"
#include <vector>
#include "engine/engine.hpp"
std::unordered_map<Command, CommandProcessor> command_processor_map;
std::unordered_map<std::string, Command> command_map;
int hardcoded_stage = 0;
void CLI::log_and_respond(std::string output)
{
m_logger.info("--> {}", output);
std::cout << output << std::endl;
}
void CLI::cli_loop()
{
m_logger.info("Starting main clip loop...");
init_command_map();
for (std::string line; std::getline(std::cin, line);)
{
m_logger.info("<-- {}", line);
// spawn thread to handle command
// if command is computationally expensive, command will
// have its own threadpool
process_command(line);
}
}
void CLI::announce_uciok() { log_and_respond("uciok"); }
void CLI::announce_readyok() { log_and_respond("readyok"); }
void CLI::process_command_uci(std::vector<std::string> args)
{
log_and_respond("id name MateMan");
log_and_respond("id author Vasia Patov");
announce_options();
announce_uciok();
}
void CLI::process_command_debug(std::vector<std::string> args)
{
std::cout << "Processing Debug!" << std::endl;
sleep(10);
std::cout << "Done Debug!" << std::endl;
}
void CLI::process_command_isready(std::vector<std::string> args)
{
// TODO Determine if engine is actually ready (if it has finished setting all
// options)
announce_readyok();
};
void CLI::process_command_register(std::vector<std::string> args){};
void CLI::process_command_ucinewgame(std::vector<std::string> args){};
// position startpos moves c2c4
// position [fen <fenstring> | startpos ] moves <move1> .... <movei>
void CLI::process_command_position(std::vector<std::string> args)
{
if (!args.size())
{
m_logger.warn("No arguments for position command.");
return;
}
auto it = args.begin();
assert((it++)->compare("position") == 0);
std::string startpos_type = *it++;
if (startpos_type.compare("startpos") == 0)
{
m_engine.m_current_position = starting_position();
}
else if (startpos_type.compare("fen") == 0)
{
std::stringstream fenstring;
for (auto el = it; el != args.end(); el++)
fenstring << *el << " ";
// std::string fen_string = *it++;
m_engine.m_current_position = fen_to_position(fenstring.str());
m_engine.m_current_position->print_with_borders_highlight_squares(0, 0);
it = args.end();
}
else if (startpos_type.compare("add") == 0)
{
m_engine.m_current_position->advance_position(lan_to_move(*it++));
return;
}
else
{
m_logger.warn("Unrecognized command for position: {}", startpos_type);
return;
}
// either except moves move1 move2 ... moveN, or nothing
if (it == args.end())
{
m_logger.debug("No moves found, using current position.");
return;
}
std::string moves_str = *it++;
if (moves_str.compare("moves") == 0)
{
// for each move, adjust the position with it.
while (it != args.end())
{
Move move = lan_to_move(*it++);
m_engine.m_current_position->advance_position(move);
m_logger.debug(position_to_fen(m_engine.m_current_position));
}
m_logger.debug(m_engine.m_current_position->pretty_string());
m_logger.debug(string_list_all_moves(m_engine.m_current_position));
}
else
{
// TODO also configure logger to log to stderr
m_logger.warn("Unrecognized continuation of position command: {}", moves_str);
}
}
void CLI::process_command_list_engine_moves(std::vector<std::string> args)
{
std::string all_moves_str = string_list_all_moves(m_engine.m_current_position);
m_logger.info(all_moves_str);
std::cout << all_moves_str << std::endl;
}
void CLI::process_command_list_tablebase_moves(std::vector<std::string> args)
{
m_engine.m_master_tablebase->list_all_moves_for_position(zobrist_hash(m_engine.m_current_position.get()));
}
// TODO implement go, position commands and test engine with moves picked from tablebase.
void CLI::process_command_go(std::vector<std::string> args)
{
MoveKey best_move;
// * movetime <x>
// search exactly x mseconds
// * infinite
// search until the "stop" command. Do not exit the search without being told so in this mode!
// write function that creates vector of pairs for keys/values
auto time = std::chrono::milliseconds(5000);
best_move = m_engine.find_best_move(time);
log_and_respond("bestmove " + movekey_to_lan(best_move));
};
void CLI::process_command_stop(std::vector<std::string> args)
{
// * stop
// stop calculating as soon as possible,
// don't forget the "bestmove" and possibly the "ponder" token when finishing the search
// interrupt thread that is calculating moves, if there is a thread that is doing that.
// that thread should have been maintaining what the best move was at every given moment.
// that thread should have some sort of an interrupt handler.
// look into thread signaling or something
}
void CLI::process_command_ponderhit(std::vector<std::string> args){};
void CLI::process_command_quit(std::vector<std::string> args)
{
// TODO cleanup?
exit(0);
}
void CLI::process_command_create_tablebases(std::vector<std::string> args)
{
if (args.size() < 2)
{
m_logger.info("You must provide a tablebase name");
return;
}
std::string tablebase_name = args.at(1);
if (!tablebase_name.size())
{
tablebase_name = program_start_timestamp;
}
else
{
// check tablebase name to make sure there are no illegal characters.
}
m_logger.debug("tablebase name: {}", tablebase_name);
m_engine.set_tablebase(create_tablebases_from_pgn_data(tablebase_name));
}
void CLI::process_command_read_tablebases(std::vector<std::string> args)
{
if (args.size() < 2)
{
std::cout << "You must provide a table name" << std::endl;
return;
}
std::string tablebase_name = args.at(1);
m_logger.debug("tablebase name: {}", tablebase_name);
if (std::filesystem::is_directory(tablebase_data_dir / tablebase_name))
{
m_engine.set_tablebase(std::make_shared<Tablebase>(tablebase_data_dir / tablebase_name));
}
else
{
std::cerr << ColorCode::red << "Cannot find tablebase with name \"" << tablebase_name
<< ColorCode::end << std::endl;
}
}
void CLI::process_command_test_tablebases(std::vector<std::string> args)
{
m_engine.m_master_tablebase->walk_down_most_popular_path();
}
void CLI::init_command_map()
{
command_map["uci"] = Command::uci;
command_map["debug"] = Command::debug;
command_map["isready"] = Command::isready;
command_map["register"] = Command::_register;
command_map["ucinewgame"] = Command::ucinewgame;
command_map["position"] = Command::position;
command_map["go"] = Command::go;
command_map["stop"] = Command::stop;
command_map["ponderhit"] = Command::ponderhit;
command_map["quit"] = Command::quit;
command_map["create_tablebases"] = Command::create_tablebases;
command_map["read_tablebases"] = Command::read_tablebases;
command_map["test_tablebases"] = Command::test_tablebases;
command_map["list_tablebase_moves"] = Command::list_tablebase_moves;
command_map["list_engine_moves"] = Command::list_engine_moves;
command_map["print_current_position"] = Command::print_current_position;
command_map["pcp"] = Command::print_current_position;
command_processor_map[Command::uci] = &CLI::process_command_uci;
command_processor_map[Command::debug] = &CLI::process_command_debug;
command_processor_map[Command::isready] = &CLI::process_command_isready;
command_processor_map[Command::_register] = &CLI::process_command_register;
command_processor_map[Command::ucinewgame] = &CLI::process_command_ucinewgame;
command_processor_map[Command::position] = &CLI::process_command_position;
command_processor_map[Command::go] = &CLI::process_command_go;
command_processor_map[Command::stop] = &CLI::process_command_stop;
command_processor_map[Command::ponderhit] = &CLI::process_command_ponderhit;
command_processor_map[Command::quit] = &CLI::process_command_quit;
command_processor_map[Command::create_tablebases] = &CLI::process_command_create_tablebases;
command_processor_map[Command::read_tablebases] = &CLI::process_command_read_tablebases;
command_processor_map[Command::test_tablebases] = &CLI::process_command_test_tablebases;
command_processor_map[Command::list_tablebase_moves] = &CLI::process_command_list_tablebase_moves;
command_processor_map[Command::list_engine_moves] = &CLI::process_command_list_engine_moves;
command_processor_map[Command::print_current_position] = &CLI::process_command_print_current_position;
}
void CLI::process_command_print_current_position(std::vector<std::string> args)
{
m_engine.m_current_position->print_with_borders_highlight_squares(0, 0);
}
void CLI::process_command(std::string command)
{
std::vector<std::string> args;
boost::algorithm::split(args, command, boost::algorithm::is_any_of("\t "),
boost::token_compress_on);
std::string primary = args.at(0);
auto it = command_map.find(primary);
if (it == command_map.end())
{
// Error handling of invalid command
std::cout << "Could not interpret command " << command << std::endl;
return;
}
CommandProcessor command_processor = command_processor_map.find(it->second)->second;
(this->*command_processor)(args);
// if the command is one of the ones that requires user input, dont spawn a new thread for it
// so that it's easier to get user input.
// if (primary.compare("create_tablebases") == 0 || primary.compare("read_tablebases") == 0)
// {
// (this->*command_processor)(args);
// }
// else
// {
// std::thread command_thread(command_processor, this, args);
// command_thread.detach();
// }
}