MyGL
Loading...
Searching...
No Matches
Camera.hpp
1#ifndef MYGL_CAMERA
2#define MYGL_CAMERA
3
4#include "mygl_export.h"
5
6#include <glm/glm.hpp>
7#include <glm/gtc/matrix_transform.hpp>
8
9namespace my
10{
14 class Camera
15 {
16 private:
17 glm::vec3 m_position;
18 glm::vec3 m_front;
19 glm::vec3 m_up;
20 float m_speed;
21 // float m_roll; TODO
22
23 public:
28 MYGL_EXPORT Camera() noexcept;
29
35 MYGL_EXPORT Camera(int x, int y) noexcept;
36
42 MYGL_EXPORT void setPosition(int x, int y) noexcept;
43
48 MYGL_EXPORT glm::vec2 getPosition() const noexcept;
49
55 MYGL_EXPORT void setSpeed(float speed) noexcept;
56
61 MYGL_EXPORT float getSpeed() const noexcept;
62
103 MYGL_EXPORT void moveUp(float frametime) noexcept;
104
108 MYGL_EXPORT void moveDown(float frametime) noexcept;
109
113 MYGL_EXPORT void moveLeft(float frametime) noexcept;
114
118 MYGL_EXPORT void moveRight(float frametime) noexcept;
119
122 // void rotate(float angle); TODO
123 // void setRotation(float angle); TODO
124 // float getRotation() const; TODO
125
131 MYGL_EXPORT glm::mat4 lookAt() const;
132 };
133
134} // namespace my
135
136#endif // MYGL_CAMERA
Class used to manipulate a 2D camera.
Definition Camera.hpp:15
MYGL_EXPORT void moveUp(float frametime) noexcept
Moves the camera upwards.
MYGL_EXPORT float getSpeed() const noexcept
Get the camera's speed.
MYGL_EXPORT Camera() noexcept
Default constructor, creates a camera pointing to the center of the window.
MYGL_EXPORT void moveRight(float frametime) noexcept
Moves the camera to the right.
MYGL_EXPORT glm::vec2 getPosition() const noexcept
Get the camera's current position.
MYGL_EXPORT void setPosition(int x, int y) noexcept
Sets the camera's position.
MYGL_EXPORT void moveDown(float frametime) noexcept
Moves the camera downwards.
MYGL_EXPORT void setSpeed(float speed) noexcept
Sets the camera's speed, in pixels per second.
MYGL_EXPORT void moveLeft(float frametime) noexcept
Moves the camera to the left.
MYGL_EXPORT glm::mat4 lookAt() const
Returns the camera's "look_at" matrix, it is used internally by a Window to set its view when drawing...
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10