contains my game for the embedded systems project 2645

Dependencies:   mbed FXOS8700CQQQ

Committer:
OmarAlebiary
Date:
Thu Mar 28 11:21:39 2019 +0000
Revision:
10:7323785c071c
Parent:
9:edb39a8334ee
Child:
11:d4aaa959bb20
fixed LED lights on main menu and instructions menu

Who changed what in which revision?

UserRevisionLine numberNew contents of line
OmarAlebiary 6:958376d55d70 1 #ifndef ROCKETRACER_H
OmarAlebiary 6:958376d55d70 2 #define ROCKETRACER_H
OmarAlebiary 6:958376d55d70 3
OmarAlebiary 6:958376d55d70 4 #include "mbed.h"
OmarAlebiary 6:958376d55d70 5 #include "N5110.h"
OmarAlebiary 9:edb39a8334ee 6 #include <cstdlib>
OmarAlebiary 9:edb39a8334ee 7 #include <ctime>
OmarAlebiary 6:958376d55d70 8 #include "Gamepad.h"
OmarAlebiary 6:958376d55d70 9
OmarAlebiary 6:958376d55d70 10
OmarAlebiary 6:958376d55d70 11
OmarAlebiary 6:958376d55d70 12
OmarAlebiary 6:958376d55d70 13 class RocketRacer{
OmarAlebiary 6:958376d55d70 14
OmarAlebiary 6:958376d55d70 15 public:
OmarAlebiary 6:958376d55d70 16
OmarAlebiary 7:7e50cac5e0f4 17 void MainGameDisplay(N5110 &lcd);
OmarAlebiary 10:7323785c071c 18 void EndGame(Gamepad &pad,N5110 &lcd);
OmarAlebiary 10:7323785c071c 19 void Game_difficulty();
OmarAlebiary 9:edb39a8334ee 20 void GameLoop(N5110 &lcd,Gamepad &pad);
OmarAlebiary 9:edb39a8334ee 21 void player_position(N5110 &lcd,char RocketPosition);
OmarAlebiary 9:edb39a8334ee 22 void enemy_position(N5110 &lcd,int place, int phase);
OmarAlebiary 9:edb39a8334ee 23
OmarAlebiary 9:edb39a8334ee 24
OmarAlebiary 9:edb39a8334ee 25 private:
OmarAlebiary 9:edb39a8334ee 26 //int enemy_0_pos, enemy_1_pos, enemy_phase;
OmarAlebiary 9:edb39a8334ee 27 // int Joy_X;
OmarAlebiary 9:edb39a8334ee 28 // int game_speed;
OmarAlebiary 9:edb39a8334ee 29 // int score;
OmarAlebiary 9:edb39a8334ee 30 // char POS;
OmarAlebiary 9:edb39a8334ee 31 // bool enemy_dead;
OmarAlebiary 9:edb39a8334ee 32 // bool control;
OmarAlebiary 6:958376d55d70 33
OmarAlebiary 6:958376d55d70 34
OmarAlebiary 6:958376d55d70 35
OmarAlebiary 10:7323785c071c 36
OmarAlebiary 6:958376d55d70 37 };
OmarAlebiary 6:958376d55d70 38
OmarAlebiary 6:958376d55d70 39 #endif