diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-16 18:16:43 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-16 18:16:43 -0400 |
commit | 0236eb7f6391c9d925dcaaddb8cb01ecfb7d5e55 (patch) | |
tree | fcc7ad078ec6e2eb0691ab1c4de2915ff6baed78 /src/render.hpp | |
parent | bce8d0687f44def4b0171cd84bf1441fc4390e58 (diff) |
Render system is now decoupled from the world system
Diffstat (limited to 'src/render.hpp')
-rw-r--r-- | src/render.hpp | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/render.hpp b/src/render.hpp index 82ca844..26e525b 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -36,8 +36,10 @@ #include "shader.hpp" #include "world.hpp" +#include "events/world.hpp" -class RenderSystem : public entityx::System<RenderSystem> +class RenderSystem : public entityx::System<RenderSystem>, + public entityx::Receiver<RenderSystem> { private: constexpr static const char *title = "gamedev2"; @@ -49,12 +51,14 @@ private: Shader worldShader; glm::vec3 camPos; - GLuint world_vbo; - WorldSystem &worldSystem; + GLuint worldVBO = 0; + unsigned int worldVertex = 0; + GLuint worldTexture = 0; + GLuint worldNormal = 0; public: - RenderSystem(WorldSystem & _ws) : - window(nullptr, SDL_DestroyWindow), worldSystem(_ws) {} + RenderSystem() : + window(nullptr, SDL_DestroyWindow) {} ~RenderSystem(void) { @@ -80,6 +84,12 @@ public: * @return Zero on success, non-zero on error */ int init(void); + + /************ + * EVENTS * + ************/ + void receive(const WorldMeshUpdateEvent &wmu); + }; #endif // SYSTEM_RENDER_HPP_ |