Dog Star Adventure

Dog Star Adventure

Cover of SoftSide May 1979
Developer(s) Lance Micklus
Publisher(s) SoftSide
Distributor(s) The Software Exchange
Platform(s) TRS-80, Commodore PET
Release date(s) 1979
Genre(s) Interactive fiction

Dog Star Adventure is a text adventure game written by Lance Micklus in TRS-80 BASIC and published as the cover article in the May 1979 issue of SoftSide magazine. It is historically notable as the first example of the source code to a text adventure being published,[1][2] and as a result, many later text adventures are based on its concepts.

The game takes place in the Star Wars universe, loosely following the plot of the movie during the action that takes place on the Death Star. Names of the various characters are changed to avoid copyright issues. The player has to gather a number of items to repair their ship, rescue princess Leya, and escape without being detected by the many Roche Soldiers.

The game was simultaneously released on cassette tape by SoftSide's publishing spin-off, The Software Exchange. A port to the Commodore PET was made by David Malmberg in 1980, with most of the names returned to their Star Wars versions. The original source was republished in The Captain 80 Book of BASIC Adventures in 1981,[3] and again in the June 1982 issue of Computer and Video Games.[4] It was also sold by Adventure International under the name Death Planet: The Dog Star Adventure.[5][6]

Gameplay

Dog Star is based on a classic two-word parser, with the user entering verb/noun phrases like TAKE CHEESEBURGER. A small number of commands could be shortened to a single word, like NORTH, or even shorter, N. The game is played by the player issuing commands to move about the game map and collect various items.[7]

The game begins with the player in control of a robot hiding in their spaceship. The ship is disabled and trapped within a hangar. The player needs to collect several items in order to win, including money, the enemy battle plans, and Princess Leia, the leader of the Freedom Fighters. These are scattered around the game map, some of them protected by various puzzles or traps.[7]

The game had a number of additions to the basic two-word model. Among these was a cheeseburger which had to be fed to a security robot. The cheeseburger cooled off over time, forcing the user to complete this task before that occurred, a concept Micklus refers to as a "time bomb". The game also included a storage depot filled with "all kinds of things", including many of the items needed to complete the game. The player had to find out what items to TAKE by carefully reading hints spread through the game. Finally, the game also included a feature from the classic Hunt the Wumpus: in certain locations the game would tell the user about nearby sounds, which the player had to use to avoid dangerous encounters.[8]

Basis for later games

The PET conversion changed most of the terminology back to Star Wars, and added this character graphics splash screen.

Micklus had written several commercial programs before Dog Star, mostly for the TRS-80.[9] Micklus credits the original Colossal Cave Adventure for inspiring him to write Dog Star. Adventure was written in FORTRAN on the PDP-10, a system with considerably more memory than early microcomputers. The work creating Dog Star was primarily an effort porting these basic concepts to BASIC while keeping within the small amount of available memory. The game itself is very small and simple as a result.[10]

Dog Star was written in the very limited TRS-80 Level I BASIC, so many of the techniques used in the game were easily adapted to other dialects of BASIC. The key concept is the way the game uses an array to describe the room layouts, with different numbers representing various objects or connections to other rooms. Since Model I BASIC had only a single array, storing all of the required data required some clever coding. In other BASICs with multiple arrays, this was much easier.[11]

The basic idea is that the map is drawn out on paper and each location on it, or "room", is assigned a number. That number is used to retrieve information about the room or the items within it. One or more arrays then hold the game state. For instance, a room in Dog Star allowed six possible exits, up, down and the four cardinal directions. Any given room might have one or more of these exits connecting to other rooms around it. This means there are 26 = 64 possible variations, which can be represented as a number between 0 (no exits) and 63 (all exits are available) using bit manipulation.[11]

So for a given room, say room 10, the game can store the exits in slot 10 in the EXIT array, the name of the room, "docking bay", in slot 10 in the NAME array, a longer description, "in the docking bay, the ship sits in the center", in slot 10 of the DESC array, and any items in that location in slot 10 of the ITEM array. If the user picks up an item it is removed from slot 10 of ITEM, and can be added to any other slot if the user drops that item in another location.[11]

These basic concepts were widely copied in the early microcomputer field, and can be found almost verbatim in many other adventures of the era, including Survival.[12]

References

Citations

  1. "Death Planet: The Dog Star Adventure (Other-Venture #5)". Ye Olde Infocomm Shoppe.
  2. "Dog Star Adventure". Interactive Fiction Database.
  3. Dog Star. The Captain 80 Book of BASIC Adventures. 1981. p. 43.
  4. "Dog Star Adventure". Computers and Video Games: 58–63. June 1982.
  5. "Death Planet: The Dog Star Adventure".
  6. Dog Star Adventure
  7. 1 2 Micklus 1979, p. 9.
  8. Scott 2006.
  9. Maher, Jimmy (28 June 2011). "Dog Star Adventure". The Digital Antiquarian.
  10. Micklus 1979, p. 10.
  11. 1 2 3 Micklus 1979, p. 12.
  12. Rush 1982.

Bibliography

External links

This article is issued from Wikipedia - version of the 9/28/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.