aboutsummaryrefslogtreecommitdiffstats
path: root/src/render.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render.hpp')
-rw-r--r--src/render.hpp17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/render.hpp b/src/render.hpp
index c4456cf..45fb548 100644
--- a/src/render.hpp
+++ b/src/render.hpp
@@ -37,8 +37,8 @@
#include "shader.hpp"
#include "world.hpp"
#include "components/Player.hpp"
+
#include "events/render.hpp"
-#include "events/world.hpp"
#include <map>
@@ -52,6 +52,16 @@ struct UIRenderData
tex(_tex), normal(_normal), vertex(_vertex) {}
};
+struct WorldRenderData
+{
+ GLuint tex;
+ GLuint normal;
+ unsigned int vertex;
+
+ WorldRenderData(GLuint _tex, GLuint _normal, unsigned int _vertex) :
+ tex(_tex), normal(_normal), vertex(_vertex) {}
+};
+
class RenderSystem : public entityx::System<RenderSystem>,
public entityx::Receiver<RenderSystem>
{
@@ -69,11 +79,8 @@ private:
// Map of VBOs and their render data
std::map<GLuint, UIRenderData> uiRenders;
+ std::map<GLuint, WorldRenderData> worldRenders;
- 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() :