Emulating the Space Invaders look and feel

6 minute read

My attempt at making a Space Invaders emulator look like the arcade cabinet.

Check out the emulator’s repository if you’re interested. It’s called Moon Invaders, because the game seemingly takes place on the moon, and I wrote the emulator in Lua (which is the Portuguese name for the Moon).

To me, emulation isn’t just making a program that accurately performs the same computations that the original hardware did; it’s also important to me that it captures the feeling of the original game.

A popular first project for emulator developers is the original Taito/Midway Space Invaders arcade machine from 1978. The hardware isn’t very hard to emulate (except for the sound chip, which is usually not emulated; prerecorded sound files are played instead).

But Space Invaders is more than its CPU. Inside the arcade cabinet, there’s a CRT monitor. Interestingly enough, it’s rotated 90 degrees counter-clockwise, as an early example of a “portrait mode” game. The monitor isn’t actually visible, but there’s a mirror in front of you that superimposes the light from the monitor onto illuminated background artwork. The game is in black and white, but strips of colored gel is adhered to the monitor to give some game elements color.

These elements give a look and feel that’s missing from most basic Space Invaders emulators out there. Let’s go through the elements.

Aspect ratio

In most Space Invaders emulators, one bit of graphical information is drawn as one pixel on the screen.

However, CRT monitors don’t have “pixels” in the same sense. The electron beam is turned on for a period of time as it sweeps horizontally from left to right, illuminating parts of a scanline, before it’s turned off again.

Usually, this means that one CRT “pixel” is slightly wider than it’s tall. The height is one scanline, which can be translated into one pixel, but the width can be more than that. That’s the case for Space Invaders. Because its resolution of 256 x 224 isn’t quite 4:3 like the monitor, the image gets stretched vertically as each pixel occupies a little more of the horizontal scanline.

Note that since the CRT monitor in Space Invaders is rotated, one pixel is in fact slightly taller than wide instead, after rotation. This means that the iconic crab-like space invader looks too squat and flat in many emulators, for example. The enemies should look more or less square.

Scanlines

Since Space Invaders uses an old CRT monitor, the scanlines are actually visible. Because of the phosphorescent glow, they’re not easily discernible, but the gel overlay mutes the bloom on the colored areas, making them stand out more there.

Screenshot from this video

This is a common visual effect, which many emulators provide. However, they often forget that the monitor in the cabinet is rotated. The scanline effect should obviously be applied before rotating, producing vertical scanlines rather than horizontal.

In addition, the scanlines should only affect the image on the actual CRT monitor. This is projected onto artwork of a desolate moon. Some emulators apply the scanline effect to this image as well, which is incorrect.

Gel overlay colors

Most Space Invaders emulators use bright, primary colors for its gel overlay, like shown above. The overlay is placed like this (image from The Cutting Room Floor:

However, when looking at some YouTube videos (1, 2) with footage of actual arcade gameplay, several things stand out to me about this color scheme:

Taito cabinet on the left, Midway cabinet on the right
  • The white should have a bluish tint from the CRT phosphorescence (intensity of the blue varies)
  • The green should look a little “washed out”
  • The red isn’t actually red, but either magenta (Taito cabinet) or orange (Midway cabinet)

It’s also interesting to note the color of the dividing line between the playing area and the “HUD” with lives and credits. In the videos shown above, parts of the line is green where the overlay extends down to the number of lives, but the length of that extension varies. It seems that the Midway’s line is too short (it would only cover three lives with green, making any additional lives white), but at any rate, it’s obvious that there are several different overlays.

I haven’t found too many photos of the actual overlays out there, but here’s an interesting one:

Image from BrentRadio’s Space Invader page

This one is also too short to color more than three lives, as in the Midway video, but the interesting part is that there’s a one-scanline gap between the two green areas, so that the dividing line stays white. (In addition, the number denoting the number of lives would be white here, not green like in those videos.) I don’t know if all the overlays had this gap and that people just misaligned it when applying it to the screen, but seeing as there were different overlays in the wild, perhaps some were just solid green blocks without the gap.

At any rate, in my emulator I decided to go for a gel overlay with a gap for the dividing line, since that clearly existed, and I also decided to apply it perfectly to my digital CRT screen.

Lighting

Not too much to say here. The CRT’s phosphorescent glow can be added with a simple glow/light bloom shader. In the one I used, a min_luma value of 0.4 (from 0 to 1) and a strength of 5 (the shader’s default) gives a satisfying glow that blows out the scanlines in the invaders, but is less prominent in the colored areas, just like the case is in the cabinet (the colored gel overlays mask the glow somewhat).

The background of the moon is lit from within the cabinet. That’s harder to emulate, but the image I found online of the Taito cabinet’s moon was very vibrant, so I added a vignette shader that adds a little shadow to the corner, for a more dynamic lighting look.

The more muted moon in the Midway cabinet would need a different lighting shader to look natural. the only image I’ve found of it online is very dark; if anyone has a better one than MAME (unlikely) let me know!

Sound

Like I said at the start, the sound chip is pretty hard to emulate, and most people don’t bother. I’d like to do it, but I haven’t yet. So I just make my emulator play prerecorded sound effects at the right times. These sound effects can readily be downloaded online.

At least most of them can. There are 9 sound effects that can be found online easily, but the tenth sound effect is a bit more elusive – it plays when you gain a new life (by scoring either 1000 or 1500 points), and is presumably hard to record without an overlapping “alien death” sound effect. It can, however, be found in some MAME sound packs. The sound effect in question can be heard at 2:04 in this video.

Note also that some sound packs found online have seemingly swapped the file names of the “laser shot” sound and the “alien death” sound. They actually still fit somewhat when swapped, but look out for that if you want an authentic sound experience.

How to emulate

I emulate all this in my Space Invaders emulator in this order:

  1. First draw the moon backdrop image, with a vignette shader to make it look illuminated
  2. Draw the game’s VRAM to a stencil canvas, where each “pixel” is a rectangle 4 pixels wide by 3 pixels tall
  3. Apply the “gel overlay” image (where the non-overlayed parts of the image are white) to all the stenciled pixels, and draw it to a new canvas
  4. Apply a scanline effect shader to this canvas, then a barreling distortion and glow effect shader, in that order
  5. Rotate the canvas 90 degrees counterclockwise and draw it on top of the backdrop

The result is (as I intended) a fairly close match to the Taito cabinet as shown above, mixed with the Midway cabinet (a subtler bloom, for example):

Taito Space Invaders on the left, my emulator on the right

Of course, I could always do more here. For example, the background doesn’t really look like it consists of two parts, where one is illuminated from below, like in the cabinet. But I’m satisfied for now!

Comments