From f94b42028cf8932621521d971ae8e7e0c078634b Mon Sep 17 00:00:00 2001 From: Daniel Mehrmann Date: Mon, 20 Dec 2004 22:55:54 +0000 Subject: [PATCH 1/1] deleted new gui protocol string --- backend.c | 2 +- engine-intf.html | 32 -------------------------------- 2 files changed, 1 insertions(+), 33 deletions(-) diff --git a/backend.c b/backend.c index 99c9fd1..b8ab625 100644 --- a/backend.c +++ b/backend.c @@ -5007,7 +5007,7 @@ StartChessProgram(cps) cps->isr = AddInputSource(cps->pr, TRUE, ReceiveFromProgram, cps); if (cps->protocolVersion > 1) { - sprintf(buf, "xboard\ngui xboard %s\nprotover %d\n", VERSION, cps->protocolVersion); + sprintf(buf, "xboard\nprotover %d\n", VERSION, cps->protocolVersion); SendToProgram(buf, cps); } else { SendToProgram("xboard\n", cps); diff --git a/engine-intf.html b/engine-intf.html index 7228a2b..02166ea 100644 --- a/engine-intf.html +++ b/engine-intf.html @@ -418,38 +418,6 @@ user input, you must turn off the prompt and output a newline when the "xboard" command comes in.

-

gui GUI_NAME VERSION.SUBVERSION -
-This is a new feature. The GUI sending after the "xboard" command and before -"protover N" string the command "gui ." -to the engine. The GUI_NAME is a string. VERSION and SUBVERSION is one -character.
-This command will be send always. You don't need to answer because its only -a information for the engine. I recommend that the engine not response. -The idea behind this command is that the engine now know which special feature -support the named GUI.
-To make the GUI string clear the known GUIs will be predefined:
-
-gui arena = send by Arena
-gui chessassistant = send by Chess Assistant
-gui chessbase = send by ChessBase
-gui chessmaster = send by ChessMaster
-gui chesspartner = send by ChessPartner GUI
-gui wb2uci = send by wb2uci adapter
-gui xboard = send by Winboard/Xboard
-
-This list is not completely and will be extend in the future.
-
-Example:
-Winboard / Xboard send:
-xboard\n
-gui xboard 4.2\n
-protover 2\n
-
-

- - -

protover N
Beginning in protocol version 2 (in which N=2), this command will -- 1.7.0.4