SCUMM

Script Creation Utility for Maniac Mansion

Maniac Mansion (1987) on the Commodore 64, the game for which the SCUMM system was originally designed
Designed by Aric Wilmunder,
Chip Morningstar,
Ron Gilbert
Developer Lucasfilm Games,
LucasArts
First appeared 1987 (1987)
Last release
? / 1998 (1998)
Platform Cross-platform
OS Cross-platform

Script Creation Utility for Maniac Mansion (SCUMM) is a video game engine developed at Lucasfilm Games, later renamed LucasArts, to ease development on their first graphic adventure game Maniac Mansion (1987). It was subsequently used as the engine for later LucasArts adventure games.

It falls somewhere between a game engine and a programming language, allowing designers to create locations, items and dialogue sequences without writing code in the language in which the game source code ends up. This also allowed the game's script and data files to be cross-platform, i.e., re-used across various platforms. SCUMM is also a host for embedded game engines such as the Interactive MUsic Streaming Engine (iMUSE), the INteractive Streaming ANimation Engine (INSANE), CYST (in-game animation engine), FLEM (places and names object inside a room), and MMUCUS. SCUMM has been released on these platforms: 3DO, Amiga, Apple II, Atari ST, CDTV, Commodore 64, Fujitsu FM Towns & Marty, Apple Macintosh, Nintendo Entertainment System, DOS, Microsoft Windows, Sega CD (Mega-CD), and TurboGrafx-16/PC Engine.

History

The original version was coded by Ron Gilbert (with some initial help by Chip Morningstar aka. UnXman) in 1987,[1] with later versions enhanced by Aric Wilmunder (a.k.a., the SCUMM Lord) and various others. This is a token language that provided ground breaking coding techniques. Tokens like P.R.I.N.E. were the first to be utilized.

The nature of SCUMM emerged from the background of most of the early programmers at LucasArts, including Wilmunder, having been programmers for mainframe computers. At the time, personal computers (PC) did not have large enough abilities or speed to edit and compile programs, so often the LucasArts coders would write code as cleanly as possible on a mainframe system to remove all errors so that, while compiling on a PC would be slow, it would be less error-prone. This concept informed the idea of a scripting language that would be cross-platform.[2]

SCUMM was developed to be a tool that converted human-readable commands into byte-sized tokens that then would be read by an executable interpreter program that presented the game to the player. For example, the SCUMM command walk dr-fred to laboratory-door would be tokenized to a 4-byte command. They did not want to have specific details about a game hard-coded into the script, so the tokenizer would be able to recognize actors by their name from the script instead of by internal numbers. The only exception was to display a character's dialog in a different text color for Maniac Mansion in which they had to include the number, but this was subsequently revised by the time Zak McKracken was released.[2] The scripts included the ability to multitask, such as having background actors enact behavior while waiting for foreground actions to complete.[2] The combined tools enabled for rapid prototyping of a game. Scripters could work with preliminary character and background art drawn by the artists to hone their scripts while providing feedback to the artists.[2]

The SCUMM program was responsible for tokenizing the scripts and gathering all other assets (such as art and sound) as a package. The reusable interpreter was called SPUTM, the SCUMM Presentation Utility (TM) which was renamed on shipment of the game to the name of the game's executable. SPUTM would interpret the scripts, load assets from disc, and handle the other user interactions with the game.[2] SPUTM was not actually trademarked, but according to Wilmunder, they wanted "to name it after another bodily fluid".[2] SCUMM was subsequently reused in many later LucasArts adventure games being both updated and rewritten several times. According to Wilmunder, the version of SCUMM for Maniac Mansion had about 80% of the commands that would end up being used in the later versions of the engine, with most key commands requiring no modification.[2] Other tools and engines were developed alongside SCUMM to aid in development, and named for other body fluids.[2] SPIT was used to manage text fonts on different parts of the screen. FLEM was used to define a specific room, track objects within it, and specify clipping planes for character animation. MMUCAS was used with FLEM to compile a room and its objects into one file that would enable the scripters to make rapid changes without having to recompile the room's description. BYLE and subsequently CYST were used for character animations and scaling, the latter used for the more complex art in LucasArts' later games.

For the game Full Throttle, the team worked to integrate SCUMM with the INSANE animation engine that had formerly been developed for Star Wars: Rebel Assault. Though Wilmunder had gotten the two systems to work for shipment of Full Throttle, the interaction between the two was not always stable, and spent time before The Curse of Monkey Island to have SCUMM work atop the INSANE engine, replacing some of the SCUMM engine parts to use that were native to INSANE.[2]

