diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-17 13:47:16 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-17 13:47:16 -0500 |
commit | 72603f1641bb400be6c9b0604273a4bd38932136 (patch) | |
tree | 50188f29a1af54d25c8fab91b3cc1ce170ca09aa /src/render.hpp | |
parent | 0c535a1526d725fbd242c5ce348a7f2252d1fd34 (diff) |
ui-coord mouse interacts with world-coord entity
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 * |