Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

C# Space Invaders using WinForms Objects

0.00/5 (No votes)
17 Jun 2008 3  
Create the famous game using only labels, panels and pictures

Introduction

Space Invaders is one of the most famous arcades in the world, and many of us programmers developed our own version of this game in our favourite programming language. I decided to create a version using only WinForms objects, maintaining as many features as possible (primarily, the graphics).

ScreenShot

Background

At first, you must know that every label object has got its image property, which can be used as background for a text. Of course, if you set text to empty string, you see nothing but the image itself! So, I decided to use labels for player ship, for aliens and for bullets. For aliens movement, I placed all of them in a panel, so that I can shift the entire armada only by setting the top and left property of the panel. To be right, there are two panels and two armadas, which are shown alternately to change aliens' legs positions.

Using the Code

There is a class for each of the main actors of the game: bullets, invaders and ship. In the main form, a timer is used for checking the keyboard, and another timer for moving the actors. To handle keyboard input smoothly, I didn't use the KeyPress event, but I used GetAsyncKeyState from DDL user32; in this way, there is no delay between the first and second hit of the key.

Note: Use the left and right arrow keys for moving the ship, and space key for shooting.

History

  • 17th June, 2008: This is version 0.5. No sound is included. Moreover, invaders' ship (the one passing in the upper side of the screen) is missing. A known bug is that aliens don't bite the bunkers (that means that when the aliens reach the bunkers's position, the aliens pass behind the bunkers).

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here