Port UCI2WB to Linux
[uci2wb.git] / UCI2WB.c
1 /************************* UCI2WB by H.G.Muller ****************************/\r
2 \r
3 #define VERSION "1.5"\r
4 \r
5 #include <stdio.h>\r
6 #include <stdlib.h>\r
7 #ifdef WIN32
8 #  include <windows.h>
9 #  include <io.h>\r
10    HANDLE process;\r
11    DWORD thread_id;\r
12 #else
13 #  include <pthread.h>
14 #  include <signal.h>
15 #  define NO_ERROR 0
16 #  include <sys/time.h>\r
17    int GetTickCount() // with thanks to Tord\r
18    { struct timeval t; gettimeofday(&t, NULL); return t.tv_sec*1000 + t.tv_usec/1000; }\r
19 #endif\r
20 #include <fcntl.h>\r
21 #include <string.h>\r
22 \r
23 #ifdef _MSC_VER \r
24 #define SLEEP() Sleep(1) \r
25 #else \r
26 #define SLEEP() usleep(10) \r
27 #endif \r
28 \r
29 // Set VARIANTS for in WinBoard variant feature. (With -s option this will always be reset to use "shogi".)\r
30 #  define VARIANTS "normal,xiangqi"\r
31 \r
32 #define WHITE 0\r
33 #define BLACK 1\r
34 #define NONE  2\r
35 #define ANALYZE 3\r
36 \r
37 char move[2000][10], checkOptions[8192], iniPos[256], hashOpt[20], pause, pondering, ponder, post, hasHash, c, sc='c', *suffix;\r
38 int mps, tc, inc, sTime, depth, myTime, hisTime, stm, computer = NONE, memory, oldMem=0, cores, moveNr, lastDepth, lastScore, startTime;\r
39 int statDepth, statScore, statNodes, statTime, currNr, size; char currMove[20]; // for analyze mode\r
40 \r
41 FILE *toE, *fromE;\r
42 int pid;\r
43 \r
44 void\r
45 StartSearch(char *ponder)\r
46 {       // send the 'go' command to engine. Suffix by ponder.\r
47         int nr = moveNr + (ponder[0] != 0); // we ponder for one move ahead!\r
48         fprintf(toE, "\ngo btime %d wtime %d", stm == BLACK ^ sc=='s' ? myTime : hisTime, stm == WHITE ^ sc=='s' ? myTime : hisTime);\r
49         printf(    "\n# go btime %d wtime %d", stm == BLACK ^ sc=='s' ? myTime : hisTime, stm == WHITE ^ sc=='s' ? myTime : hisTime);\r
50         if(sTime > 0) fprintf(toE, " movetime %d", sTime),printf(" movetime %d", sTime); else\r
51         if(mps) fprintf(toE, " movestogo %d", mps*(nr/(2*mps)+1)-nr/2),printf(" movestogo %d", mps*(nr/(2*mps)+1)-nr/2);\r
52         if(inc && !suffix) fprintf(toE, " winc %d binc %d", inc, inc),printf(" winc %d binc %d", inc, inc);\r
53         if(depth > 0) fprintf(toE, " depth %d", depth),printf(" depth %d", depth);\r
54         if(suffix) fprintf(toE, suffix, inc),printf(suffix, inc);\r
55         fprintf(toE, "%s\n", ponder);\r
56         printf("%s\n", ponder);\r
57 }\r
58 \r
59 void\r
60 StopPonder(int pondering)\r
61 {\r
62         if(!pondering) return;\r
63         pause = 1;\r
64         fprintf(toE, "stop\n");printf("# stop\n"); // note: 'pondering' remains set until engine acknowledges 'stop' with 'bestmove'\r
65         while(pause) SLEEP(); // wait for engine to acknowledge 'stop' with 'bestmove'.\r
66 }\r
67 \r
68 void\r
69 LoadPos(int moveNr)\r
70 {\r
71         int j;\r
72         fprintf(toE, "%s moves", iniPos);\r
73         printf(    "# %s moves", iniPos);\r
74         for(j=0; j<moveNr; j++) fprintf(toE, " %s", move[j]),printf(" %s", move[j]);\r
75 }\r
76 \r
77 char *Convert(char *pv)\r
78 {   // convert Shogi coordinates to WB\r
79     char *p, *q, c;\r
80     static char buf[10000];\r
81     if(sc != 's') return pv;\r
82     p = pv; q = buf;\r
83     while(c = *p++) {\r
84         if(c >= '0' && c <= '9' || c >= 'a' && c <= 'z') *q++ = 'a'+'0'+size - c; else *q++ = c;\r
85     }\r
86     *q++ = 0;\r
87     return buf;\r
88 }\r
89 \r
90 void *\r
91 Engine2GUI()\r
92 {\r
93     char line[1024], command[256];\r
94 \r
95     while(1) {\r
96         int i=0, x; char *p;\r
97 \r
98         fflush(stdout); fflush(toE);\r
99         while((line[i] = x = fgetc(fromE)) != EOF && line[i] != '\n') i++;\r
100         line[++i] = 0;\r
101         if(x == EOF) exit(0);\r
102 printf("# engine said: %s", line);\r
103         sscanf(line, "%s", command);\r
104         if(!strcmp(command, "bestmove")) {\r
105             if(pause) { pondering = pause = 0; continue; } // bestmove was reply to ponder miss or analysis result; ignore.\r
106             // move was a move to be played\r
107             if(strstr(line+9, "resign")) { printf("resign\n"); computer = NONE; }\r
108             if(strstr(line+9, "(none)") || strstr(line+9, "null") ||\r
109                strstr(line+9, "0000")) { printf("%s\n", lastScore < -99999 ? "resign" : "1/2-1/2 {stalemate}"); computer = NONE; }\r
110             sscanf(line, "bestmove %s", move[moveNr++]);\r
111             myTime -= (GetTickCount() - startTime)*1.02 + inc; // update own clock, so we can give correct wtime, btime with ponder\r
112             if(mps && ((moveNr+1)/2) % mps == 0) myTime += tc; if(sTime) myTime = sTime; // new session or move starts\r
113             // first start a new ponder search, if pondering is on and we have a move to ponder on\r
114             if(p = strstr(line+9, "ponder")) {\r
115               if(computer != NONE && ponder) {\r
116                 sscanf(p+7, "%s", move[moveNr]);\r
117 printf("# ponder on %s\n", move[moveNr]);\r
118                 LoadPos(moveNr+1); // load position\r
119                 // and set engine pondering\r
120                 pondering = 1; lastDepth = 1;\r
121                 StartSearch(" ponder");\r
122               }\r
123               p[-1] = '\n'; *p = 0; // strip off ponder move\r
124             }\r
125             if(sc == 's') {\r
126               // convert USI move to WB format\r
127               line[11] = 'a'+'0'+size - line[11];\r
128               line[12] = 'a'+'0'+size - line[12];\r
129               if(line[10] == '*') { // drop\r
130                 line[10] = '@';\r
131               } else {\r
132                 line[9]  = 'a'+'0'+size - line[9];\r
133                 line[10] = 'a'+'0'+size - line[10];\r
134                 if((stm == WHITE ? (line[10]>'0'+size-size/3 || line[12]>'0'+size-size/3)\r
135                                  : (line[10] <= '0'+size/3 || line[12] <= '0'+size/3)) && line[13] != '+')\r
136                      line[13] = '=', line[14] = 0;\r
137               }\r
138             }\r
139             printf("move %s\n", line+9); // send move to GUI\r
140             if(lastScore == 100001 && iniPos[0] != 'f') { printf("%s {mate}\n", stm == WHITE ? "1-0" : "0-1"); computer = NONE; }\r
141             stm = WHITE+BLACK - stm;\r
142         }\r
143         else if(!strcmp(command, "info")) {\r
144             int d=0, s=0, t=0, n=0;\r
145             char *pv;\r
146             if(!post) continue;\r
147             if(strstr(line, "info string ") == line) printf("%d 0 0 0 %s", lastDepth, line+12); else {\r
148                 if(p = strstr(line+4, " depth "))      sscanf(p+7, "%d", &d), statDepth = d;\r
149                 if(p = strstr(line+4, " score cp "))   sscanf(p+10, "%d", &s), statScore = s; else\r
150                 if(p = strstr(line+4, " score mate ")) sscanf(p+12, "%d", &s), s += s>0 ? 100000 : -100000, statScore = s; else\r
151                 if(p = strstr(line+4, " score "))      sscanf(p+7, "%d", &s), statScore = s;\r
152                 if(p = strstr(line+4, " nodes "))      sscanf(p+7, "%d", &n), statNodes = n;\r
153                 if(p = strstr(line+4, " time "))       sscanf(p+6, "%d", &t), t /= 10, statTime = t;\r
154                 if(p = strstr(line+4, " currmove "))   sscanf(p+10,"%s", currMove);\r
155                 if(p = strstr(line+4, " currmovenumber ")) sscanf(p+16,"%d", &currNr);\r
156                 if(pv = strstr(line+4, " pv ")) // convert PV info to WB thinking output\r
157                     printf("%3d  %6d %6d %10d %s", lastDepth=d, lastScore=s, t, n, Convert(pv+4));\r
158             }\r
159         }\r
160         else if(!strcmp(command, "option")) { // USI option: extract data fields\r
161             char name[80], type[80], buf[1024], val[256], *q;\r
162             int min=0, max=1e9;\r
163             if(p = strstr(line+6, " type ")) sscanf(p+1, "type %s", type), *p = '\n';\r
164             if(p = strstr(line+6, " min "))  sscanf(p+1, "min %d", &min), *p = '\n';\r
165             if(p = strstr(line+6, " max "))  sscanf(p+1, "max %d", &max), *p = '\n';\r
166             if(p = strstr(line+6, " default "))  sscanf(p+1, "default %[^\n]*", val), *p = '\n';\r
167             if(p = strstr(line+6, " name ")) sscanf(p+1, "name %[^\n]*", name);\r
168             if(!strcmp(name, "Hash") || !strcmp(name, "USI_Hash")) {\r
169                 memory = oldMem = atoi(val); hasHash = 1; \r
170                 strcpy(hashOpt, name);\r
171                 continue;\r
172             }\r
173             // pass on engine-defined option as WB option feature\r
174             if(!strcmp(type, "filename")) type[4] = 0;\r
175             sprintf(buf, "feature option=\"%s -%s", name, type); q = buf + strlen(buf);\r
176             if(     !strcmp(type, "file")\r
177                  || !strcmp(type, "string")) sprintf(q, " %s\"\n", val);\r
178             else if(!strcmp(type, "spin"))   sprintf(q, " %d %d %d\"\n", atoi(val), min, max);\r
179             else if(!strcmp(type, "check"))  sprintf(q, " %d\"\n", strcmp(val, "true") ? 0 : 1), strcat(checkOptions, name);\r
180             else if(!strcmp(type, "button")) sprintf(q, "\"\n");\r
181             else if(!strcmp(type, "combo")) {\r
182                 if(p = strstr(line+6, " default "))  sscanf(p+1, "default %s", type); // current setting\r
183                 min = 0; p = line+6;\r
184                 while(p = strstr(p, " var ")) {\r
185                     sscanf(p += 5, "%s", val); // next choice\r
186                     sprintf(buf + strlen(buf), "%s%s%s", min++ ? " /// " : " ", strcmp(type, val) ? "" : "*", val);\r
187                 }\r
188                 strcat(q, "\"\n");\r
189             }\r
190             else buf[0] = 0; // ignore unrecognized option types\r
191             if(buf[0]) printf("%s", buf);\r
192         }\r
193         else if(!strcmp(command, "id")) {\r
194             char name[256];\r
195             if(sscanf(line, "id name %s", name) == 1) printf("feature myname=\"%s (U%cI2WB)\"\n", name, sc-32);\r
196         }\r
197         else if(!strcmp(command, "readyok")) pause = 0; // resume processing of GUI commands\r
198         else if(sscanf(command, "u%ciok", &c)==1 && c==sc)   printf("feature smp=1 memory=%d done=1\n", hasHash); // done with options\r
199     }\r
200 }\r
201 \r
202 void\r
203 GUI2Engine()\r
204 {\r
205     char line[256], command[256], *p, *q;\r
206 \r
207     while(1) {\r
208         int i, x;\r
209 \r
210         if(computer == stm || computer == ANALYZE) {\r
211 printf("# start search\n");\r
212             LoadPos(moveNr); // load position\r
213             // and set engine thinking (note USI swaps colors!)\r
214             startTime = GetTickCount();\r
215             if(computer == ANALYZE) fprintf(toE, "\ngo infinite\n"), printf("\ngo infinite\n");\r
216             else StartSearch("");\r
217         }\r
218       nomove:\r
219         fflush(toE); fflush(stdout);\r
220         i = 0; while((x = getchar()) != EOF && (line[i] = x) != '\n') i++;\r
221         line[++i] = 0; if(x == EOF) { printf("# EOF\n"); exit(-1); }
222         sscanf(line, "%s", command);\r
223         while(pause) SLEEP(); // wait for readyok\r
224         if(!strcmp(command, "new")) {\r
225             computer = BLACK; moveNr = 0; depth = -1;\r
226             stm = WHITE; strcpy(iniPos, "position startpos");\r
227             if(memory != oldMem && hasHash) fprintf(toE, "setoption name %s value %d\n", hashOpt, memory);\r
228             oldMem = memory;\r
229             // we can set other options here\r
230             pause = 1; // wait for option settings to take effect\r
231             fprintf(toE, "isready\n");\r
232             fprintf(toE, "u%cinewgame\n", sc);\r
233         }\r
234         else if(!strcmp(command, "usermove")) {\r
235             if(sc == 's') {\r
236               // convert input move to USI format\r
237               if(line[10] == '@') { // drop\r
238                 line[10] = '*';\r
239               } else {\r
240                 line[9]  = 'a'+'0'+size - line[9];\r
241                 line[10] = 'a'+'0'+size - line[10];\r
242               }\r
243               line[11] = 'a'+'0'+size - line[11];\r
244               line[12] = 'a'+'0'+size - line[12];\r
245               if(line[13] == '=') line[13] = 0; // no '=' in USI format!\r
246               else if(line[13] != '\n') line[13] = '+'; // cater to WB 4.4 bug :-(\r
247             }\r
248             sscanf(line, "usermove %s", command); // strips off linefeed\r
249             stm = WHITE+BLACK - stm;\r
250             // when pondering we either continue the ponder search as normal search, or abort it\r
251             if(pondering || computer == ANALYZE) {\r
252                 if(pondering && !strcmp(command, move[moveNr])) { // ponder hit\r
253                     pondering = 0; moveNr++; startTime = GetTickCount(); // clock starts running now\r
254                     fprintf(toE, "ponderhit\n"); printf("# ponderhit\n");\r
255                     goto nomove;\r
256                 }\r
257                 StopPonder(1);\r
258             }\r
259             sscanf(line, "usermove %s", move[moveNr++]); // possibly overwrites ponder move\r
260         }\r
261         else if(!strcmp(command, "level")) {\r
262             int sec = 0;\r
263             sscanf(line, "level %d %d:%d %d", &mps, &tc, &sec, &inc) == 4 ||\r
264             sscanf(line, "level %d %d %d", &mps, &tc, &inc);\r
265             tc = (60*tc + sec)*1000; inc *= 1000; sTime = 0;\r
266         }\r
267         else if(!strcmp(command, "option")) {\r
268             char name[80], *p;\r
269             if(p = strchr(line, '=')) {\r
270                 *p++ = 0;\r
271                 if(strstr(checkOptions, line+7)) sprintf(p, "%s\n", atoi(p) ? "true" : "false");\r
272                 fprintf(toE, "setoption name %s value %s", line+7, p), printf("# setoption name %s value %s", line+7, p);\r
273             } else fprintf(toE, "setoption name %s\n", line+7), printf("# setoption name %s\n", line+7);\r
274         }\r
275         else if(!strcmp(command, "protover")) {\r
276             printf("feature variants=\"%s\" setboard=1 usermove=1 debug=1 reuse=0 done=0\n", sc=='s' ? "shogi,5x5+5_shogi" : VARIANTS);\r
277             fprintf(toE, "u%ci\n", sc); // this prompts UCI engine for options\r
278         }\r
279         else if(!strcmp(command, "setboard")) {\r
280                 if(strstr(line+9, " b ")) stm = BLACK;\r
281                 if(sc == 's' && (p = strchr(line+9, '['))) { char c;\r
282                     *p++ = ' '; q = strchr(p, ']'); c = 'w' + 'b' - q[2]; strcpy(q+2, " 1\n"); while(*--q != ' ') q[2] = *q; *p = c; p[1] = ' '; \r
283                 }\r
284                 sprintf(iniPos, "%s%sfen %s", iniPos[0]=='p' ? "position " : "", sc=='s' ? "s" : "", line+9);\r
285                 iniPos[strlen(iniPos)-1] = 0;\r
286         }\r
287         else if(!strcmp(command, "variant")) {\r
288                 if(!strcmp(line+8, "shogi\n")) size = 9, strcpy(iniPos, "position startpos");\r
289                 if(!strcmp(line+8, "5x5+5_shogi\n")) size = 5, strcpy(iniPos, "position startpos");\r
290                 if(!strcmp(line+8, "xiangqi\n")) strcpy(iniPos, "fen rnbakabnr/9/1c5c1/p1p1p1p1p/9/9/P1P1P1P1P/1C5C1/9/RNBAKABNR r");\r
291         }\r
292         else if(!strcmp(command, "undo") && (i=1) || !strcmp(command, "remove") && (i=2)) {\r
293             if(pondering || computer == ANALYZE) StopPonder(1);\r
294             moveNr = moveNr > i ? moveNr - i : 0;\r
295         }\r
296         else if(!strcmp(command, ".")) {\r
297             printf("stat01: %d %d %d %d 100 %s\n", statTime, statNodes, statDepth, 100-currNr, currMove);\r
298             goto nomove;\r
299         }\r
300         else if(!strcmp(command, "xboard")) ;\r
301         else if(!strcmp(command, "analyze"))computer = ANALYZE;\r
302         else if(!strcmp(command, "exit"))   computer = NONE, StopPonder(1);\r
303         else if(!strcmp(command, "force"))  computer = NONE, StopPonder(pondering);\r
304         else if(!strcmp(command, "go"))     computer = stm;\r
305         else if(!strcmp(command, "time"))   sscanf(line+4, "%d", &myTime),  myTime  *= 10;\r
306         else if(!strcmp(command, "otim"))   sscanf(line+4, "%d", &hisTime), hisTime *= 10;\r
307         else if(!strcmp(command, "post"))   post = 1;\r
308         else if(!strcmp(command, "nopost")) post = 0;\r
309         else if(!strcmp(command, "easy"))   ponder = 0;\r
310         else if(!strcmp(command, "hard"))   ponder = 1;\r
311         else if(!strcmp(command, "memory")) sscanf(line, "memory %d", &memory);\r
312         else if(!strcmp(command, "cores"))  sscanf(line, "cores %d", &cores);\r
313         else if(!strcmp(command, "sd"))     sscanf(line, "sd %d", &depth);\r
314         else if(!strcmp(command, "st"))     sscanf(line, "st %d", &sTime), sTime *= 1000, inc = 0;\r
315         else if(!strcmp(command, "quit"))   fprintf(toE, "quit\n"), fflush(toE), exit(0);\r
316     }\r
317 }\r
318 \r
319 int\r
320 StartEngine(char *cmdLine, char *dir)\r
321 {
322 #ifdef WIN32\r
323   HANDLE hChildStdinRd, hChildStdinWr,\r
324     hChildStdoutRd, hChildStdoutWr;\r
325   SECURITY_ATTRIBUTES saAttr;\r
326   BOOL fSuccess;\r
327   PROCESS_INFORMATION piProcInfo;\r
328   STARTUPINFO siStartInfo;\r
329   DWORD err;\r
330 \r
331   /* Set the bInheritHandle flag so pipe handles are inherited. */\r
332   saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);\r
333   saAttr.bInheritHandle = TRUE;\r
334   saAttr.lpSecurityDescriptor = NULL;\r
335 \r
336   /* Create a pipe for the child's STDOUT. */\r
337   if (! CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0)) return GetLastError();\r
338 \r
339   /* Create a pipe for the child's STDIN. */\r
340   if (! CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0)) return GetLastError();\r
341 \r
342   SetCurrentDirectory(dir); // go to engine directory\r
343 \r
344   /* Now create the child process. */\r
345   siStartInfo.cb = sizeof(STARTUPINFO);\r
346   siStartInfo.lpReserved = NULL;\r
347   siStartInfo.lpDesktop = NULL;\r
348   siStartInfo.lpTitle = NULL;\r
349   siStartInfo.dwFlags = STARTF_USESTDHANDLES;\r
350   siStartInfo.cbReserved2 = 0;\r
351   siStartInfo.lpReserved2 = NULL;\r
352   siStartInfo.hStdInput = hChildStdinRd;\r
353   siStartInfo.hStdOutput = hChildStdoutWr;\r
354   siStartInfo.hStdError = hChildStdoutWr;\r
355 \r
356   fSuccess = CreateProcess(NULL,\r
357                            cmdLine,        /* command line */\r
358                            NULL,           /* process security attributes */\r
359                            NULL,           /* primary thread security attrs */\r
360                            TRUE,           /* handles are inherited */\r
361                            DETACHED_PROCESS|CREATE_NEW_PROCESS_GROUP,\r
362                            NULL,           /* use parent's environment */\r
363                            NULL,\r
364                            &siStartInfo, /* STARTUPINFO pointer */\r
365                            &piProcInfo); /* receives PROCESS_INFORMATION */\r
366 \r
367   if (! fSuccess) return GetLastError();\r
368 \r
369 //  if (0) { // in the future we could trigger this by an argument\r
370 //    SetPriorityClass(piProcInfo.hProcess, GetWin32Priority(appData.niceEngines));\r
371 //  }\r
372 \r
373   /* Close the handles we don't need in the parent */\r
374   CloseHandle(piProcInfo.hThread);\r
375   CloseHandle(hChildStdinRd);\r
376   CloseHandle(hChildStdoutWr);\r
377 \r
378   process = piProcInfo.hProcess;\r
379   pid = piProcInfo.dwProcessId;\r
380   fromE = (FILE*) _fdopen( _open_osfhandle((long)hChildStdoutRd, _O_TEXT|_O_RDONLY), "r");\r
381   toE   = (FILE*) _fdopen( _open_osfhandle((long)hChildStdinWr, _O_WRONLY), "w");\r
382 #else
383     char *argv[10], *p, buf[200];
384     int i, toEngine[2], fromEngine[2];
385
386     if (dir && dir[0] && chdir(dir)) { perror(dir); exit(1); }
387     pipe(toEngine); pipe(fromEngine); // create two pipes
388
389     if ((pid = fork()) == 0) { // Child
390         dup2(toEngine[0], 0);   close(toEngine[0]);   close(toEngine[1]);   // stdin from toE pipe
391         dup2(fromEngine[1], 1); close(fromEngine[0]); close(fromEngine[1]); // stdout into fromE pipe
392         dup2(1, fileno(stderr)); // stderr into frome pipe
393
394         strcpy(buf, cmdLine); p = buf;
395         for (i=0;;) { argv[i++] = p; p = strchr(p, ' '); if (p == NULL) break; *p++ = 0; }
396         argv[i] = NULL;
397         execvp(argv[0], argv); // startup engine
398         
399         perror(argv[0]); exit(1); // could not start engine; quit.
400     }
401     signal(SIGPIPE, SIG_IGN);
402     close(toEngine[0]); close(fromEngine[1]); // close engine ends of pipes in adapter
403     
404     fromE = (FILE*) fdopen(fromEngine[0], "r"); // make into high-level I/O
405     toE   = (FILE*) fdopen(toEngine[1], "w");
406 #endif\r
407   return NO_ERROR;\r
408 }\r
409 \r
410 main(int argc, char **argv)\r
411 {\r
412         char *dir = NULL, *p, *q; int e;\r
413 \r
414         if(argc == 2 && !strcmp(argv[1], "-v")) { printf("UCI2WB " VERSION " by H.G.Muller\n"); exit(0); }\r
415         if(argc > 1 && argv[1][0] == '-') { sc = argv[1][1]; argc--; argv++; }\r
416         if(argc < 2) { printf("usage is: U%cI2WB [-s] <engine.exe> [<engine directory>]\n", sc-32); exit(-1); }\r
417         if(argc > 2) dir = argv[2];\r
418         if(argc > 3) suffix = argv[3];\r
419 \r
420         // spawn engine proc\r
421         if(StartEngine(argv[1], dir) != NO_ERROR) { perror(argv[1]), exit(-1); }\r
422 \r
423         // create separate thread to handle engine->GUI traffic\r
424 #ifdef WIN32
425         CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) Engine2GUI, (LPVOID) NULL, 0, &thread_id);
426 #else
427         { pthread_t t; signal(SIGINT, SIG_IGN); pthread_create(&t, NULL, Engine2GUI, NULL); }
428 #endif\r
429 \r
430         // handle GUI->engine traffic in original thread\r
431         GUI2Engine();\r
432 }\r