JianWei Lee
/
project_game
Meteor defense project
main.cpp
- Committer:
- jasper0712
- Date:
- 2017-03-28
- Revision:
- 10:926b1f89c4f1
- Parent:
- 9:4c4d787c7a8b
- Child:
- 14:064b8d7f348d
File content as of revision 10:926b1f89c4f1:
#include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "GameEngine.h" #define PI 3.14159265 //Y rows and X columns #define Rows 48 #define Cols 84 N5110 lcd(PTC9,PTC0,PTC7,PTD2,PTD1,PTC11); Gamepad pad; GameEngine game; int gamefps = 15; void init(); void render(); int main() { init(); while (true) { game.drawSpawn(lcd); game.drawLaserPlayer(pad, lcd); game.bomb(pad, lcd); render(); } } void init() { // need to initialise LCD and Gamepad lcd.init(); pad.init(); // initialise the game } void render() { // clear screen, re-draw and refresh lcd.refresh(); wait(1.0/gamefps); lcd.clear(); }