diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-15 20:40:37 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-15 20:40:37 -0500 |
commit | be993f55f5d93150b8b418b031d2e9c8d88978b2 (patch) | |
tree | adbd8cdc4b5b6c55679219fde46e2a1231253d10 /src/ui.hpp | |
parent | 38b18b8bdaf0cd4f4f7b72ade4b3f27f7363eab3 (diff) |
allow lua to create dialog box
Diffstat (limited to 'src/ui.hpp')
-rw-r--r-- | src/ui.hpp | 20 |
1 files changed, 17 insertions, 3 deletions
@@ -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_ |