X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=gnushogi%2Fcommondsp.c;h=8fc4b32b7639b37a64f8fc0ac07f7ec34e7fe8de;hb=84a046a1ad4157428b59831a32892b7978290c5f;hp=7361e76bf8061bfbcdcaf526bac851f7ce8bf604;hpb=0b0fc4c9c805e95d883196b947217e23efb443c5;p=gnushogi.git diff --git a/gnushogi/commondsp.c b/gnushogi/commondsp.c index 7361e76..8fc4b32 100644 --- a/gnushogi/commondsp.c +++ b/gnushogi/commondsp.c @@ -1615,9 +1615,15 @@ InputCommand(char *command) } else if (strcmp(s, "post") == 0) { - flag.post = !flag.post; + flag.post = (xboard ? 1 : !flag.post); } - else if (strcmp(s, "alg") == 0) + else if (strcmp(s, "nopost") == 0) + { + flag.post = 0; + } + else if (strcmp(s, "alg") == 0 || + strcmp(s, "accepted") == 0 || strcmp(s, "rejected") == 0 || + strcmp(s, "variant") == 0 || strcmp(s, "computer") == 0) { /* noop */ ; } @@ -1626,6 +1632,16 @@ InputCommand(char *command) { flag.quit = true; } + else if (strcmp(s, "protover") == 0) + { + printf("feature myname=\"GNU %sShogi %s\" variants=\"%sshogi\" debug=1 setboard=0 done=1\n", +#ifdef MINISHOGI + "mini", PACKAGE_VERSION, "5x5+5_" +#else + "", PACKAGE_VERSION, "" +#endif + ); + } else if ((strcmp(s, "set") == 0) || (strcmp(s, "edit") == 0)) { @@ -1713,7 +1729,8 @@ InputCommand(char *command) { SetMachineTime(sx + strlen("time")); } - else if (strcmp(s, "otime") == 0) + else if (strcmp(s, "otime") == 0 || + (xboard && strcmp(s, "otim")) == 0) { SetOppTime(sx + strlen("otime")); }