This is an old revision of the document!


Quake Arcade Tournament Edition

You probably heard of the Quake - Arcade Tournament Edition. An arcade machine with Quake built by LBE Systems/Lazer-Tron in 1998.

Supposedly only twenty of these prototypes were manufactured. When the game was first introduced, Lazer-Tron was bought out and due to problems with the contracted programmer, the game was never further developed.

Just recently I understood what MAME is all about and eventually I knew how to get nearer to this thing. And yes, to my gratitude there actually is a harddisk image of this machine floating around in torrents. The file is named quakeat.chd (225 Megabytes) and you might find it in some huge romsets (CHD/LD are terms you will want to look for).

That quakeat.chd is the image of the harddisk from the arcade machine. You cannot run it through MAME at the time of writing because at least the BIOS image is missing. But you can mount the disk image and take a peek inside. Following is how I managed to do that (on Linux, have fun on Windows…) and some of what I found.

Extraction

$ file quakeat.chd 
quakeat.chd: MAME CHD compressed hard disk image, version 4

So let's uncompress that image. MAME comes with a tool for that job, chdman (do get the latest official binaries, if you get an error about a wrong format, that's what you did not do). I used Wine below because I could not be arsed to hunt for a Linux binary.

$ wine chdman.exe -extract quakeat.chd quakeat.img
[Output stripped]
$ file quakeat.img 
quakeat.img: x86 boot sector, Microsoft Windows XP mbr,Serial 0x31f533a1; partition 1: ID=0xb, active, starthead 1, startsector 63, 4225473 sectors, code offset 0x33

Now you cannot simply mount that image, it contains a mbr. Checking the file with fdisk shows where the actual data partition starts.

$ fdisk -l -u quakeat.img 
You must set cylinders.
You can do this from the extra functions menu.

Disk quakeat.img: 0 MB, 0 bytes
128 heads, 63 sectors/track, 0 cylinders, total 0 sectors
Units = sectors of 1 * 512 = 512 bytes
Disk identifier: 0x31f533a1

      Device Boot      Start         End      Blocks   Id  System
quakeat.img1   *          63     4225535     2112736+   b  W95 FAT32

So the size of a sector is 512 bytes and the partition we want starts at sector 63. 63*512 = 32256. Thankfully you can tell mount where to start.

$ mount -o loop,offset=32256 quakeat.img /where/ever/you/want/

Examination

Now, what's inside and can you run it? It looks like a (almost) normal Quake installation. The pak files in id1 are extracted. There is a glquake.exe but sadly it will tell you "E020C – Security key not found". Seems like one would need a dongle. The engine also seems to have been modified to display AVI movies. There is a directory with movies inside that are referenced in quake.rc alternating with normal demos. They show instructions, credits and company logos.

There are some files related to accounting and prizes. 6 progs (progs.dat, progshipnotic.dat, Progsreaper.dat, progsqtv.dat (clanring something), progsrogue.dat, progszeus.dat). I could not figure out how to run the "Arcade Tournament" game though. Maybe someone more into QC and hacking will shed more light onto it.

The default.cfg says Quake - Arcade Tournament Edition 1.30 r3, it also contains a password (could that be related to the engine?) and suggests that opus.exe is related to the Joystick. There are many variables prefixed with a_ which suggests "arcade_".

It seems like the two official missionpacks are included. Also a ctf1.bsp and qdqstart.bsp (which is quite a weird modified start map, most probably not related to Quake done Quick). There are also modified player models showing the current weapon (like vweps in some QW configurations nowadays).