X-Git-Url: http://winboard.nl/cgi-bin?p=uci2wb.git;a=blobdiff_plain;f=UCI2WB.c;h=2370615efc58cbe28ac88ae8bb0df9e356918507;hp=9b197bbce5f1e4168c254cbf43b4292e271cc2ae;hb=aee345a6b5d8582e826af026fad391d477db7272;hpb=2edd3b96b6fb70e4186e342e2c7249effbe3a3f2 diff --git a/UCI2WB.c b/UCI2WB.c index 9b197bb..2370615 100644 --- a/UCI2WB.c +++ b/UCI2WB.c @@ -276,8 +276,12 @@ Engine2GUI() } else if(!strcmp(command, "info")) { int d=0, s=0, t=(GetTickCount() - startTime)/10, n=1; - char *pv; + char *pv, varName[80]; if(sscanf(line+5, "string times @ %c", &dummy) == 1) { printf("# %s", line+12); continue; } + if(sscanf(line+5, "string variant %s", varName) == 1) { + if(strcmp(varName,"chess") && (p = strstr(line+18, " startpos "))) printf("setup (-) 8x8+0_fairy %s", p+10); + continue; + } if(collect && (pv = strstr(line+5, "currmove "))) { if(p = strstr(line+5, "currmovenumber ")) { n = atoi(p+15); @@ -481,7 +485,10 @@ GUI2Engine() iniPos[strlen(iniPos)-1] = sm = 0; collect = (computer == ANALYZE); } else if(!strcmp(command, "variant")) { - if(varOpt) fprintf(toE, "setoption name UCI_Variant value %sucinewgame\n", strcmp(line+8, "3check\n") ? line+8 : "threecheck\n"); + if(varOpt) { + fprintf(toE, "setoption name UCI_Variant value %sucinewgame\nisready\n", strcmp(line+8, "3check\n") ? line+8 : "threecheck\n"); + fflush(toE); Sync(PAUSE); + } if(!strcmp(line+8, "shogi\n")) size = 9, strcpy(iniPos, "position startpos"); if(!strcmp(line+8, "5x5+5_shogi\n")) size = 5, strcpy(iniPos, "position startpos"); if(!strcmp(line+8, "xiangqi\n")) strcpy(iniPos, "fen rnbakabnr/9/1c5c1/p1p1p1p1p/9/9/P1P1P1P1P/1C5C1/9/RNBAKABNR r");