Meteor defense project

Dependencies:   N5110 mbed

Committer:
jasper0712
Date:
Thu Apr 13 22:21:02 2017 +0000
Revision:
25:edd6a95607b1
Parent:
21:e5585569a938
Child:
26:140515d80457
help me pls im tired. new bug found. spawnDE one shot only

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jasper0712 4:4145abd09075 1 #ifndef GAMEENGINE_H
jasper0712 4:4145abd09075 2 #define GAMEENGINE_H
jasper0712 4:4145abd09075 3
jasper0712 4:4145abd09075 4 #include "mbed.h"
jasper0712 4:4145abd09075 5 #include "N5110.h"
jasper0712 4:4145abd09075 6 #include "Gamepad.h"
jasper0712 4:4145abd09075 7 #include "Weapon.h"
jasper0712 4:4145abd09075 8 #include "Spawn.h"
jasper0712 4:4145abd09075 9
jasper0712 4:4145abd09075 10 #define Rows 48
jasper0712 4:4145abd09075 11 #define Cols 84
jasper0712 4:4145abd09075 12
jasper0712 4:4145abd09075 13
jasper0712 4:4145abd09075 14 class GameEngine
jasper0712 4:4145abd09075 15 {
jasper0712 4:4145abd09075 16
jasper0712 4:4145abd09075 17 public:
jasper0712 4:4145abd09075 18 GameEngine();
jasper0712 4:4145abd09075 19 ~GameEngine();
jasper0712 4:4145abd09075 20 void drawSpawn(N5110 &lcd);
jasper0712 5:c74bbdda06f4 21 void drawLaserPlayer(Gamepad &pad, N5110 &lcd);
jasper0712 10:926b1f89c4f1 22 void checkGameRule(N5110 &lcd);
jasper0712 21:e5585569a938 23 void gameWave(); //not yet started
jasper0712 14:064b8d7f348d 24 void bombAndShield(Gamepad &pad, N5110 &lcd);
jasper0712 21:e5585569a938 25
jasper0712 21:e5585569a938 26 void init();
jasper0712 21:e5585569a938 27 void update(Gamepad &pad, N5110 &lcd);
jasper0712 21:e5585569a938 28
jasper0712 20:32f115462bbc 29 int Array[Cols][Rows]; //this was Array1 (main)
jasper0712 20:32f115462bbc 30 int Array2[Cols][Rows]; // secondary
jasper0712 19:7ccbb19703f9 31 //this char array to differentiate the 4 different kind of spawn - a, b, c and d.
jasper0712 20:32f115462bbc 32 char charArray[Cols][Rows]; //used as main array
jasper0712 20:32f115462bbc 33 char charArray2[Cols][Rows]; //this was Array2 - secondary array
jasper0712 9:4c4d787c7a8b 34
jasper0712 25:edd6a95607b1 35
jasper0712 4:4145abd09075 36 private:
jasper0712 5:c74bbdda06f4 37 Weapon weap;
jasper0712 17:53aedd20155a 38 Weapon _d1;
jasper0712 17:53aedd20155a 39 Weapon _d2;
jasper0712 4:4145abd09075 40 Spawn spa;
jasper0712 4:4145abd09075 41 int drawit;
jasper0712 13:38cbce17d7d7 42
jasper0712 11:1c48fe71045c 43
jasper0712 9:4c4d787c7a8b 44
jasper0712 17:53aedd20155a 45
jasper0712 4:4145abd09075 46 };
jasper0712 4:4145abd09075 47
jasper0712 4:4145abd09075 48 #endif