aboutsummaryrefslogtreecommitdiff
path: root/game/menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/menu.h')
-rw-r--r--game/menu.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/game/menu.h b/game/menu.h
new file mode 100644
index 0000000..95be683
--- /dev/null
+++ b/game/menu.h
@@ -0,0 +1,47 @@
+#ifndef MENU_H
+#define MENU_H
+
+#include <vector>
+#include <string>
+
+#include "../umath/vec2.h"
+
+class Option {
+ public:
+ Option(std::string name, int id) : name(name), id(id) {}
+
+ std::string name;
+ int id;
+};
+
+
+class Menu {
+ public:
+ bool active { false };
+ std::vector<Option> options;
+ vec2 pos, size;
+
+ void open (vec2 res);
+ void close ();
+ int mouse_option (vec2 mouse);
+};
+
+class Menu_unit : public Menu {
+ public:
+ Menu_unit () {}
+
+ enum Opts {
+ move, attack, done
+ };
+};
+
+class Menu_day : public Menu {
+ public:
+ Menu_day () {}
+
+ enum Opts {
+ end_day, tech, empire_review, scoring
+ };
+};
+
+#endif \ No newline at end of file