[Home]

MXP design notes

Author: Nick Gammon http://www.gammon.com.au/support/ .

This document is in the public domain. It is not copyright.


Introduction

These notes are intended to complement the MXP specifications at http://www.zuggsoft.com/zmud/mxp.htm.

Comments or questions about this document should be forwarded to http://www.gammon.com.au/support/ or zugg@zuggsoft.com .

The purpose of this document is to help MUD client developers implement MXP in a standard way, so that using an MXP-enabled MUD will result in the same gaming experience, regardless of client.


What is MXP?

MXP stands for Mud Extension Protocol.

It is a method for MUD servers to specify formatting and content information which goes beyond the scope of what is available with ANSI escape codes. For instance, using MXP a server can designate a line as a room description, exit, hyperlink, and so on.

For example:
 
This word is <b>bold</b>.
<RoomDesc>This is a room description</RoomDesc>

Basic parsing rules

Escape sequences

  1. MXP is a stream protocol, and is designed to be interpreted on-the-fly without waiting for newlines or other record boundaries.
  2. MXP tags are only parsed within the escape sequences:
    • \e[0z -- open line
    • \e[1z -- secure line
    • e[10z through to \e[99z -- special sequences, described later
    where \e represents the <ESC> character.
  3. Note - strictly speaking, you could include leading zeroes, eg.
    • \e[0000z
  4. Outside those escape sequences any MXP tags are displayed "as is". eg. <shrug>

Newlines

Where reference is made to a newline (in C, the \n character) it is intended to encompass the various line endings that a MUD server might send:

\n Unix
\n\r Should not appear
\r\n DOS/Windows
\r Macintosh

In each case this document assumes that whatever line ending occurs, it is pre-processed by the client into a straight "newline" character (\n).


Elements and entities

  1. An element is a sequence inside the "<" and ">" characters. Eg. <b> indicating bold text.
  2. An entity is a substitution string, inside the "&" and ";" characters. eg. &amp; indicating an ampersand.

Parsing of elements and entities

  1. Collection of elements - when the character "<" is encountered, the client enters a "collection" phase which terminates when the corresponding ">" character is parsed, however excluding any ">" characters found inside a valid quoted string.

    eg.

    <!ELEMENT red '<color red>'>

  2. Collection of entities - when the character "&" is encountered, the client enters a "collection" phase which terminates when the corresponding ";" character is parsed. eg. &lt;
  3. Abnormal termination of collection - collection of an element or entity is terminated upon receipt of:
    • newline \n
    • escape \e
    • link loss (loss of connection to server)
  4. If an element is abnormally terminated, eg. "<FONT \n" then it is discarded, possibly with a debug message being displayed somewhere.
  5. Note - the client may offer the option to display abnormally terminated elements, although this is not recommended.
  6. If an entity is abnormally terminated, eg. "&lt\n" then it is displayed "as is".

Comments

  1. Comments may be placed inside the sequence:

    <!-- this is a comment -->

  2. Comments commence with "<!--" and are terminated by "-->".
  3. Special characters such as "&" and ">" are permitted inside comments, and have no special significance.
  4. The character sequence "-->" is explicitly disallowed inside a comment, as it is the comment terminator.
  5. As described in the previous section, comments are also (abnormally) terminated upon receipt of a \n or \e character.

Elements

Syntax of elements

  1. Elements consist of:
      <keyword [args]>
      </keyword>
      <!keyword [args]>
    
      eg. <font color=red>This is in red.</font>
          <b>This is in bold.</b>
          <!ELEMENT boldred '<font color=red><b>'>
    
  2. Keywords must start with a letter (A-Z) and then consist of letters, numbers or the underscore character.
  3. Element names are not case-sensitive.
  4. Keywords are separated from the (optional) arguments by one or more spaces. Arguments are separated from each other by one or more spaces. There does not need to be a space preceding the final ">".
  5. Keywords may not be quoted. eg. <'BR'> is invalid.
  6. Argument names may not be quoted, eg. <FONT 'COLOR'=red> is invalid.
  7. Closing elements (eg. </B>) do not take arguments. eg. </FONT COLOR=red> is invalid.

Treatment of malformed elements

  1. Elements not conforming to the syntax rules above are discarded, possibly with a debug message.
  2. Note - the client may offer the option to display abnormally formed elements, although this is not recommended.
  3. In any case, malformed elements are not evaluated or expanded.

Quoting

  1. Arguments (but not argument names) may be quoted, and must be quoted if they contain imbedded spaces or the ">" or "=" symbols. eg. <SEND href='buy fruit'>
  2. Either single or double quotes may be used. Whichever quote starts the quoted string must terminate the quoted string. The other quote may be used inside the string.
  3. Note - possibly allow doubled quotes to represent a single quote? eg. <SEND 'goto Nick''s house'>

Entities

Syntax of entities

  1. Entities consist of:
     &keyword;
    
    eg. &amp;
    
  2. Keywords must start with a letter (A-Z) and then consist of letters, numbers or the underscore character. No imbedded spaces or other characters are permitted.
  3. Entity names are case-sensitive.

Treatment of malformed entities

  1. Entities not conforming to the syntax rules above are displayed "as is". eg. a line containing "John & Judy" would display correctly.

Arguments

  1. Arguments may be by keyword or positional. If by keyword the syntax is:
       argument_name=argument_value
    
  2. If no argument name is provided then the argument is assumed to be the next argument by position from the previous argument, or if no previous argument the first argument. This means, that following a keyword argument, the next argument that does not have a keyword is now considered to be the argument in sequence after the keyword. Thus you could use a single keyword argument to "jump" to the middle of an argument list.

Open, secure, locked sequences

Escape sequences used to change mode

By using escape sequences streams of output can be designated as open, secure or locked.

Sequence Type Meaning
\e[0z Open Only open commands (eg. <B>) will be interpreted.
\e[1z Secure All MXP tags are interpreted.
\e[2z Locked No MXP tags or entities will be interpreted.

Newline switches to open mode

Following a newline (\n) the output stream is considered open, until another escape sequence arrives which changes the mode.

Purpose of these modes

Open mode

This is intended for output from the MUD that players may be able to influence, eg. chat, say, tell, whisper, player descriptions, and so on. Tags in this category are limited to those that are "harmless" like setting text to bold, italic and so on.

Secure mode

This is for the server to send the full range of tags, such as room descriptions, exits, player hit points, and so on.

Locked mode

This is to allow the server to send out "verbatim" text, to save having to "escape" out characters like "<" and ">".


Modal and command elements

Elements (such as <B>) can either be modal or command.

Modal elements

Modal elements temporarily change the mode of the text being displayed until the closing element.

eg.

 
This is plain text. <B>This is bold text.</B> This is plain text.

Command elements

Command elements have an immediate effect. There is no corresponding closing tag.

eg.

 
<p>  This is a new paragraph.

Automatic closure of modal elements

To guard against room designers (or people chatting) inadvertently forgetting to close their modal elements the client will automatically close outstanding open tags as follows:

Open mode

All outstanding tags are closed at any of the following:

Secure mode

All outstanding tags are closed at:

Closure of tags out of sequence

It is possible, indeed likely, that closing tags will be received out of sequence.

eg.

 
<B>This is bold text. <I>This is bold italic text. </B></I>

The </I> should have been sent first. For simplicity of client implementation, the client should close all outstanding tags, up to and including the one requested. In the example above, the </B> would close both the outstanding <I> and the <B>.

Suggested implementation

To allow for nested font and colour changes, we suggest that clients "push" onto a temporary stack the tag name, and current text attributes (colour, bold, italic, font etc.).

Then when the closing tag is reached the outstanding tag is "popped" from the stack, with the saved text attributes being restored.

Also, in the case of tags like <SEND href=&text;> this would be an appropriate time to send the collected text.


Entities

Entities, such as "&amp;", provide simple text substitution. For example, "&amp;" is replaced by the "&" character.

You can define your own entities like this:

 
<!ENTITY version "version 5.5" >

Nesting of entities

You cannot nest entities, nor can you place elements inside entities. The text defined as the entity replacement text is simply displayed "as is".


Elements

Elements, such as "<B>", are one of:

Atomic elements

These are predefined elements that have a well-known meaning to client programs, such as <B> for bold, <COLOR> for colour changes, and so on.

These cannot be defined by the server, because to add new atomic elements requires changes to the client program.

User-defined elements

These are defined by the server by using the syntax:

<!ELEMENT element_name definition [ATT=attribute_list] [TAG=tag] [FLAG=flag] [OPEN] [DELETE] [EMPTY]>

Effectively these act as a 'macro expansion' much as a #define does in C. It lets server implementors combine elements, to simplify various situations.

eg.

<!ELEMENT bolditalic '<B><I>'>
This is plain text <bolditalic> this is bold italic </bolditalic> this is plain again.

Processing of user-defined elements

  1. The 'definition' referred to above should consist of atomic elements, which the client can the build into a list.
  2. The elements in the definition list should be simple atomic elements, not closing elements or definition elements.
    • <!ELEMENT bold '<B>'> is OK
    • <!ELEMENT notbold "</B>"> is not OK
    • <!ELEMENT defineit "<!ELEMENT italic '<I>'>"> is not OK
  3. When the macro element is encountered in the text stream, the client expands it into each atomic element, in sequence.

    eg. <!ELEMENT bolditalic '<B><I>'>

    <bolditalic> now expands to <B><I>

  4. When the corresponding element is closed, either explicity or implicitly, then the client expands it into the corresponding closing elements, in reverse sequence.

    eg. <!ELEMENT bolditalic '<B><I>'>

    </bolditalic> now expands to </I></B>

Arguments to elements

Macro expansion elements can contain an attribute list, which effectively becomes "arguments" to the expanded elements.

eg.

 
<!ELEMENT colorbold '<COLOR &col;><B>' ATT='col=red'>

<colorbold>This text is in bold red</colortext>
<colorbold col=blue>This text is in bold blue</colortext>
<colorbold blue>This text is in bold blue</colortext>

Processing of arguments

We suggest that for each macro-expansion element the client stores:

  1. name of element, eg. <colorbold>
  2. OPEN/SECURE flag
  3. definition list, eg.
    • <COLOR &col;>
    • <B>
  4. attribute list, consisting of:
    • name of attribute
    • default value (the empty string, if not specified)

      eg. COL=red

Then when the element is encountered in the text stream:

  1. A copy is made of the macro, so that initially the attributes take their default values
  2. Process any supplied attributes, by name or position
  3. Substitute any arguments with the supplied value (eg. &col; might become 'red')
  4. Walk the definition list, processing each atomic item as applicable

Processing the closing tag

The closing tag (eg. </colorbold>) for an element will cause the element to be searched for in the 'outstanding elements' list, and if found, removed. Also at this time:

In the case of macro-expansion elements, the definition list will be walked in reverse order, and each definition in it will be closed. eg. <B> will be processed as </B>.

Unknown elements

An element that is neither recognised as an atomic element, nor a macro, is silently discarded, with an optional debug message.

Note - the client may offer the option to display unknown elements, although this is not recommended, as it makes using older clients with MUDs that use newer tags display irritating unknown tags.


[Back] [Home]
Written by Nick Gammon - 5K

Comments to http://www.gammon.com.au/support/

[Best viewed with any browser - 2K]    [RSACi logo - 2K]    [HostPro logo - 2K]

Page updated on Sunday, 13th January 2001