diff options
Diffstat (limited to 'src/render.hpp')
-rw-r--r-- | src/render.hpp | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/render.hpp b/src/render.hpp index ede3f88..786954e 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -82,11 +82,12 @@ private: std::map<GLuint, WorldRenderData> worldRenders; entityx::Entity player; // Save the player so we can track the camera + public: RenderSystem() : window(nullptr, SDL_DestroyWindow) {} - ~RenderSystem(void) + ~RenderSystem() { SDL_GL_DeleteContext(context); SDL_Quit(); @@ -109,7 +110,24 @@ public: * Initializes the rendering system * @return Zero on success, non-zero on error */ - int init(void); + int init(); + + glm::vec3 getCameraPosition() const { + return camPos; + } + + Position uiToWorldCoord(float x, float y) const; + + /** + * Returns the width of the camera's view in world coordinates. + */ + float getWorldViewWidth() const; + + /** + * Returns the height of the camera's view in world coordinates. + */ + float getWorldViewHeight() const; + /************ * EVENTS * |