Parse 'difficult' commands in separate routine
authorH.G.Muller <hgm@hgm-xboard.(none)>
Fri, 7 Dec 2018 21:35:01 +0000 (22:35 +0100)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Fri, 7 Dec 2018 21:35:01 +0000 (22:35 +0100)
The parsing of (most) commands that can only be executed when not searching
is now put in a separate routine DoCommand(). This in preparation for
having the engine thread do this.

UCI2WB.c

index e87504a..4cbf5a8 100644 (file)
--- a/UCI2WB.c
+++ b/UCI2WB.c
@@ -436,10 +436,13 @@ Move4Engine(char *m)
     }\r
 }\r
 \r
+int DoCommand (char *line);\r
+char mySide;\r
+\r
 void\r
 GUI2Engine()\r
 {\r
-    char line[256], command[256], *p, *q, *r, mySide, type[99];\r
+    char line[256], command[256], *p;\r
 \r
     while(1) {\r
        int i, difficult, think=0;\r
@@ -529,6 +532,18 @@ GUI2Engine()
               !strcmp(command, "force") || !strcmp(command, "result")) { EPRINT((f, "# stop\n")); fflush(toE); }\r
            Sync(PAUSE); Release(); // block processing of difficult commands during thinking; send backlog left because of race\r
        }\r
+       if(DoCommand(line)) goto nomove;\r
+    }\r
+}\r
+\r
+int\r
+DoCommand (char *line)\r
+{\r
+    char command[256], *p, *q, *r, type[99];\r
+    int i;\r
+\r
+    sscanf(line, "%s", command);\r
+\r
        if(!strcmp(command, "new")) {\r
            computer = BLACK; moveNr = 0; depth = -1; move[0][0] = 0;\r
            stm = WHITE; strcpy(iniPos, "position startpos"); frc &= ~1;\r
@@ -585,13 +600,13 @@ GUI2Engine()
        }\r
        else if(!strcmp(command, ".")) {\r
            printf("stat01: %d %d %d %d 100 %s\n", statTime, statNodes, statDepth, 100-currNr, currMove);\r
-           goto nomove;\r
+           return 1;\r
        }\r
        else if(!strcmp(command+2, "clude") && collect > 2) { // include or exclude\r
            int all = !strcmp(line+8, "all"), in = command[1] == 'n';\r
            inex = 1; line[strlen(line)-1] = sm = 0; // strip LF and clear sm flag\r
            for(i=1; i<nr; i++) { if(!strcmp(line+8, moveMap[i]) || all) on[i] = in; sm |= on[i]+1; } // sm: 2 = enabled, 1 = disabled\r
-           if(!(sm & 2)) goto nomove; // no moves enabled; continue current search\r
+           if(!(sm & 2)) return 1; // no moves enabled; continue current search\r
            if(computer == ANALYZE) StopPonder(1), searching = 0; // abort old analysis\r
        }\r
        else if(!strcmp(command, "xboard")) ;\r
@@ -616,7 +631,8 @@ GUI2Engine()
            computer = NONE;\r
        }\r
        else if(!strcmp(command, "quit"))   { EPRINT((f, "# quit\n")) fflush(toE), exit(atoi(line+4)); }\r
-    }\r
+\r
+    return 0;\r
 }\r
 \r
 int\r