matf-rg-engine  1.0.0
Base for project for the Computer Graphics course at Faculty of Mathematics, University of Belgrade
GraphicsController.hpp
Go to the documentation of this file.
1 
6 #ifndef GRAPHICSCONTROLLER_HPP
7 #define GRAPHICSCONTROLLER_HPP
11 
12 struct ImGuiContext;
13 
14 namespace engine::resources {
15  class Skybox;
16  class Shader;
17 }
18 
19 namespace engine::graphics {
24  float FOV;
25  float Width;
26  float Height;
27  float Near;
28  float Far;
29  };
30 
35  float Left;
36  float Right;
37  float Bottom;
38  float Top;
39  float Near;
40  float Far;
41  };
42 
46  };
47 
55  class GraphicsController final : public core::Controller {
56  public:
57  std::string_view name() const override;
58 
75  void begin_gui();
76 
80  void end_gui();
81 
85  void draw_skybox(const resources::Shader *shader, const resources::Skybox *skybox);
86 
88  return &m_camera;
89  }
90 
95  template<ProjectionType type = Perspective>
96  glm::mat4 projection_matrix() const {
97  if constexpr (type == Perspective) {
98  return glm::perspective(m_perspective_params.FOV,
101  } else {
104  }
105  }
106 
111  glm::mat4 projection_matrix(ProjectionType type = Perspective) const {
112  switch (type) {
113  case Perspective: return projection_matrix<Perspective>();
114  case Orthographic: return projection_matrix<Orthographic>();
115  default: RG_SHOULD_NOT_REACH_HERE("Unsupported type");
116  }
117  }
118 
125  return m_perspective_params;
126  }
127 
133  return m_perspective_params;
134  }
135 
143  return m_ortho_params;
144  }
145 
151  return m_ortho_params;
152  }
153 
154  private:
158  void initialize() override;
159 
160  void terminate();
161 
164 
165  glm::mat4 m_projection_matrix{};
167  ImGuiContext *m_imgui_context{};
168  };
169 
175  public:
177  }
178 
179  void on_window_resize(int width, int height) override;
180 
181  private:
183  };
184 }
185 #endif //GRAPHICSCONTROLLER_HPP
Defines the Camera class for rendering.
Defines the Controller class that serves as the base class for all controllers in the engine.
#define RG_SHOULD_NOT_REACH_HERE(msg,...)
Guarantees that a path should not be reached. If it is reached, an engine::util::EngineError is throw...
Definition: Errors.hpp:176
Defines the PlatformEventObserver class that serves as the interface for platform-specific event obse...
Controllers are a hook into the App main loop execution. By overriding virtual functions of this clas...
Definition: Controller.hpp:41
Camera processes input and calculates the corresponding Euler Angles, Vectors and Matrices for use in...
Definition: Camera.hpp:17
Implements basic drawing methods that the core::App implementation uses.
Definition: GraphicsController.hpp:55
Camera * camera()
Definition: GraphicsController.hpp:87
const PerspectiveMatrixParams & perspective_params() const
Get the current PerspectiveMatrixParams values.
Definition: GraphicsController.hpp:132
const OrthographicMatrixParams & orthographic_params() const
Get the current OrthographicMatrixParams values.
Definition: GraphicsController.hpp:150
glm::mat4 m_projection_matrix
Definition: GraphicsController.hpp:165
glm::mat4 projection_matrix(ProjectionType type=Perspective) const
Compute the projection matrix.
Definition: GraphicsController.hpp:111
void draw_skybox(const resources::Shader *shader, const resources::Skybox *skybox)
Draws a resources::Skybox with the resources::Shader.
Definition: GraphicsController.cpp:73
glm::mat4 projection_matrix() const
Compute the projection matrix.
Definition: GraphicsController.hpp:96
std::string_view name() const override
Definition: GraphicsController.cpp:58
OrthographicMatrixParams m_ortho_params
Definition: GraphicsController.hpp:163
ImGuiContext * m_imgui_context
Definition: GraphicsController.hpp:167
void initialize() override
Initializes OpenGL, ImGUI, and projection matrix params;.
Definition: GraphicsController.cpp:14
OrthographicMatrixParams & orthographic_params()
Use this function to change the orthographic projection matrix parameters. Projection matrix is alway...
Definition: GraphicsController.hpp:142
void begin_gui()
Calls internal methods for the beginning of gui drawing. Should be called in pair with GraphicsContro...
Definition: GraphicsController.cpp:62
void terminate()
Terminate the controller. Executes in the core::App::terminate.
Definition: GraphicsController.cpp:42
Camera m_camera
Definition: GraphicsController.hpp:166
PerspectiveMatrixParams & perspective_params()
Use this function to change the perspective projection matrix parameters. Projection matrix is always...
Definition: GraphicsController.hpp:124
PerspectiveMatrixParams m_perspective_params
Definition: GraphicsController.hpp:162
void end_gui()
Calls internal method for the ending of gui drawing. Should be called in pair with GraphicsController...
Definition: GraphicsController.cpp:68
Observers change in window size in order to update the projection matrix.
Definition: GraphicsController.hpp:174
void on_window_resize(int width, int height) override
Called by engine::platform::PlatformController when the window is resized.
Definition: GraphicsController.cpp:50
GraphicsPlatformEventObserver(GraphicsController *graphics)
Definition: GraphicsController.hpp:176
GraphicsController * m_graphics
Definition: GraphicsController.hpp:182
Platform events callback object. Extend this class and override the methods you want to be called by ...
Definition: PlatformEventObserver.hpp:17
Represents a linked shader program object within the OpenGL context.
Definition: Shader.hpp:32
Represents a skybox object within the OpenGL context.
Definition: Skybox.hpp:17
Definition: Camera.hpp:12
ProjectionType
Definition: GraphicsController.hpp:43
@ Perspective
Definition: GraphicsController.hpp:44
@ Orthographic
Definition: GraphicsController.hpp:45
Definition: GraphicsController.hpp:14
Parameters used to define an orthographic projection matrix.
Definition: GraphicsController.hpp:34
float Right
Definition: GraphicsController.hpp:36
float Far
Definition: GraphicsController.hpp:40
float Near
Definition: GraphicsController.hpp:39
float Left
Definition: GraphicsController.hpp:35
float Top
Definition: GraphicsController.hpp:38
float Bottom
Definition: GraphicsController.hpp:37
Parameters used to define a perspective projection matrix.
Definition: GraphicsController.hpp:23
float FOV
Definition: GraphicsController.hpp:24
float Height
Definition: GraphicsController.hpp:26
float Far
Definition: GraphicsController.hpp:28
float Near
Definition: GraphicsController.hpp:27
float Width
Definition: GraphicsController.hpp:25