TDME2 1.9.121
Camera.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
6#include <tdme/math/Math.h>
8#include <tdme/math/Vector3.h>
10
18
19Camera::Camera(Renderer* renderer)
20{
21 this->renderer = renderer;
22 width = 0;
23 height = 0;
24 fovX = 45.0f;
25 zNear = 0.1f;
26 zFar = 150.0f;
30 upVector.set(0.0f, 1.0f, 0.0f);
31 forwardVector.set(0.0f, 0.0f, 1.0f);
32 sideVector.set(1.0f, 0.0f, 0.0f);
33 lookFrom.set(0.0f, 50.0f, 400.0f);
34 lookAt.set(0.0f, 50.0f, 0.0f);
36}
37
39 delete frustum;
40}
41
42Vector3 Camera::defaultUp(0.0f, 1.0f, 0.0f);
43
44Vector3 Camera::computeUpVector(const Vector3& lookFrom, const Vector3& lookAt)
45{
46 Vector3 tmpForward;
47 Vector3 tmpUpVector;
48 tmpForward.set(lookAt).sub(lookFrom).normalize();
49 if (Math::abs(tmpForward.getX()) < Math::EPSILON && Math::abs(tmpForward.getZ()) < Math::EPSILON) {
50 tmpUpVector.set(0.0f, 0.0f, tmpForward.getY()).normalize();
51 return tmpUpVector;
52 }
53 auto tmpSide = Vector3::computeCrossProduct(tmpForward, defaultUp).normalize();
54 tmpUpVector = Vector3::computeCrossProduct(tmpSide, tmpForward).normalize();
55 return tmpUpVector;
56}
57
59{
60 // see: see http://www.songho.ca/opengl/gl_transform.html
61 switch(frustumMode) {
63 {
64 auto leftPlane = (-width / 2.0f) * orthographicFrustumScale;
65 auto rightPlane = (width / 2.0f) * orthographicFrustumScale;
66 auto topPlane = (height / 2.0f) * orthographicFrustumScale;
67 auto bottomPlane = (-height / 2.0f) * orthographicFrustumScale;
68 auto nearPlane = zNear;
69 auto farPlane = zFar;
70 return projectionMatrix.set(
71 2.0f / (rightPlane - leftPlane),
72 0.0f,
73 0.0f,
74 0.0f,
75 0.0f,
76 2.0f / (topPlane - bottomPlane),
77 0.0f,
78 0.0f,
79 0.0f,
80 0.0f,
81 -2.0f / (farPlane - nearPlane),
82 0.0f,
83 -(rightPlane + leftPlane) / (rightPlane - leftPlane),
84 -(topPlane + bottomPlane) / (topPlane - bottomPlane),
85 -(farPlane + nearPlane) / (farPlane - nearPlane),
86 1.0f
87 );
88 }
89 default:
90 {
91 // see: https://github.com/g-truc/glm
92 auto aspect = static_cast<float>(this->height) / static_cast<float>(this->width);
93 auto rad = fovX * 3.1415927f / 180.0f;
94 auto _height = Math::cos(0.5f * rad) / Math::sin(0.5 * rad);
95 auto _width = _height * aspect;
96 return projectionMatrix.set(
97 _width,
98 0.0f,
99 0.0f,
100 0.0f,
101 0.0f,
102 _height,
103 0.0f,
104 0.0f,
105 0.0f,
106 0.0f,
107 -(zFar + zNear) / (zFar - zNear),
108 -1.0f,
109 0.0f,
110 0.0f,
111 -(2.0f * zFar * zNear) / (zFar - zNear),
112 1.0f
113 );
114 }
115 }
116}
117
119{
120 Vector3 tmpUp = upVector;
123 sideVector = Vector3::computeCrossProduct(forwardVector, upVector).normalize();
124 tmpUp = Vector3::computeCrossProduct(sideVector, forwardVector);
125 }
127 identity().
128 translate(
129 lookFrom.clone().scale(-1.0f)
130 ).
131 multiply(
132 Matrix4x4(
133 sideVector[0],
134 tmpUp[0],
135 -forwardVector[0],
136 0.0f,
137 sideVector[1],
138 tmpUp[1],
139 -forwardVector[1],
140 0.0f,
141 sideVector[2],
142 tmpUp[2],
143 -forwardVector[2],
144 0.0f,
145 0.0f,
146 0.0f,
147 0.0f,
148 1.0f
149 )
150 );
151 return modelViewMatrix;
152}
153
154void Camera::update(int contextIdx, int32_t width, int32_t height)
155{
156 auto reshaped = false;
157 auto _width = width;
158 auto _height = height;
159 if (this->width != _width || this->height != _height) {
160 reshaped = true;
161 if (_height <= 0)
162 _height = 1;
163
164 this->width = _width;
165 this->height = _height;
167 _width / 2.0f,
168 0.0f,
169 0.0f,
170 0.0f,
171 0.0f,
172 _height / 2.0f,
173 0.0f,
174 0.0f,
175 0.0f,
176 0.0f,
177 1.0f,
178 0.0f,
179 0 + (_width / 2.0f),
180 0 + (_height / 2.0f),
181 0.0f,
182 1.0f
183 );
184 }
185
186 // setup projection and model view matrices and such
193 renderer->onUpdateCameraMatrix(contextIdx);
194
195 //
198
199 // viewport
202}
Matrix4x4 projectionMatrix
Definition: Camera.h:43
Vector3 upVector
Definition: Camera.h:40
Matrix4x4 modelViewMatrix
Definition: Camera.h:44
FrustumMode frustumMode
Definition: Camera.h:36
Vector3 lookFrom
Definition: Camera.h:38
static STATIC_DLL_IMPEXT Vector3 defaultUp
Definition: Camera.h:28
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
void update(int contextIdx, int32_t width, int32_t height)
Sets up camera while resizing the view port.
Definition: Camera.cpp:154
Matrix4x4 mvpInvertedMatrix
Definition: Camera.h:46
Matrix4x4 & computeModelViewMatrix()
Computes projection matrix for given look from, look at and up vector.
Definition: Camera.cpp:118
Matrix4x4 mvpMatrix
Definition: Camera.h:45
~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
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
Renderer * renderer
Definition: Camera.h:29
CameraMode cameraMode
Definition: Camera.h:35
Frustum class.
Definition: Frustum.h:30
virtual void onUpdateProjectionMatrix(int contextIdx)=0
Update projection matrix event.
virtual void setViewPort(int32_t width, int32_t height)=0
Set up viewport parameter.
virtual void onUpdateCameraMatrix(int contextIdx)=0
Update camera matrix event.
virtual void updateViewPort()=0
Update viewport.
virtual void onUpdateModelViewMatrix(int contextIdx)=0
Update model view matrix event.
Standard math functions.
Definition: Math.h:21
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Matrix4x4 & set(float r0c0, float r1c0, float r2c0, float r3c0, float r0c1, float r1c1, float r2c1, float r3c1, float r0c2, float r1c2, float r2c2, float r3c2, float r0c3, float r1c3, float r2c3, float r3c3)
Set up matrix by values.
Definition: Matrix4x4.h:95
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Definition: Matrix4x4.h:351
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & normalize()
Normalize the vector.
Definition: Vector3.h:288
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 clone() const
Clones the vector.
Definition: Vector3.h:372
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Vector3 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349
Console class.
Definition: Console.h:26