TDME2 1.9.121
Camera.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
9#include <tdme/math/Vector3.h>
10
15
16/**
17 * Camera
18 * @author Andreas Drewke
19 * @version $Id$
20 */
22{
23public:
26
27private:
29 Renderer* renderer { nullptr };
30 int32_t width;
31 int32_t height;
32 float fovX;
33 float zNear;
34 float zFar;
47 Frustum* frustum { nullptr };
48
49public:
50 /**
51 * Public constructor
52 * @param renderer renderer
53 */
55
56 /**
57 * Destructor
58 */
59 ~Camera();
60
61 /**
62 * @return width
63 */
64 inline int getWidth() {
65 return width;
66 }
67
68 /**
69 * @return height
70 */
71 inline int getHeight() {
72 return height;
73 }
74
75 /**
76 * @return camera mode
77 */
78 inline CameraMode getCameraMode() const {
79 return cameraMode;
80 }
81
82 /**
83 * Set camera mode
84 * @param camera mode
85 */
87 this->cameraMode = cameraMode;
88 }
89
90 /**
91 * @return frustum mode
92 */
93 inline FrustumMode getFrustumMode() const {
94 return frustumMode;
95 }
96
97 /**
98 * Set frustum mode
99 * @param frustum mode
100 */
102 this->frustumMode = frustumMode;
103 }
104
105 /**
106 * @return orthographic frustum scale
107 */
108 inline float getOrthographicFrustumScale() const {
110 }
111
112 /**
113 * Set orthographic frustum scale
114 * @param orthographicFrustumScale orthographic frustum scale
115 */
117 this->orthographicFrustumScale = orthographicFrustumScale;
118 }
119
120 /**
121 * @return field of view X
122 */
123 inline float getFovX() const {
124 return fovX;
125 }
126
127 /**
128 * Set field of view X
129 * @param fovX field of view X
130 */
131 inline void setFovX(float fovX) {
132 this->fovX = fovX;
133 }
134
135 /**
136 * @return float
137 */
138 inline float getZNear() const {
139 return zNear;
140 }
141
142 /**
143 * Set z near
144 * @param zNear zNear
145 */
146 inline void setZNear(float zNear) {
147 this->zNear = zNear;
148 }
149
150 /**
151 * @return float
152 */
153 inline float getZFar() const {
154 return zFar;
155 }
156
157 /**
158 * Set z far
159 * @param zFar zFar
160 */
161 inline void setZFar(float zFar) {
162 this->zFar = zFar;
163 }
164
165 /**
166 * @return up vector
167 */
168 inline const Vector3& getUpVector() const {
169 return upVector;
170 }
171
172 /**
173 * Set up vector
174 * @param upVector up vector
175 */
176 inline void setUpVector(const Vector3& upVector) {
177 this->upVector = upVector;
178 }
179
180 /**
181 * @return forward vector
182 */
183 inline const Vector3& getForwardVector() const {
184 return forwardVector;
185 }
186
187 /**
188 * Set forward vector
189 * @param forwardVector forward vector
190 */
192 this->forwardVector = forwardVector;
193 }
194
195 /**
196 * @return side vector
197 */
198 inline const Vector3& getSideVector() const {
199 return sideVector;
200 }
201
202 /**
203 * Set side vector
204 * @param sideVector side vector
205 */
206 inline void setSideVector(const Vector3& sideVector) {
207 this->sideVector = sideVector;
208 }
209
210 /**
211 * @return look from vector
212 */
213 inline const Vector3& getLookFrom() const {
214 return lookFrom;
215 }
216
217 /**
218 * Set look from
219 * @param lookFrom look from
220 */
221 inline void setLookFrom(const Vector3& lookFrom) {
222 this->lookFrom = lookFrom;
223 }
224
225 /**
226 * @return look at vector
227 */
228 inline const Vector3& getLookAt() const {
229 return lookAt;
230 }
231
232 /**
233 * Set look at
234 * @param lookAt look at
235 */
236 inline void setLookAt(const Vector3& lookAt) {
237 this->lookAt = lookAt;
238 }
239
240 /**
241 * @return model view matrix or camera matrix
242 */
243 inline const Matrix4x4& getModelViewMatrix() const {
244 return modelViewMatrix;
245 }
246
247 /**
248 * @return projection matrix
249 */
250 inline const Matrix4x4& getProjectionMatrix() const {
251 return projectionMatrix;
252 }
253
254 /**
255 * @return model view projection matrix
256 */
258 return mvpMatrix;
259 }
260
261 /**
262 * @return inverted model view porjection matrix
263 */
265 return mvpInvertedMatrix;
266 }
267
268 /**
269 * @return frustum
270 */
271 inline Frustum* getFrustum() {
272 return frustum;
273 }
274
275 /**
276 * Computes the up vector for given look from and look at vectors
277 * @param lookFrom look from
278 * @param lookAt look at
279 * @return up vector
280 */
281 static Vector3 computeUpVector(const Vector3& lookFrom, const Vector3& lookAt);
282
283 /**
284 * Sets up camera while resizing the view port
285 * @param contextIdx context index
286 * @param width width
287 * @param height height
288 */
289 void update(int contextIdx, int32_t width, int32_t height);
290
291private:
292
293 /**
294 * Computes the projection matrix
295 * @return projection matrix
296 */
298
299 /**
300 * Computes projection matrix for given look from, look at and up vector
301 * @return model view matrix
302 */
304
305};
void setFrustumMode(FrustumMode frustumMode)
Set frustum mode.
Definition: Camera.h:101
const Matrix4x4 & getModelViewProjectionInvertedMatrix() const
Definition: Camera.h:264
Matrix4x4 projectionMatrix
Definition: Camera.h:43
Vector3 upVector
Definition: Camera.h:40
const Vector3 & getForwardVector() const
Definition: Camera.h:183
FrustumMode getFrustumMode() const
Definition: Camera.h:93
Matrix4x4 modelViewMatrix
Definition: Camera.h:44
FrustumMode frustumMode
Definition: Camera.h:36
Vector3 lookFrom
Definition: Camera.h:38
const Vector3 & getLookFrom() const
Definition: Camera.h:213
const Vector3 & getLookAt() const
Definition: Camera.h:228
static STATIC_DLL_IMPEXT Vector3 defaultUp
Definition: Camera.h:28
const Vector3 & getSideVector() const
Definition: Camera.h:198
float getZFar() const
Definition: Camera.h:153
void setSideVector(const Vector3 &sideVector)
Set side vector.
Definition: Camera.h:206
Vector3 sideVector
Definition: Camera.h:42
Vector3 lookAt
Definition: Camera.h:39
Frustum * frustum
Definition: Camera.h:47
int32_t height
Definition: Camera.h:31
float getOrthographicFrustumScale() const
Definition: Camera.h:108
void update(int contextIdx, int32_t width, int32_t height)
Sets up camera while resizing the view port.
Definition: Camera.cpp:154
Camera(Renderer *renderer)
Public constructor.
Definition: Camera.cpp:19
Matrix4x4 mvpInvertedMatrix
Definition: Camera.h:46
void setFovX(float fovX)
Set field of view X.
Definition: Camera.h:131
const Matrix4x4 & getProjectionMatrix() const
Definition: Camera.h:250
Frustum * getFrustum()
Definition: Camera.h:271
void setUpVector(const Vector3 &upVector)
Set up vector.
Definition: Camera.h:176
Matrix4x4 & computeModelViewMatrix()
Computes projection matrix for given look from, look at and up vector.
Definition: Camera.cpp:118
void setCameraMode(CameraMode cameraMode)
Set camera mode.
Definition: Camera.h:86
void setLookFrom(const Vector3 &lookFrom)
Set look from.
Definition: Camera.h:221
void setOrthographicFrustumScale(float orthographicFrustumScale)
Set orthographic frustum scale.
Definition: Camera.h:116
const Vector3 & getUpVector() const
Definition: Camera.h:168
CameraMode getCameraMode() const
Definition: Camera.h:78
Matrix4x4 mvpMatrix
Definition: Camera.h:45
float getFovX() const
Definition: Camera.h:123
void setForwardVector(const Vector3 &forwardVector)
Set forward vector.
Definition: Camera.h:191
~Camera()
Destructor.
Definition: Camera.cpp:38
static Vector3 computeUpVector(const Vector3 &lookFrom, const Vector3 &lookAt)
Computes the up vector for given look from and look at vectors.
Definition: Camera.cpp:44
void setZNear(float zNear)
Set z near.
Definition: Camera.h:146
float orthographicFrustumScale
Definition: Camera.h:37
Vector3 forwardVector
Definition: Camera.h:41
@ FRUSTUMMODE_ORTHOGRAPHIC
Definition: Camera.h:24
Matrix4x4 & computeProjectionMatrix()
Computes the projection matrix.
Definition: Camera.cpp:58
const Matrix4x4 & getModelViewMatrix() const
Definition: Camera.h:243
void setLookAt(const Vector3 &lookAt)
Set look at.
Definition: Camera.h:236
Renderer * renderer
Definition: Camera.h:29
void setZFar(float zFar)
Set z far.
Definition: Camera.h:161
float getZNear() const
Definition: Camera.h:138
CameraMode cameraMode
Definition: Camera.h:35
const Matrix4x4 & getModelViewProjectionMatrix() const
Definition: Camera.h:257
Frustum class.
Definition: Frustum.h:30
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11