Implement extended UCI info string variant option
authorH.G.Muller <hgm@hgm-xboard.(none)>
Thu, 4 Oct 2018 09:06:52 +0000 (11:06 +0200)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Thu, 4 Oct 2018 09:06:52 +0000 (11:06 +0200)
To allow UCI engines to also define variants with different board size
and parent variant, an extended version of the info-string-variant command
is recognized. This can also incluse 'files', 'ranks', 'pocket' and
'template' fields. The default values for these are 8, 8, 0 and "fairy",
so that we remain compatible with the old info-string-variant command when
the new fields are absent.

UCI2WB.c

index 4f7fb9d..9d568f7 100644 (file)
--- a/UCI2WB.c
+++ b/UCI2WB.c
@@ -302,7 +302,15 @@ Engine2GUI()
            char *pv, varName[80];\r
            if(sscanf(line+5, "string times @ %c", &dummy) == 1) { printf("# %s", line+12); continue; }\r
            if(sscanf(line+5, "string variant %s", varName) == 1) {\r
-               if(!strstr(STDVARS, varName) && (p = strstr(line+18, " startpos "))) printf("setup (-) 8x8+0_fairy %s", p+10);\r
+               if(!strstr(STDVARS, varName)) {\r
+                   int files = 8, ranks = 8, hand = 0; char parent[80];\r
+                   if(p = strstr(line+18, " files ")) sscanf(p+7, "%d", &files);\r
+                   if(p = strstr(line+18, " ranks ")) sscanf(p+7, "%d", &ranks);\r
+                   if(p = strstr(line+18, " pocket ")) sscanf(p+8, "%d", &hand);\r
+                   if(p = strstr(line+18, " template ")) sscanf(p+10, "%s", parent); else strcpy(parent, "fairy");\r
+                   if(p = strstr(line+18, " startpos "))\r
+                       printf("setup (-) %dx%d+%d_%s %s", files, ranks, hand, parent, p+10);\r
+               }\r
                continue;\r
            }\r
            if(collect && (pv = strstr(line+5, "currmove "))) {\r