X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=uci.c;h=5eeda2b5ebc83639d60a0fa1cbbf052b45abaa76;hb=5db8386400bc43a01bc82473e6d30bd3b1b11591;hp=0885ee01f2692e34f12abe968bf7935e036c63c8;hpb=f9dcbfebb320fd5f031d7b34139d3a93b3b217d6;p=xboard.git diff --git a/uci.c b/uci.c old mode 100644 new mode 100755 index 0885ee0..5eeda2b --- a/uci.c +++ b/uci.c @@ -24,6 +24,7 @@ */ #include #include +#include #if HAVE_MALLOC_H #include @@ -31,7 +32,7 @@ #include "common.h" #include "backend.h" - +Boolean GetArgValue(char *a); void InitEngineUCI( const char * iniDir, ChessProgramState * cps ) { // replace engine command line by adapter command with expanded meta-symbols @@ -44,13 +45,18 @@ void InitEngineUCI( const char * iniDir, ChessProgramState * cps ) while(*p) { if(*p == '\\') p++; else if(*p == '%') { // substitute marker - char argName[MSG_SIZ], *s = argName; + char argName[MSG_SIZ], buf[MSG_SIZ], *s = buf; if(*++p == '%') { // second %, expand as f or s in option name (e.g. %%cp -> fcp) *s++ = cps == &first ? 'f' : 's'; p++; } - while(*p != ' ' && *p) *s++ = *p++; // copy option name + while(*p >= '0' && *p) *s++ = *p++; // copy option name *s = NULLCHAR; + if(cps == &second) { // change options for first into those for second engine + if(strstr(buf, "first") == buf) sprintf(argName, "second%s", buf+5); else + if(buf[0] == 'f') sprintf(argName, "s%s", buf+1); else + strcpy(argName, buf); + } else strcpy(argName, buf); if(GetArgValue(argName)) { // look up value of option with this name s = argName; while(*s) *q++ = *s++;