aboutsummaryrefslogtreecommitdiffstats
path: root/src/render.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render.hpp')
-rw-r--r--src/render.hpp22
1 files changed, 17 insertions, 5 deletions
diff --git a/src/render.hpp b/src/render.hpp
index 26e525b..d74aca4 100644
--- a/src/render.hpp
+++ b/src/render.hpp
@@ -36,8 +36,21 @@
#include "shader.hpp"
#include "world.hpp"
+#include "events/render.hpp"
#include "events/world.hpp"
+#include <map>
+
+struct RenderData
+{
+ GLuint tex;
+ GLuint normal;
+ unsigned int vertex;
+
+ RenderData(GLuint _tex, GLuint _normal, unsigned int _vertex) :
+ tex(_tex), normal(_normal), vertex(_vertex) {}
+};
+
class RenderSystem : public entityx::System<RenderSystem>,
public entityx::Receiver<RenderSystem>
{
@@ -52,10 +65,8 @@ private:
Shader worldShader;
glm::vec3 camPos;
- GLuint worldVBO = 0;
- unsigned int worldVertex = 0;
- GLuint worldTexture = 0;
- GLuint worldNormal = 0;
+ // Map of VBOs and their render data
+ std::map<GLuint, RenderData> renders;
public:
RenderSystem() :
window(nullptr, SDL_DestroyWindow) {}
@@ -88,8 +99,9 @@ public:
/************
* EVENTS *
************/
- void receive(const WorldMeshUpdateEvent &wmu);
+ //void receive(const WorldMeshUpdateEvent &wmu);
+ void receive(const NewRenderEvent &nre);
};
#endif // SYSTEM_RENDER_HPP_