TADS

From Wikipedia, the free encyclopedia

TADS is a programming system for creating interactive fiction games. The name is an acronym for "Text Adventure Development System".

Contents

[edit] History

The original TADS 1 was released by High Energy Software as shareware in the late 1980s, and was followed by TADS 2 not long after. In the early 1990s, TADS established itself as the number one development tool for interactive fiction, in place of simpler systems like AGT (Adventure Game Toolkit).

Graham Nelson's Inform has, since its release in 1993, slowly gained popularity and superseded TADS in the last half of the 1990s. Nevertheless, TADS 2 has been maintained and updated at regular intervals by its creator, Michael J. Roberts, even after it became freeware in July 1996. Multimedia TADS, introduced in 1998, allows games to display graphics, animation and play sounds, if the platform supports it.

Recently, TADS received a major overhaul with the release of TADS 3, which is a complete rewrite of the TADS engine, only retaining the platform-dependent code to ease porting. TADS 3 has many new features, such as efficient dynamic objects (with automatic garbage collection), structured exceptions, native UTF-8 strings, and many useful function classes.

The TADS 3 compiler and interpreter are stable and they have been ported to the Unix, Macintosh and DOS platforms. Several TADS 3 games have already appeared in the 2002, 2003, 2004, and 2005 IF Competitions.

[edit] TADS games

Games written in TADS are compiled to a platform-independent format that can be played on any computer for which a suitable virtual machine (VM) exists. Such virtual machines exist for most platforms, and in this respect, TADS closely follows the example of the original Infocom Z-machine, as well as modern languages such as Java and C#.

Whereas the TADS 1 and 2 VMs had to parse the commands entered by the player, before sending the results on to the game, TADS 3 employs a more general-purpose virtual machine, where the command-parsing is done by the game code itself, akin to Inform. The rationale for this is that it is easier to customize the parser.

[edit] The programming language

TADS 2 is based on C, with bits of Pascal.

A Hello world program isn't that simple to write in TADS 2, because TADS 2 requires a working world model to compile.

#include <adv.t>
#include <std.t>
 
replace commonInit: function
{
    "Hello World!\n";
    quit;
}
 
startroom: room; // We must define a startroom object.

Of course, the goal of TADS 2 is to make Interactive Fiction (and not Hello World programs) simple to implement.

Nevertheless, TADS 3 dispenses with the requirement of a working world model, and also abandons the Pascal elements of the language.

function main(args)
{
    "Hello World!";
}

[edit] See also

[edit] External links