]> git.sesse.net Git - stockfish/blob - src/misc.cpp
8691c3802aedcddf3b8cc7ac56fa6d40398d467f
[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 #  include <windows.h>
34 #  include <time.h>
35 #  include "dos.h"
36 int gettimeofday(struct timeval * tp, struct timezone * tzp);
37
38 #endif
39
40 #include <cstdio>
41 #include <iomanip>
42 #include <iostream>
43 #include <sstream>
44
45 #include "misc.h"
46
47
48 ////
49 //// Variables
50 ////
51
52 static const std::string AppName = "Stockfish";
53 static const std::string AppTag  = "";
54
55 long dbg_cnt0 = 0;
56 long dbg_cnt1 = 0;
57
58 bool dbg_show_mean = false;
59 bool dbg_show_hit_rate = false;
60
61
62 ////
63 //// Functions
64 ////
65
66 void dbg_print_hit_rate() {
67
68   std::cout << "Total " << dbg_cnt0 << " Hit " << dbg_cnt1
69             << " hit rate (%) " << (dbg_cnt1*100)/(dbg_cnt0 ? dbg_cnt0 : 1)
70             << std::endl;
71 }
72
73 void dbg_print_mean() {
74
75   std::cout << "Total " << dbg_cnt0 << " Mean "
76             << (float)dbg_cnt1 / (dbg_cnt0 ? dbg_cnt0 : 1) << std::endl;
77 }
78
79 void dbg_print_hit_rate(std::ofstream& logFile) {
80
81   logFile << "Total " << dbg_cnt0 << " Hit " << dbg_cnt1
82           << " hit rate (%) " << (dbg_cnt1*100)/(dbg_cnt0 ? dbg_cnt0 : 1)
83           << std::endl;
84 }
85
86 void dbg_print_mean(std::ofstream& logFile) {
87
88   logFile << "Total " << dbg_cnt0 << " Mean "
89           << (float)dbg_cnt1 / (dbg_cnt0 ? dbg_cnt0 : 1) << std::endl;
90 }
91
92 /// engine_name() returns the full name of the current Stockfish version.
93 /// This will be either "Stockfish YYMMDD" (where YYMMDD is the date when the
94 /// program was compiled) or "Stockfish <version number>", depending on whether
95 /// the constant EngineVersion (defined in misc.h) is empty.
96
97 const std::string engine_name() {
98
99   if (EngineVersion.empty())
100   {
101       std::string date(__DATE__); // From compiler, format is "Sep 21 2008"
102       std::string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
103
104       size_t mon = 1 + months.find(date.substr(0, 3)) / 4;
105
106       std::stringstream s;
107       std::string day = (date[4] == ' ' ? date.substr(5, 1) : date.substr(4, 2));
108
109       std::string name = AppName + " " + AppTag + " ";
110
111       s << name << date.substr(date.length() - 2) << std::setfill('0')
112         << std::setw(2) << mon << std::setw(2) << day;
113
114       return s.str();
115   } else
116       return "Stockfish " + EngineVersion;
117 }
118
119
120 /// get_system_time() returns the current system time, measured in
121 /// milliseconds.
122
123 int get_system_time() {
124   struct timeval t;
125   gettimeofday(&t, NULL);
126   return t.tv_sec*1000 + t.tv_usec/1000;
127 }
128
129
130 /// cpu_count() tries to detect the number of CPU cores.
131
132 #if !defined(_MSC_VER)
133
134 #  if defined(_SC_NPROCESSORS_ONLN)
135 int cpu_count() {
136   return Min(sysconf(_SC_NPROCESSORS_ONLN), 8);
137 }
138 #  else
139 int cpu_count() {
140   return 1;
141 }
142 #  endif
143
144 #else
145
146 int cpu_count() {
147   SYSTEM_INFO s;
148   GetSystemInfo(&s);
149   return Min(s.dwNumberOfProcessors, 8);
150 }
151
152 #endif
153
154
155 /*
156   From Beowulf, from Olithink
157 */
158 #ifndef _WIN32
159 /* Non-windows version */
160 int Bioskey()
161 {
162   fd_set          readfds;
163   struct timeval  timeout;
164
165   FD_ZERO(&readfds);
166   FD_SET(fileno(stdin), &readfds);
167   /* Set to timeout immediately */
168   timeout.tv_sec = 0;
169   timeout.tv_usec = 0;
170   select(16, &readfds, 0, 0, &timeout);
171
172   return (FD_ISSET(fileno(stdin), &readfds));
173 }
174
175 #else
176 /* Windows-version */
177 #include <windows.h>
178 #include <conio.h>
179 int Bioskey()
180 {
181     static int      init = 0,
182                     pipe;
183     static HANDLE   inh;
184     DWORD           dw;
185     /* If we're running under XBoard then we can't use _kbhit() as the input
186      * commands are sent to us directly over the internal pipe */
187
188 #if defined(FILE_CNT)
189     if (stdin->_cnt > 0)
190         return stdin->_cnt;
191 #endif
192     if (!init) {
193         init = 1;
194         inh = GetStdHandle(STD_INPUT_HANDLE);
195         pipe = !GetConsoleMode(inh, &dw);
196         if (!pipe) {
197             SetConsoleMode(inh, dw & ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT));
198             FlushConsoleInputBuffer(inh);
199         }
200     }
201     if (pipe) {
202         if (!PeekNamedPipe(inh, NULL, 0, NULL, &dw, NULL))
203             return 1;
204         return dw;
205     } else {
206         // Count the number of unread input records, including keyboard,
207         // mouse, and window-resizing input records.
208         GetNumberOfConsoleInputEvents(inh, &dw);
209         if (dw <= 0)
210             return 0;
211
212         // Read data from console without removing it from the buffer
213         INPUT_RECORD rec[256];
214         DWORD recCnt;
215         if (!PeekConsoleInput(inh, rec, Min(dw, 256), &recCnt))
216             return 0;
217
218         // Search for at least one keyboard event
219         for (DWORD i = 0; i < recCnt; i++)
220             if (rec[i].EventType == KEY_EVENT)
221                 return 1;
222
223         return 0;
224     }
225 }
226 #endif