Helios Lyons 201239214

Dependencies:   mbed

Brief

My aim for this project was to create a FRDM K64F adapted version of the classic Space Invaders by Tomohiro Nishikado. The game itself has a number of clear features to implement;

  • Left to right movement for the player 'canon'
  • A fixed amount of player lives
  • Firing mechanics for both canon and invaders (hence collision systems)
  • Random firing from remaining invaders
  • Wave based combat

My own addition to these established ideas was Boss waves, featuring a single, larger sprite which fires at a faster interval than previous waves. The addition of a movement system using a basic for loop, as opposed to a velocity based system, will enhance the nostalgic feel of the game.

https://os.mbed.com/media/uploads/helioslyons/screenshot_2020-05-27_at_06.12.00.png

Gameplay

Movement is controlled with the joystick, moving the canon left or right. Fire by pressing A. Invaders spawn at set positions, but randomly fire at a set interval, which is higher for boss waves. Time is taken during each wave, and displayed at wave intervals, and if the play wins.

Controls are shown on the Gamepad below: (attribution: Craig A. Evans, ELEC2645 University of Leeds)

https://os.mbed.com/media/uploads/helioslyons/screenshot_2020-05-27_at_06.20.18.png

Committer:
helioslyons
Date:
Wed May 27 15:40:47 2020 +0000
Revision:
13:1472c1637bfc
Parent:
11:1fd8fca23375
Final Submission. I have read and agreed with Statement of Academic Integrity.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
helioslyons 4:c644522ff9d9 1 #ifndef ARMY_H
helioslyons 4:c644522ff9d9 2 #define ARMY_H
helioslyons 4:c644522ff9d9 3
helioslyons 11:1fd8fca23375 4 #include <vector>
helioslyons 11:1fd8fca23375 5
helioslyons 4:c644522ff9d9 6 #include "mbed.h"
helioslyons 4:c644522ff9d9 7 #include "N5110.h"
helioslyons 4:c644522ff9d9 8 #include "Gamepad.h"
helioslyons 11:1fd8fca23375 9
helioslyons 7:5fe9ac6522c5 10 #include "Invader.h"
helioslyons 4:c644522ff9d9 11
helioslyons 4:c644522ff9d9 12 /** Army.h
helioslyons 11:1fd8fca23375 13 * @brief Defines variables and methods for the invader army, instatiates invaders
helioslyons 4:c644522ff9d9 14 * @author Helios A. Lyons
helioslyons 4:c644522ff9d9 15 * @date April, 2020
helioslyons 4:c644522ff9d9 16 */
helioslyons 4:c644522ff9d9 17
helioslyons 4:c644522ff9d9 18 class Army
helioslyons 4:c644522ff9d9 19 {
helioslyons 11:1fd8fca23375 20
helioslyons 4:c644522ff9d9 21 public:
helioslyons 11:1fd8fca23375 22 /** Constructor */
helioslyons 4:c644522ff9d9 23 Army();
helioslyons 11:1fd8fca23375 24 /** Destructor */
helioslyons 4:c644522ff9d9 25 ~Army();
helioslyons 4:c644522ff9d9 26
helioslyons 11:1fd8fca23375 27 /** Initialises variables
helioslyons 11:1fd8fca23375 28 * @param value for invader vector (int), speed (int), boss (bool), and boss number (int)
helioslyons 11:1fd8fca23375 29 */
helioslyons 11:1fd8fca23375 30 void create_army(int rows, int columns, int speed, bool boss, int bossNum);
helioslyons 10:19b250c7de5e 31
helioslyons 11:1fd8fca23375 32 //void move_army();
helioslyons 10:19b250c7de5e 33
helioslyons 11:1fd8fca23375 34 /** Draws contents to LCD
helioslyons 11:1fd8fca23375 35 * @param bitmap and position values (bit, int)
helioslyons 11:1fd8fca23375 36 */
helioslyons 10:19b250c7de5e 37 void draw(N5110 &lcd);
helioslyons 10:19b250c7de5e 38
helioslyons 11:1fd8fca23375 39 int _rows; // passed from main to Army to define the size of the invader vector
helioslyons 11:1fd8fca23375 40 int _columns;
helioslyons 10:19b250c7de5e 41
helioslyons 11:1fd8fca23375 42 /** Returns end condition
helioslyons 11:1fd8fca23375 43 * @return returns end condition (boolean) and passes to battle.h
helioslyons 11:1fd8fca23375 44 */
helioslyons 11:1fd8fca23375 45 bool end();
helioslyons 11:1fd8fca23375 46 bool _end;
helioslyons 4:c644522ff9d9 47
helioslyons 4:c644522ff9d9 48 private:
helioslyons 11:1fd8fca23375 49
helioslyons 4:c644522ff9d9 50 int _x;
helioslyons 4:c644522ff9d9 51 int _y;
helioslyons 11:1fd8fca23375 52 bool _boss;
helioslyons 11:1fd8fca23375 53 int _inc;
helioslyons 11:1fd8fca23375 54
helioslyons 4:c644522ff9d9 55 };
helioslyons 4:c644522ff9d9 56 #endif