Z-machine


The Z-machine is a virtual machine that was developed by Joel Berez and Marc Blank in 1979 and used by Infocom for its text adventure games. Infocom compiled game code to files containing Z-machine instructions and could therefore port its text adventures to a new platform simply by writing a Z-machine implementation for that platform. With the large number of incompatible home computer systems in use at the time, this was an important advantage over using native code or developing a compiler for each system.

History

The "Z" of Z-machine stands for Zork, Infocom's first adventure game. Z-code files usually have names ending in.z1,.z2,.z3,.z4,.z5,.z6,.z7, or.z8, where the number is the version number of the Z-machine on which the file is intended to be run, as given by the first byte of the story file.
This is a modern convention, however. Infocom itself used extensions of.dat and.zip, but the latter clashed with the widespread use of.zip for PKZIP-compatible archive files starting in the 1990s, after Activision closed Infocom. Infocom produced six versions of the Z-machine. Files using versions 1 and 2 are very rare. Only two version 1 files are known to have been released by Infocom and only two of version 2. Version 3 covers the majority of Infocom's released games. Later versions had more capabilities, culminating in some graphic support in version 6.
The compiler that Infocom used to produce its story files has never been released, although documentation of the language used still exists, and an open-source replacement has been written. After Mediagenic moved Infocom to California in 1989, Computer Gaming World stated that "ZIL... is functionally dead", and reported rumors of a "completely new parser that may never be used". In May 1993, Graham Nelson released the first version of his Inform compiler, which also generates Z-machine story files as its output, even though the Inform source language is quite different from ZIL.
Inform has become popular in the interactive fiction community. A large proportion of interactive fiction is in the form of Z-machine story files. Demand for the ability to create larger game files led Nelson to specify versions 7 and 8 of the Z-machine, though version 7 is rarely used. Because of the way addresses are handled, a version 3 story file can be up to 128K in length, a version 5 story can be up to 256K in length, and a version 8 story can be up to 512k in length. Though these sizes may seem small by today's computing standards, for text-only adventures, these are large enough for elaborate games.
During the 1990s, Nelson drew up a Z-Machine Standard based on detailed studies of the existing Infocom files.

Interpreters

for Z-code files are available on a wide variety of platforms. The Inform website lists links to freely available interpreters for 15 desktop operating systems, 10 mobile operating systems, and four interpreter platforms. According to Nelson, it is "possibly the most portable virtual machine ever created".
Popular interpreters include Nitfol and Frotz. Nitfol makes use of the Glk API, and supports versions 1 through 8 of the Z-machine, including the version 6 graphical Z-machine. Save files are stored in the standard Quetzal save format. Binary files are available for several different operating systems, including the classic Mac OS, Unix-like systems, DOS, and Windows.
Frotz was written in C by Stefan Jokisch in 1995 for DOS. Over time it was ported to other platforms, such as Unix-like systems, RISC OS, and iOS. Sound effects and graphics were supported to varying degrees. By 2002, development stalled and the program was picked up by David Griffith. The code base was split between virtual machine and user interface portions in such a way that the virtual machine became independent from any user interface. This allowed more variety in porting Frotz. One of the stranger ports is also one of the simplest: an instant messaging bot is wrapped around a version of Frotz with the minimum IO functionality creating a bot with which one can play most Z-machine games using an instant messaging client.
Another popular client for macOS and other Unix-like systems is Zoom. It supports the same Quetzal save-format, but the packaging of the file-structure is different.