Creating a Space Invaders Clone with Python

October 31, 2014 (9y ago)

To challenge my knowledge of Python programming, I created a clone of the classic arcade game Space Invaders and added a modern twist. My goal for this project was to replicate the core gameplay of the original while enhancing the graphics and gameplay ever so slightly. I used a set of Python modules designed for writing games called Pygame to assist in the development. Prior to this project I had no experience using Pygame, so it was an exciting learning experience. You can view the full source code on my GitHub profile here.


Design

Space Invaders

If you've ever played Space Invaders, you'll notice all the familiar elements - the ship, invaders, blockers, score, and lives. The classic game features five rows of eleven enemies. For my clone, I decided to only use ten per row so the screen didn't feel too congested. To spice up the visuals from the original arcade game, I gave the enemies different colors to signify their point values. Also, rather than using a static black background, I chose to use an image of space for some extra flair. The final change from the original is the ship. Paying homage to the design from Galaga, I transformed the ship into a stylish cruiser.

Gameplay

Space Invaders is a two-dimensional fixed shooter game in which the player controls a ship with lasers by moving it horizontally across the bottom of the screen and firing at descending aliens. The aim is to defeat five rows of ten aliens that move horizontally back and forth across the screen as they advance towards the bottom of the screen. The player defeats an alien, and earns points, by shooting it with the laser cannon. As more aliens are defeated, the aliens' movement and the game's music both speed up.

The aliens attempt to destroy the ship by firing at it while they approach the bottom of the screen. If they reach the bottom, the alien invasion is successful and the game ends. A special "mystery ship" will occasionally move across the top of the screen and award bonus points if destroyed. The ship is partially protected by several stationary defense bunkers that are gradually destroyed by projectiles from the aliens and player.

I tried to keep the gameplay as similar to the original as I could. The enemies descend in the same fashion and animate between their two states to show movement. Instead of having the ship explode like in the original, I used a flickering death similar to other arcade games. I retained all the sounds from the original arcade version.

You can see an example of the gameplay here. Enjoy 🎉

Resources