line[13] = '=', line[14] = 0;\r
}\r
}\r
+ if(line[9] == 'e' && (line[14] == 'a' || line[14] == 'h')) // seirawan castling + gating at Rook\r
+ line[9] = line[14], line[11] = 'e'; // convert to RxK notation\r
printf("move %s\n", line+9); // send move to GUI\r
if(lastScore == 100001 && iniPos[0] != 'f') { printf("%s {mate}\n", stm == WHITE ? "1-0" : "0-1"); computer = NONE; }\r
stm = WHITE+BLACK - stm;\r
else if(line[13] != '\n') line[13] = '+'; // cater to WB 4.4 bug :-(\r
}\r
sscanf(line, "usermove %s", command); // strips off linefeed\r
+ if(command[4] && (command[1] == '1' || command[1] == '8')) { // seirawan gating\r
+ command[5] = command[0], command[6] = command[1], command[7] = '\0';\r
+ if(command[2] == 'e' && (command[0] == 'a' || command[0] == 'h'))\r
+ command[2] = (command[0]+command[2]+1)>>1, command[0] = 'e'; // gating at Rook\r
+ }\r
stm = WHITE+BLACK - stm;\r
// when pondering we either continue the ponder search as normal search, or abort it\r
if(pondering || computer == ANALYZE) {\r
}\r
StopPonder(1);\r
}\r
- sscanf(line, "usermove %s", move[moveNr++]); // possibly overwrites ponder move\r
+// sscanf(line, "usermove %s", move[moveNr++]); // possibly overwrites ponder move\r
+ strcpy(move[moveNr++], command);\r
}\r
else if(!strcmp(command, "level")) {\r
int sec = 0;\r