diff options
Diffstat (limited to 'src/render.hpp')
-rw-r--r-- | src/render.hpp | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/src/render.hpp b/src/render.hpp index 0e4275e..26e525b 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -22,11 +22,11 @@ #ifndef SYSTEM_RENDER_HPP_ #define SYSTEM_RENDER_HPP_ -#include "shader.hpp" - #include <entityx/entityx.h> +#include <GL/glew.h> #include <SDL2/SDL.h> +#include <SDL2/SDL_opengl.h> #define GLM_FORCE_RADIANS #include <glm/glm.hpp> @@ -34,7 +34,12 @@ #include <glm/gtc/type_ptr.hpp> #include <glm/gtc/noise.hpp> -class RenderSystem : public entityx::System<RenderSystem> +#include "shader.hpp" +#include "world.hpp" +#include "events/world.hpp" + +class RenderSystem : public entityx::System<RenderSystem>, + public entityx::Receiver<RenderSystem> { private: constexpr static const char *title = "gamedev2"; @@ -47,8 +52,12 @@ private: Shader worldShader; glm::vec3 camPos; + GLuint worldVBO = 0; + unsigned int worldVertex = 0; + GLuint worldTexture = 0; + GLuint worldNormal = 0; public: - RenderSystem(void) : + RenderSystem() : window(nullptr, SDL_DestroyWindow) {} ~RenderSystem(void) @@ -75,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_ |