NICOLA ARIUTTI'S WEBSITE

ABOUT  CONTACT  


Genuary 25, 2025
SCUMM: FOA room image and palette extractor

While working on the content for the upcoming post about the musical resources of the LucasArts video game Indiana Jones and the Fate of Atlantis[1] (or simply FOA), I wanted to develop a small tool to extract the color palettes and background images from the game.

I thought that having the background images for each environment in the game would eventually be useful to quickly recall the events of the game at any given moment in the story.

Python tool

The Python code I wrote to export these images is hosted on my GitHub page, here[2]. To make it work, you need to have the original FOA game files: the index file ATLANTIS.000 and the resource file ATLANTIS.001.


Below a table with all the room images and palettes extracted with the tool:

Room Number Room Name Background Image Color Palette
1col-offic
2col-hall_
3col-basem
4col-attic
5col-store
6col-archi
7col-catro
8wallet___
9natl-geo_
10sop-theat
11sop-stage
12sop-sides
13de-ice-ex
14dig-top__
15sop-study
16a2-skelet
17a2-digger
18a2-rube__
19de-azores
20sahara___
21a3-pit-to
22a3-god-ma
23a3-center
24deadroom_
25sub-volca
26de-ice-in
27mc-hotel_
28mc-seance
29af-cas-fl
30a3-god-hi
31a2-cu-rob
32bal-deser
33lab-crete
35a1-2-bot_
36a1-o-mach
37a1-o-pool
39sub-1-ins
40sub-2-ins
41sub-conn-
42sal-surfa
43cr-bro-ex
44cr-bro-in
45digger-ri
46a1-canal_
47cu-uberma
48a1-darkro
49th-dock__
50labyrinth
51catacombs
52labwat-1_
53lab-subwa
54lab-hide_
55a3-maze__
56lab-eleva
57lab-three
58transit__
59lab-mapro
60lab-goldb
61labwat-2_
62nazi-labo
63th-landsc
64af-cas-st
65af-cas-ho
66sub-under
67af-atl-ex
68logo_____
69th-dig-ex
70mc-chase_
71mc-smashu
72th-dig-in
73af-atl-in
74cu-microt
75map-world
76de-yuc-ex
77de-yuc-in
78af-cas-ov
79cu-neckla
80af-launch
81lockrock_
82sal-under
83cu-plato_
84cu-rube__
85a1-nw-top
86a1-ne-top
87a1-sw-top
88a1-se-top
89end-volca
90end-v2___
91a1-2-dark
92atlan-1__
93atlan-2__
94a2-generi
95bal-sea__
96endscene_
97a1-cagero
98_________
Curiosities

Glitches

The images from LucasArts video games were stored in the resource file in a compressed format. They were "sliced" into vertical strips, each 8 pixels wide, and then the strip data was compressed using a sort of custom RLE algorithm[3], which could change depending on the graphic content of each strip.

Building the decoder wasn’t exactly straightforward because I found few references online, and in some cases, even conflicting ones. During my experiments, I encountered interesting glitch effects, such as those caused by an incorrect increment of the color pointer within the palette in the codec1.

If the codec1 implementation is as follows

while pixel_left > 0:
  if bitReader.read_bit():
    if not bitReader.read_bit():
      color_index = bitReader.read_bits( palette_index_size )
      inc = -1
    else:
      if bitReader.read_bit():
        inc = -inc
      color_index += inc

  image_writer.write_pixel( i, COLOR_LOOKUP_TABLE[ color_index ], 1, direction )
  pixel_left -= 1

... everything works correctly, but if instead of inc = -1 we use inc = +1, here's what happens:

Codec1 glitch Image
Main references and inspirations

The tool I developed was heavily inspired by other similar tools that can be found with a simple web search.

Moreover, it wouldn't have been possible to implement it without the vast amount of resources and documentation available on the ScummVM project website and elsewhere. Below is a non-exhaustive list:

References

^ [1]Indiana Jones and the Fate of Atlantis wiki page
^ [2]Custom python FOA palette and background images extraction tool
^ [3]RLE algorithm wiki page


*