Working on Monkey Island Special Edition in 2009 while at LucasArts is one of the highlights of my career. I have really fond memories of my time there on the team (Team 3!). I wish I had worked on the original but that was way before my time.
The game is actually running the full original code alongside the new Special Edition stuff. We didn’t want to disturb the original codebase, so we ran it basically unchanged on another thread and the new game loop would surgically peek and poke some state every frame (animations, etc) to get synchronized. That’s how we essentially layered all the new art and sound on top of the original game. There was a lot of reverse engineering of data and asset formats that we had to do because all the original authors had since left, perhaps with the exception of EJ.
The F10 hotkey to transition between the old and the new art was actually a debugging feature that our lead rendering engineer wrote during development, but everyone agreed that it was too good not to ship it as an actual feature of the Special Edition.
I'm always happy to see a speedrunner decompile the game they're running. I've always thought it was an underappreciated part of understanding a game.
But I wish companies would just release their games' original source code after a while. Monkey Island is almost 30 years old, and people have already reverse-engineered it, so they won't be losing too many sales by releasing it. And for Monkey Island specifically it's not a case of losing the source - the original devs gave a copy of the engine and game source to the Video Game History Foundation[^]. But us outsiders will never get to play with it :(
For those who didn't experience it the first time or perhaps would like to do so again, I feel obligated to mention your version is on sale for $3.49 at Good Old Games aka gog.com. No affiliation myself other than a customer and someone a bit in awe of what you guys wrought.
For anyone interested, ScummVM has been ported to WebAssembly. Here’s one of my all time favorite LucasArts games, The Curse of Monkey Island in the browser:
To add to this, the commercially available versions of the first two Monkey Island games are not ScummVM compatible without some hackery. The games are perfectly playable, indeed, but a lot of people don't have much fondness for the visual style choices.
Luckily, the original game data files are included in the homogeneous .pak files for the games, and Monkey Island Explorer[0] can unpack them.
For both games the files are MONKEY.000 and MONKEY.001 (MONKEY2.00{0,1} for Monkey 2) and the explorer program can filter for file types making it easy. Just unpack them, add to ScummVM and away you go.
Caveat is that these are the CD versions of the games. The Secret of Monkey Island was actually "remastered" previously! The colour palette is altered slightly and the UI includes an updated inventory, with images instead of just words for items. The stump joke is removed, too (partly due to the LucasArts hintline getting calls about a missing disk #131!).
Monkey Island Ultimate Talkie Edition[1] is another project that can extract the data from the Special Editions, as well as the music and voice files. The resulting build is compatible with ScummVM, meaning you can play the original games with the updated audio.
I didn't just grow up with adventure games like this, I grew up with these specific adventure games.
It looks like they actually implemented the old Sierra game interpreter in Flash. I recall there being an open-source clone of the interpreter under the same name, actually.
Activision Blizzard owns the IP for these old Sierra games. I wonder what with Lucasarts recognizing the value in their back catalog (e.g. releasing some of their classic games to Steam, remaking Monkey Island, and porting the latter to the iPhone) if Activision won't actually re-release or even remake some of these titles to modern standards.
Game 3 and 4 (The Curse of Monkey Island and Escape from Monkey Island) come with the caveat that they are from the Windows 9x period. Getting them to run reliably on a modern computer is an adventure in its own right.
Monkey Island 1 and 2 is available on steam, even remastered if I remember correctly, to not damage their modern sensitive eyes that is used to high resolution graphics...
Another recommended remaster is Full throttle...also available on steam and Xbox.
I don't have a link handy, but there is a "monkey island 1 ultimate talkie" version of the original Monkey Island that I highly recommend.
My understanding is that someone backported the speech from the remastered version into the original game. So you can play the original MI1 in SCUMMVM, with speech. It's great.
In the case of DotT a significant amount of the original game code was re-used. Both the C run-time as well as all the original SCUMM code, a domain specific language invented by a team at LucasArts for creating adventure games.
On top of that is a modern C++11 engine harness that inter-operates with the original code, provides platform services, adds a brand new rendering system and art pipeline for the remastered art, etc.
There has been similar things done in the past, for example for Dune Legacy (Dune II) or REminiscence (Flashback)
Mario 64 is more recent so might be a magnitude more complex.
There are also other approaches, like a total re-implementation, not a decompile/re-source. ScummVM engine for Blade Runner, the adventure game from 90's is a recent very impressive example of that
The game is actually running the full original code alongside the new Special Edition stuff. We didn’t want to disturb the original codebase, so we ran it basically unchanged on another thread and the new game loop would surgically peek and poke some state every frame (animations, etc) to get synchronized. That’s how we essentially layered all the new art and sound on top of the original game. There was a lot of reverse engineering of data and asset formats that we had to do because all the original authors had since left, perhaps with the exception of EJ.
The F10 hotkey to transition between the old and the new art was actually a debugging feature that our lead rendering engineer wrote during development, but everyone agreed that it was too good not to ship it as an actual feature of the Special Edition.
reply