]> git.sesse.net Git - stockfish/blob - src/main.cpp
Fix two gcc warnings in san.cpp
[stockfish] / src / main.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 Marco Costalba
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 <iostream>
26
27 #include "benchmark.h"
28 #include "bitboard.h"
29 #include "direction.h"
30 #include "endgame.h"
31 #include "evaluate.h"
32 #include "material.h"
33 #include "mersenne.h"
34 #include "misc.h"
35 #include "movepick.h"
36 #include "position.h"
37 #include "search.h"
38 #include "thread.h"
39 #include "uci.h"
40 #include "ucioption.h"
41
42 using std::string;
43
44 //// 
45 //// Functions
46 ////
47
48 int main(int argc, char *argv[]) {
49
50   // Disable IO buffering
51   std::cout.rdbuf()->pubsetbuf(NULL, 0);
52   std::cin.rdbuf()->pubsetbuf(NULL, 0);
53
54   // Initialization
55
56   init_mersenne();
57   init_direction_table();
58   init_bitboards();
59   init_uci_options();
60   Position::init_zobrist();
61   Position::init_piece_square_tables();
62   MovePicker::init_phase_table();
63   init_eval(1);
64   init_bitbases();
65   init_threads();
66
67   // Make random number generation less deterministic, for book moves
68   for (int i = abs(get_system_time() % 10000); i > 0; i--)
69       genrand_int32();
70
71   // Process command line arguments
72   if (argc >= 2 && string(argv[1]) == "bench")
73   {
74       if (argc < 4 || argc > 7)
75       {
76         std::cout << "Usage: glaurung bench <hash size> <threads> "
77                   << "[time = 60s] [fen positions file = default] "
78                   << "[time, depth or node limited = time]"
79                   << std::endl;
80         exit(0);
81       }
82       string time = argc > 4 ? argv[4] : "60";
83       string fen = argc > 5 ? argv[5] : "default";
84       string lim = argc > 6 ? argv[6] : "time";
85       benchmark(string(argv[2]) + " " + string(argv[3]) + " " + time + " " + fen + " " + lim);
86       return 0;
87   }
88
89   // Print copyright notice
90   std::cout << engine_name() << ".  Copyright (C) "
91             << "2004-2008 Tord Romstad, Marco Costalba. "
92             << std::endl;
93
94   // Enter UCI mode
95   uci_main_loop();
96
97   return 0;
98 }