ELEC2645 (2018/19) / Mbed 2 deprecated el17ebs

Dependencies:   mbed FATFileSystem

Committer:
ellisbhastroud
Date:
Mon Mar 18 11:02:06 2019 +0000
Revision:
1:6179c2d67d19
Child:
2:81cfa8310f55
Menu Added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ellisbhastroud 1:6179c2d67d19 1 #ifndef MENU_H
ellisbhastroud 1:6179c2d67d19 2 #define MENU_H
ellisbhastroud 1:6179c2d67d19 3
ellisbhastroud 1:6179c2d67d19 4 #include "mbed.h"
ellisbhastroud 1:6179c2d67d19 5 #include "N5110.h"
ellisbhastroud 1:6179c2d67d19 6 #include "Gamepad.h"
ellisbhastroud 1:6179c2d67d19 7
ellisbhastroud 1:6179c2d67d19 8 /** Enum for menu options */
ellisbhastroud 1:6179c2d67d19 9 enum MenuChoices {
ellisbhastroud 1:6179c2d67d19 10 Start, /**< Begin Game */
ellisbhastroud 1:6179c2d67d19 11 Highscores, /**< View Highscores */
ellisbhastroud 1:6179c2d67d19 12 Settings, /**< View Settings */
ellisbhastroud 1:6179c2d67d19 13 };
ellisbhastroud 1:6179c2d67d19 14
ellisbhastroud 1:6179c2d67d19 15 /** Menu Class
ellisbhastroud 1:6179c2d67d19 16 * @brief Library for controlling menu options
ellisbhastroud 1:6179c2d67d19 17 * @author Ellis Blackford Stroud
ellisbhastroud 1:6179c2d67d19 18 * @date May, 2018
ellisbhastroud 1:6179c2d67d19 19 */
ellisbhastroud 1:6179c2d67d19 20
ellisbhastroud 1:6179c2d67d19 21 class Menu {
ellisbhastroud 1:6179c2d67d19 22
ellisbhastroud 1:6179c2d67d19 23 public:
ellisbhastroud 1:6179c2d67d19 24
ellisbhastroud 1:6179c2d67d19 25 /** Constructor */
ellisbhastroud 1:6179c2d67d19 26 Menu();
ellisbhastroud 1:6179c2d67d19 27
ellisbhastroud 1:6179c2d67d19 28 /** Destructor */
ellisbhastroud 1:6179c2d67d19 29 ~Menu();
ellisbhastroud 1:6179c2d67d19 30
ellisbhastroud 1:6179c2d67d19 31 /** Prints opening message */
ellisbhastroud 1:6179c2d67d19 32 void print_welcome(N5110 &lcd);
ellisbhastroud 1:6179c2d67d19 33
ellisbhastroud 1:6179c2d67d19 34 /** Prints menu screen */
ellisbhastroud 1:6179c2d67d19 35 void print_menu(N5110 &lcd);
ellisbhastroud 1:6179c2d67d19 36
ellisbhastroud 1:6179c2d67d19 37 private:
ellisbhastroud 1:6179c2d67d19 38
ellisbhastroud 1:6179c2d67d19 39 };
ellisbhastroud 1:6179c2d67d19 40
ellisbhastroud 1:6179c2d67d19 41 #endif