]> git.sesse.net Git - stockfish/blobdiff - src/main.cpp
Introduce namespace Bitbases
[stockfish] / src / main.cpp
index 1b2fdf9dec5efff93d657b46ff042b31ef516254..d0e593daf61c6ea4f13ca3b68b0395d7053da4f8 100644 (file)
 #include "position.h"
 #include "search.h"
 #include "thread.h"
+#include "tt.h"
 #include "ucioption.h"
 
-using namespace std;
-
-extern void uci_loop();
-extern void benchmark(int argc, char* argv[]);
-extern void kpk_bitbase_init();
-
 int main(int argc, char* argv[]) {
 
-  bitboards_init();
+  std::cout << engine_info() << std::endl;
+
+  UCI::init(Options);
+  Bitboards::init();
   Position::init();
-  kpk_bitbase_init();
+  Bitbases::init_kpk();
   Search::init();
   Threads.init();
   Eval::init();
   TT.set_size(Options["Hash"]);
 
-  // Don't sync with C library I/O buffers, faster but now using printf()
-  // or scanf() could yield to issues because buffers are independent.
-  cout.sync_with_stdio(false);
-  cin.sync_with_stdio(false);
-
-  cout << engine_info() << endl;
-
-  if (argc == 1)
-      uci_loop();
-
-  else if (string(argv[1]) == "bench")
-      benchmark(argc, argv);
+  std::string args;
 
-  else
-      cerr << "\nUsage: stockfish bench [hash size = 128] [threads = 1] "
-           << "[limit = 12] [fen positions file = default] "
-           << "[limited by depth, time, nodes or perft = depth]" << endl;
+  for (int i = 1; i < argc; i++)
+      args += std::string(argv[i]) + " ";
 
-  Threads.exit();
+  UCI::loop(args);
 }