Tarek Bessalah 201344887

Dependencies:   mbed

Objective The objective of the game is to reach the end goals located at the top of the screen, as well as avoiding the snakes, vehicles, turtles when they are underground, and the water. As the levels progress, things get harder! So You need to avoid enemy objects. Make sure to get on logs when you want to cross the water.

Intro Screen

Play - You need to pass Level 1 in order to progress to the following level Tutorial- This informs you how to play the game Bonus - This is a bonus level, this is a very challenging so play with precautions! You cannot hit the objects, and go into the void background frogger_logo_owner.png 404 x 152 px 14.0 KB May 27, 2020 1 Item Image: 1 Document: 0

To control the menu use the X button to go up, and the B button to go down. Use A to select. To skip through the tutorial pages, use A. At the endhttps://os.mbed.com/media/uploads/el19tb/frogger_logo_owner.png of the tutorial you will play the game.

Controls

Use A, X, B, Y to move right, Up, Down, and Left respectively, this controls the frog object

Revision:
2:86cef2afa648
Parent:
1:6afa6a6a8131
Child:
11:cc5861abfca5
--- a/main.cpp	Mon Mar 09 17:52:38 2020 +0000
+++ b/main.cpp	Mon Apr 13 17:08:55 2020 +0000
@@ -14,14 +14,16 @@
 #include "mbed.h"
 #include "Gamepad.h"
 #include "N5110.h"
-
+#include "Menu.h"
+#include "CrossyChicken.h"
 
 // objects
-Gamepad pad;
-N5110 lcd;
 
 int main()
 {
+    //call the main class
+    CrossyChicken game;
+    game.start();
     
 }