Do not transform FEN when UCI_Variant option is supported
authorH.G.Muller <hgm@hgm-xboard.(none)>
Sat, 5 Nov 2016 12:54:10 +0000 (13:54 +0100)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Sat, 5 Nov 2016 12:54:10 +0000 (13:54 +0100)
For USI FENs have to be translated to SFEN by putting the holdings
after the side-to-move indicator. This was done for any FEN that specified
holdings (probably to accomodate the Seirawan Chess version of Komodo).
But in Crazyhouse for Stockfish this wrecks things. The announcement
of a UCI_Variant option now suppresses this transformation.

UCI2WB.c

index 21f5fa0..37f9de6 100644 (file)
--- a/UCI2WB.c
+++ b/UCI2WB.c
@@ -469,7 +469,7 @@ GUI2Engine()
        }\r
        else if(!strcmp(command, "setboard")) {\r
                stm = (strstr(line+9, " b ") ? BLACK : WHITE);\r
-                if(p = strchr(line+9, '[')) { char c;\r
+                if((p = strchr(line+9, '[')) && !varOpt) { char c;\r
                     *p++ = 0; q = strchr(p, ']'); *q = 0; r = q + 4; \r
                    if(sc == 's') q[2] = 'w' + 'b' - q[2], strcpy(r=q+3, " 1\n"); // Shogi: reverse color\r
                    else r = strchr(strchr(q+4, ' ') + 1, ' '); // skip to second space (after e.p. square)\r