This subsystem implements the communication with a client (for example, a graphical user interface) using the text-based XBoard protocol (→ Decision V.9.1). It reads commands from standard input, checks them against the rules of the game and converts them for the Engine. Responses from the Engine (especially the moves) will be accepted by the subsystem as events, formatted according to the protocol and returned via standard output. Thus the subsystem is driving the whole game.
The subsystem provides its functionality via the Java class org.dokchess.textui.xboard.XBoard.
Fig.: Classes XBoard und Main
Method | Short description |
---|---|
setInput | Set the protocol input with a dependency injection (→ Concept V.8.1). Typically, the standard input (stdin), automated tests use a different source. |
setOutput | Set the protocol output. Typically, the standard output (stdout), automated tests may use a different target. |
setChessRules | Sets an implementation of the game rules, → Subsystem Rules (Black Box) |
setEngine | Sets an implementation of the engine, → Subsystem Engine (Black Box) |
play | Starts the actual communication (input / processing / output) in a infinite loop until the quit command. |
Table: Methods of class XBoard |
The implementation is located below the packages
org.dokchess.textui…
The implementation of the XBoard protocol is incomplete. Nevertheless it is sufficient for the requirements of DokChess. But in particular, the following features are not supported: