6 #ifndef GRAPHICSCONTROLLER_HPP
7 #define GRAPHICSCONTROLLER_HPP
57 std::string_view
name()
const override;
95 template<ProjectionType type = Perspective>
113 case Perspective:
return projection_matrix<Perspective>();
114 case Orthographic:
return projection_matrix<Orthographic>();
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
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
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