From 8ac03672ef496924adb437b66c75d70d9e2bcde3 Mon Sep 17 00:00:00 2001 From: Sam Moore Date: Tue, 19 Feb 2013 15:00:55 +0800 Subject: [PATCH] Fix gt/lt signs in agent_text.html --- web/agent_text.html | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/web/agent_text.html b/web/agent_text.html index 1bb5efc..6e2fe90 100644 --- a/web/agent_text.html +++ b/web/agent_text.html @@ -18,7 +18,7 @@

Overview

-

In the following, lines prefixed with "<< " indicate input to the agent, lines prefixed with ">> " indicate output.

+

In the following, lines prefixed with "<< " indicate input to the agent, lines prefixed with ">> " indicate output.

The end line character is a unix new line character '\n'. There is no carriage return.

A token prefixed with '$' is taken to be variable, whilst all other tokens are to be interpreted literally.

@@ -26,7 +26,7 @@

Game start

-

<< $colour

+

<< $colour

Where:

  1. $colour is either "white" or "black" and indicates the colour the agent will be playing as.
  2. @@ -37,9 +37,9 @@

    Request: Selection

    -

    << SELECTION?

    -

    >> $x $y

    -

    << $x $y $index $type +

    << SELECTION?

    +

    >> $x $y

    +

    >> $x $y $index $type

    Where:

      @@ -58,8 +58,8 @@

      Request: Movement

      -

      << MOVE?

      -

      >> $x $y

      +

      << MOVE?

      +

      >> $x $y

      If an agent selects a piece that cannot move, it will not receive this request before its next selection.

      @@ -83,7 +83,7 @@

      Update: Agent selects a piece

      -

      << $x $y $index $type

      +

      << $x $y $index $type

      Where:

        @@ -99,7 +99,7 @@

        Update: Agent moves a piece

        -

        << $x1 $y1 -> $x2 $y2

        +

        << $x1 $y1 -> $x2 $y2

        Where:

          @@ -109,12 +109,14 @@
        1. Qchess does not provide any indication as to whether the move captured a piece or not
        +

        Note: The token between the two pairs of co-ordinates is a minus sign followed by a greater than sign. It's supposed to look like an arrow, but in html it's a bit hard to see.

        +

        Game ends

        -

        << QUIT

        +

        << QUIT

        Where:

        @@ -132,7 +134,7 @@
      1. If no request was made, the agent can assume the "update" is due to the action of the opponent.

      -

      Page last updated 2013-02-18 by matches

      +

      Page last updated 2013-02-19 by matches

      The UCC Website

      UCC::Progcomp 2013

      -- 2.20.1