diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-18 12:10:25 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-18 12:10:25 -0400 |
commit | 0e7f7791fd592f0240a30168a9a570c57b0f5880 (patch) | |
tree | be4e0a598112748030412c452e0a7c24f45ef665 /src/render.hpp | |
parent | 145d74e433216f8c17475685c553321ca4cbedf3 (diff) | |
parent | 2cedd39a90fdb0387783b50446b16732517fb651 (diff) |
adjust for world changes
Diffstat (limited to 'src/render.hpp')
-rw-r--r-- | src/render.hpp | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/src/render.hpp b/src/render.hpp index 3f632f1..eabf4be 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -36,18 +36,19 @@ #include "shader.hpp" #include "world.hpp" +#include "components/Player.hpp" #include "events/render.hpp" #include "events/world.hpp" #include <map> -struct RenderData +struct UIRenderData { GLuint tex; GLuint normal; unsigned int vertex; - RenderData(GLuint _tex, GLuint _normal, unsigned int _vertex) : + UIRenderData(GLuint _tex, GLuint _normal, unsigned int _vertex) : tex(_tex), normal(_normal), vertex(_vertex) {} }; @@ -66,7 +67,13 @@ private: glm::vec3 camPos; // Map of VBOs and their render data - std::map<GLuint, RenderData> renders; + std::map<GLuint, UIRenderData> uiRenders; + + GLuint worldVBO = 0; + unsigned int worldVertex = 0; + GLuint worldTexture = 0; + GLuint worldNormal = 0; + entityx::Entity player; // Save the player so we can track the camera public: RenderSystem() : @@ -100,9 +107,9 @@ public: /************ * EVENTS * ************/ - //void receive(const WorldMeshUpdateEvent &wmu); - + void receive(const WorldMeshUpdateEvent &wmu); void receive(const NewRenderEvent &nre); + void receive(const entityx::ComponentAddedEvent<Player> &cae); }; #endif // SYSTEM_RENDER_HPP_ |