Space Invaders design

Before writing our game with cocos2d, we should consider which actors we need to model in order to represent our game entities. In our Space Invaders version, we will use the following classes:

  • PlayerCannon: This is the character controlled by the player. The spacebar is used to shoot, and the horizontal movement is controlled with the right and left arrow keys.
  • Alien: Each one of the descending enemies, with different looks and scores depending on the alien type.
  • AlienColumn: There are columns of five aliens into which every group of aliens is divided.
  • AlienGroup: A whole group of enemies. It moves horizontally or descends uniformly.
  • Shoot: A small projectile launched by the enemies towards the player character.
  • PlayerShoot: A ...

Get Python Game Programming By Example now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.