Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Classic Games (Games)

Secrets of 'Space Invaders' -- and One Very Tiny Homegrown Cabinet (ieee.org) 34

IEEE Spectrum has republished an article from nearly 40 years ago remembering one of the long-forgotten secrets of the classic video game Space Invaders.

It's about that iconic descending musical notes accompanying the onslaught of the aliens... The more aliens a player shot, the faster they approached; their drumbeat quickened, the tension mounted. Ironically, says Bill Adams, director of game development for Midway Manufacturing Co., of Chicago, Ill., which licensed Space Invaders for sale in the United States, these features of the game were accidental. "The speeding up of the space invaders was just a function of the way the machine worked," he explained. "The hardware had a limitation — it could only move 24 objects efficiently. Once some of the invaders got shot, the hardware did not have as many objects to move, and the remaining invaders sped up. And the designer happened to put out a sound whenever the invaders moved, so when they sped up, so did the tone."

Accident or not, the game worked. As of mid-1981, according to Steve Bloom, author of the book Video Invaders, more than 4 billion quarters had been dropped into Space Invaders games around the world — "which roughly adds up to one game per earthling."

But Space Invaders also enjoyed at least one special home-grown revival earlier this month. One hobbyist used an Arduino Pro Micro board to build their own Space Invaders arcade cabinet that's just 3.15 inches tall (80 millimeters).

Made from thin hand cut plywood with pinhead joysticks, "Its Microchip ATmega328 microcontroller contains a processor running at 16MHz," reports the projects site Hackster.io, "which is far faster than the processor in the original Space Invaders arcade cabinet."
This discussion has been archived. No new comments can be posted.

Secrets of 'Space Invaders' -- and One Very Tiny Homegrown Cabinet

Comments Filter:
  • Very cool! I'm now interested in seeing just how many views the youtube video gets now it has been posted here.
    As I type this in it is sitting at 1,057
    Anyone want to take a guess where it will be by the time this post moves off the first page on /. (~24hrs) ?
    Not offering prizes for the winner!

  • by aberglas ( 991072 ) on Sunday January 30, 2022 @08:41PM (#62222351)

    The colours were fixed bits of plastic over different areas of the monitor -- the invaders changed colours as they moved underneath them.

    Clever.

  • ok... (Score:1, Flamebait)

    by Osgeld ( 1900440 )

    If one is slightly interested in how these old games work you already knew this, if one is slightly interested in micro-controllers you know the basic idea of putting a fairly simple game on a micro with an LCD or even maybe tv output.

    If you didn't know these things great, now you do ... I am just baffled that someone got paid to write this "story" that's only a bit longer than the summary.

    Hey ladies and gentlemen, here's a dark secret of Star Wars!
    Did you know Darth Vader is Luke's father!?! BTW here's som

  • by jddj ( 1085169 ) on Sunday January 30, 2022 @09:30PM (#62222421) Journal

    Nearly a half-inch smaller than the Super Impulse Space Invaders micro cabinet that's been on my desk for a few years.

    I mean, nice job making and all, but that size isn't a breakthrough.

  • by rekoil ( 168689 ) on Sunday January 30, 2022 @11:17PM (#62222637)

    So I keep hearing the accidental-speeding-up story about the invaders, but the hole in that story is that during gameplay, it's *only* the invaders that speed up - the player, laser shots (both from the player and the invaders), the flying saucer, and everything else stay the same speed. Was it just the invader animation logic that was slowed down the more of them there were?

    • by localroger ( 258128 ) on Sunday January 30, 2022 @11:41PM (#62222665) Homepage
      Shots, saucer, and player movement were incremented by an interrupt routine. The invaders were advanced by the main program loop which wasn't synchronized. This was a very common division of labor in early 8-bit video games.
      • by AmiMoJo ( 196126 )

        It remained a popular technique, and is still kinda used today.

        Essentially you have a limited amount of processing power, so you prioritise. Collision detection is kinda expensive so maybe you don't do as many collisions as you have spare time for, and do them in a way that favours the player. Players generally don't mind if the enemies are at a disadvantage. Same with enemy AI, the player won't mind if they are a bit slow to react.

        That was common in the 16 bit era, and even today the same basic technique i

    • Yes. If you ever see one and pay attention to it, you'll see a rippling effect as the whole field of Invaders is being moved. I'd imagine that just the laser base could be scrolled side-to-side as needed one column at a time, so that'd be faster.
  • Makes perfect sense (Score:5, Informative)

    by Rick Schumann ( 4662797 ) on Sunday January 30, 2022 @11:40PM (#62222659) Journal
    Having worked on Space Invaders coin-op hardware back in the day, I can tell you it used an 8080 microprocessor, and the screen was bitmapped black-and-white in dynamic RAM, not sprites in ROM, and no DMA controller, so everything on the screen had to be moved in software. Very primitive.
    • by kge ( 457708 )

      Video display/memory orientation was vertical so smooth horizontal movement was easily done per pixel since the CRT was mounted in portrait style. The 'sprites' bitmaps are stored in rom. Vertical movement was assisted by a hardware barrel shifter. Years ago I ported the original 8080 code to an 8051 variant (DS5000) and a vertical LCD screen just for fun and reverse engineering the original code. The sound effects were als hardware driven by a SN76477

    • by AmiMoJo ( 196126 )

      It's actually a little surprising that they used bitmapped graphics. The game runs at 224x256 pixels, so the frame buffer is around 7k. Back then RAM was not cheap, so most games tried to avoid using it by having some kind of sprite hardware.

      Being 1 bit per pixel also means that to position objects the source image needs to be left/right shifted and split over two or more bytes, which for the 8080 was quite a slow and demanding task. It all works though.

      • by kge ( 457708 )

        The bytes were vertically oriented, the only shifting was needed for up/down movement which a hardware barrelshifter accomplished. Horizontal per pixel movement was simple moving the whole byte

        • by AmiMoJo ( 196126 )

          Interesting. That would have increased the memory bandwidth requirement by 8x though.

          • I think he means that 8 vertical pixels were stored in a single byte.
            Shifting left and right become byte operations, not bit operations.
            And if vertical shifts are also restricted to be in lots of 8 (ie when the invaders jump down an entire row) then you can avoid bit shifts altogether.

            • by AmiMoJo ( 196126 )

              Sure, what I mean is that the video display chip needs to fetch every pixel on a row, every row as it generates the video signal. If you have a horizontal layout where one byte is 8 pixels, it needs to fetch display_width/8 bytes per scanline. If you have the vertical layout suggested here, it needs to fetch display_width bytes.

              It can be somewhat mitigated by caching the fetched bytes for 8 scanlines, but that required some more memory.

              I guess another option would be to physically rotate the screen by 90 de

      • ROMs weren't cheap either, and EPROMS more so, and games like this used masked (programmed during manufacture) ROMs. Memory of any kind was expensive in general.
  • I was hoping to read about cheats/secrets in the game, like how if you fired 72 shots and paused, the spaceship would come out and be worth 300 points. (Or something like that; it's been a few decades.)
  • Jeezus, David! Have you even PLAYED Space Invaders? The NOTES don't descend, the aliens do! The notes simply alternate with an ever-shortening delay between them.
  • I remember playing some simple games on early Macs that ran on the system clock. That was great until you upgraded to a new Mac model with a clock 10X faster. Boy did those games get difficult!

  • a lot of quarters from me, and from my ex, back in the day.

If all else fails, lower your standards.

Working...