]> git.sesse.net Git - stockfish/blob - src/misc.cpp
Space inflate book.cpp
[stockfish] / src / misc.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 #if !defined(_MSC_VER)
26
27 #  include <sys/time.h>
28 #  include <sys/types.h>
29 #  include <unistd.h>
30
31 #else
32 /*
33    (c) Copyright 1992 Eric Backus
34
35    This software may be used freely so long as this copyright notice is
36    left intact. There is no warrantee on this software.
37 */
38 #  include <windows.h>
39 #  include <time.h>
40 #  include "dos.h"
41
42 static int gettimeofday(struct timeval* tp, struct timezone*)
43 {
44     SYSTEMTIME systime;
45
46     if (tp)
47     {
48         struct tm tmrec;
49         time_t theTime = time(NULL);
50
51         tmrec = *localtime(&theTime);
52         tp->tv_sec = mktime(&tmrec);
53         GetLocalTime(&systime); /* system time */
54
55         tp->tv_usec = systime.wMilliseconds * 1000;
56     }
57     return 0;
58 }
59
60 #endif
61
62 #include <cassert>
63 #include <cstdio>
64 #include <iomanip>
65 #include <iostream>
66 #include <sstream>
67
68 #include "misc.h"
69
70 using namespace std;
71
72 /// Version number. If this is left empty, the current date (in the format
73 /// YYMMDD) is used as a version number.
74
75 static const string EngineVersion = "";
76 static const string AppName = "Stockfish";
77 static const string AppTag  = "";
78
79
80 ////
81 //// Variables
82 ////
83
84 long dbg_cnt0 = 0;
85 long dbg_cnt1 = 0;
86
87 bool dbg_show_mean = false;
88 bool dbg_show_hit_rate = false;
89
90
91 ////
92 //// Functions
93 ////
94
95 void dbg_hit_on(bool b) {
96
97     assert(!dbg_show_mean);
98     dbg_show_hit_rate = true;
99     dbg_cnt0++;
100     if (b)
101         dbg_cnt1++;
102 }
103
104 void dbg_hit_on_c(bool c, bool b) {
105
106     if (c)
107         dbg_hit_on(b);
108 }
109
110 void dbg_before() {
111
112     assert(!dbg_show_mean);
113     dbg_show_hit_rate = true;
114     dbg_cnt0++;
115 }
116
117 void dbg_after() {
118
119     assert(!dbg_show_mean);
120     dbg_show_hit_rate = true;
121     dbg_cnt1++;
122 }
123
124 void dbg_mean_of(int v) {
125
126     assert(!dbg_show_hit_rate);
127     dbg_show_mean = true;
128     dbg_cnt0++;
129     dbg_cnt1 += v;
130 }
131
132 void dbg_print_hit_rate() {
133
134   cout << "Total " << dbg_cnt0 << " Hit " << dbg_cnt1
135        << " hit rate (%) " << (dbg_cnt1*100)/(dbg_cnt0 ? dbg_cnt0 : 1) << endl;
136 }
137
138 void dbg_print_mean() {
139
140   cout << "Total " << dbg_cnt0 << " Mean "
141        << (float)dbg_cnt1 / (dbg_cnt0 ? dbg_cnt0 : 1) << endl;
142 }
143
144 void dbg_print_hit_rate(ofstream& logFile) {
145
146   logFile << "Total " << dbg_cnt0 << " Hit " << dbg_cnt1
147           << " hit rate (%) " << (dbg_cnt1*100)/(dbg_cnt0 ? dbg_cnt0 : 1) << endl;
148 }
149
150 void dbg_print_mean(ofstream& logFile) {
151
152   logFile << "Total " << dbg_cnt0 << " Mean "
153           << (float)dbg_cnt1 / (dbg_cnt0 ? dbg_cnt0 : 1) << endl;
154 }
155
156 /// engine_name() returns the full name of the current Stockfish version.
157 /// This will be either "Stockfish YYMMDD" (where YYMMDD is the date when the
158 /// program was compiled) or "Stockfish <version number>", depending on whether
159 /// the constant EngineVersion (defined in misc.h) is empty.
160
161 const string engine_name() {
162
163   if (!EngineVersion.empty())
164       return "Stockfish " + EngineVersion;
165
166   string date(__DATE__); // From compiler, format is "Sep 21 2008"
167   string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
168
169   size_t mon = 1 + months.find(date.substr(0, 3)) / 4;
170
171   stringstream s;
172   string day = (date[4] == ' ' ? date.substr(5, 1) : date.substr(4, 2));
173
174   string name = AppName + " " + AppTag + " ";
175
176   s << name << date.substr(date.length() - 2) << setfill('0')
177     << setw(2) << mon << setw(2) << day;
178
179   return s.str();
180 }
181
182
183 /// get_system_time() returns the current system time, measured in
184 /// milliseconds.
185
186 int get_system_time() {
187   struct timeval t;
188   gettimeofday(&t, NULL);
189   return t.tv_sec*1000 + t.tv_usec/1000;
190 }
191
192
193 /// cpu_count() tries to detect the number of CPU cores.
194
195 #if !defined(_MSC_VER)
196
197 #  if defined(_SC_NPROCESSORS_ONLN)
198 int cpu_count() {
199   return Min(sysconf(_SC_NPROCESSORS_ONLN), 8);
200 }
201 #  else
202 int cpu_count() {
203   return 1;
204 }
205 #  endif
206
207 #else
208
209 int cpu_count() {
210   SYSTEM_INFO s;
211   GetSystemInfo(&s);
212   return Min(s.dwNumberOfProcessors, 8);
213 }
214
215 #endif
216
217
218 /*
219   From Beowulf, from Olithink
220 */
221 #ifndef _WIN32
222 /* Non-windows version */
223 int Bioskey()
224 {
225   fd_set          readfds;
226   struct timeval  timeout;
227
228   FD_ZERO(&readfds);
229   FD_SET(fileno(stdin), &readfds);
230   /* Set to timeout immediately */
231   timeout.tv_sec = 0;
232   timeout.tv_usec = 0;
233   select(16, &readfds, 0, 0, &timeout);
234
235   return (FD_ISSET(fileno(stdin), &readfds));
236 }
237
238 #else
239 /* Windows-version */
240 #include <windows.h>
241 #include <conio.h>
242 int Bioskey()
243 {
244     static int      init = 0,
245                     pipe;
246     static HANDLE   inh;
247     DWORD           dw;
248     /* If we're running under XBoard then we can't use _kbhit() as the input
249      * commands are sent to us directly over the internal pipe */
250
251 #if defined(FILE_CNT)
252     if (stdin->_cnt > 0)
253         return stdin->_cnt;
254 #endif
255     if (!init) {
256         init = 1;
257         inh = GetStdHandle(STD_INPUT_HANDLE);
258         pipe = !GetConsoleMode(inh, &dw);
259         if (!pipe) {
260             SetConsoleMode(inh, dw & ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT));
261             FlushConsoleInputBuffer(inh);
262         }
263     }
264     if (pipe) {
265         if (!PeekNamedPipe(inh, NULL, 0, NULL, &dw, NULL))
266             return 1;
267         return dw;
268     } else {
269         // Count the number of unread input records, including keyboard,
270         // mouse, and window-resizing input records.
271         GetNumberOfConsoleInputEvents(inh, &dw);
272         if (dw <= 0)
273             return 0;
274
275         // Read data from console without removing it from the buffer
276         INPUT_RECORD rec[256];
277         DWORD recCnt;
278         if (!PeekConsoleInput(inh, rec, Min(dw, 256), &recCnt))
279             return 0;
280
281         // Search for at least one keyboard event
282         for (DWORD i = 0; i < recCnt; i++)
283             if (rec[i].EventType == KEY_EVENT)
284                 return 1;
285
286         return 0;
287     }
288 }
289 #endif