Internally, much of the workings of SCUMM were undocumented, as Wilmunder believed that it was relatively simple to learn, but he changed this approach before The Secret of Monkey Island. To train new hires on the engine, Gilbert put them through SCUMM University, a week-long period where they were taught how to use the SCUMM engine. These new hires, called scummlets, then were given the opportunity to explore and expand on example work to help identify where they would best fit into the development team.[2]

LucasArts finally abandoned the SCUMM engine in 1998, when they switched to GrimE, using the free software scripting language Lua, for the games Grim Fandango and Escape from Monkey Island.

In March 2016 Wilmunder revealed that he would share design documents for many of LucasArts' adventure games and the source code for the SCUMM engine, which he plans to provide in digital format via GitHub.[3]

Design

Most SCUMM games feature a verb–object design paradigm. The player-controlled character has an inventory, and the game world is littered with objects with which the player can interact, using a variety of verbs. A large set of these featured in the early games, but by Full Throttle (1995) and The Curse of Monkey Island (1997) these had been reduced to using character's eyes (to look), hands (to use, pick up, push, pull, etc.), or mouth (to talk, consume, inhale).

Loom (1990) replaces the conventional SCUMM interface of verbs with spells played on a musical distaff.

Puzzles generally involve using the right verb action with the appropriate object — "use biscuit cutter with rubber tree," for example. "Talk to" commonly produces dialogue sequences, in which the player selects from a list of predefined questions or comments, and the character they are talking to replies with a predefined response.

The notable exception to this general paradigm is Loom (1990), which does not use the standard verb–object interface, but replaces most actions with a selection of spells played on an instrument.

Reimplementation

Compiler

ScummC is a set of tools (including a script and a costume compiler, a walkboxes editor, charset, graphics, audio and midi tools), able to compile its own JavaScript-like language into SCUMM v6 bytecode, runnable as is in ScummVM. It allows anyone with the needed skills to create new and original SCUMM games, with features on par with Day of the Tentacle and Sam & Max Hit the Road.[4]

A similar project named ScummGEN aims to achieve the same thing, with user friendly tools.[5]

Scummbler is a compiler for SCUMM bytecode, for versions 3 to 5 of the SCUMM engine.[6] It uses scripts decompiled from the original game files, retrieved using a combination of an unpacking tool like ScummPacker[7] (also by the author of Scummbler), and the descumm tool from ScummVM. These scripts can be re-inserted into the original game files, making it useful for modifying existing games, such as for translation. Also available are an image encoder-decoder,[8] and a tool to assist in mapping speech files to text.[9]

Interpreters

ScummVM is a free and open source software project to make a portable, Simple DirectMedia Layer (SDL) library-based SCUMM-engine client which allows many of the SCUMM-engine games to be played on systems where the original versions will not work or have trouble operating, including modern Windows and Macintosh systems, Linux (including portable handhelds – Android, GP2X, GP2X Wiz, Maemo, etc.), BeOS-Haiku, AmigaOS (3.x, 4.0, and its clones MorphOS and AROS), Palm OS, Windows Mobile (Pocket PC), Dreamcast, PlayStation 2, PlayStation Portable, Nintendo DS, Wii, Symbian (SeriesXX and UIQ), iOS (iPad, iPhone, iPod Touch), webOS and QNX-Playbook platforms.[10]

scvm is a SCUMM interpreter developed by the ScummC author.[11] As of April 2008, it is in a prototype state, and is meant to become a script debugger for ScummC development. hiscumm is an attempt to port scvm and some bits of ScummVM to the Haxe platform, to produce an interpreter with an Adobe Flash backend.[12][13]

References and in-jokes

In-joke references were a common feature of LucasArts adventure games. Developers used the name of their engine for comic effect in several games.

Razor and the Scummettes, a punk band mentioned in Maniac Mansion, and the SCUMM bar in The Secret of Monkey Island are both named after the scripting language. In Escape from Monkey Island, victim of a hostile takeover, the SCUMM bar becomes the Lua bar, a nod to the programming language which replaced the engine used for the prior games. SCUMM is also listed in the ingredients of grog, in the first opus of the Monkey Island saga.

SPUTM is the name of the script interpreter, CYST is an animation engine, FLEM places and names objects in rooms and MMUCUS[14] is yet another engine part. The successor to SCUMM as an adventure game engine at LucasArts was named GrimE (for Grim Fandango's Engine).[15]

See also

References

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