aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.hpp')
-rw-r--r--src/ui.hpp20
1 files changed, 17 insertions, 3 deletions
diff --git a/src/ui.hpp b/src/ui.hpp
index 809b5dc..1986c8f 100644
--- a/src/ui.hpp
+++ b/src/ui.hpp
@@ -21,11 +21,13 @@
#ifndef SYSTEM_UI_HPP_
#define SYSTEM_UI_HPP_
+#include "events/render.hpp"
+
#include <entityx/entityx.h>
+#include <GL/glew.h>
+#include <SDL2/SDL.h>
+#include <SDL2/SDL_opengl.h>
-#include <map>
-#include <string>
-#include <tuple>
#include <vector>
class UISystem : public entityx::System<UISystem>
@@ -36,6 +38,18 @@ public:
void update(entityx::EntityManager&,
entityx::EventManager&,
entityx::TimeDelta) final;
+
+ void createDialogBox(float x, float y, float w, float h);
+
+private:
+ struct Box {
+ GLuint vbo;
+ float x, y, w, h;
+ };
+
+ std::vector<Box> m_boxes;
+
+ NewRenderEvent generateDialogBox(Box& box);
};
#endif // SYSTEM_UI_HPP_