TDME2 1.9.121
ShadowMapping.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include <tdme/tdme.h>
10#include <tdme/math/fwd-tdme.h>
11#include <tdme/math/Matrix4x4.h>
13
14using std::vector;
15
23
24/**
25 * Shadow mapping module
26 * @author Andreas Drewke
27 * @version $Id$
28 */
30{
32 friend class ShadowMap;
33
34private:
36
37 Renderer* renderer { nullptr };
39
42
43 Engine* engine { nullptr };
44
45 vector<ShadowMap*> shadowMaps;
47
49
50public:
51 /**
52 * Constructor
53 * @param engine engine
54 * @param renderer renderer
55 * @param entityRenderer entityRenderer
56 */
58
59 /**
60 * Destructor
61 */
63
64 /**
65 * @return engine
66 */
68
69 /**
70 * Reshape shadow maps
71 * @param width width
72 * @param height height
73 */
74 void reshape(int32_t width, int32_t height);
75
76 /**
77 * Get shadow map
78 * @param idx index
79 * @return shadow map
80 */
81 ShadowMap* getShadowMap(int idx);
82
83 /**
84 * Create shadow maps
85 */
86 void createShadowMaps();
87
88 /**
89 * Render shadow maps to world
90 * @param visibleObjects visible objects
91 */
92 void renderShadowMaps(const vector<Object3D*>& visibleObjects);
93
94 /**
95 * Dispose shadow maps
96 */
97 void dispose();
98
99 /**
100 * Start object transformations
101 * @param contextIdx context index
102 * @param transformationsMatrix transformations matrix
103 */
104 void startObjectTransformations(int contextIdx, Matrix4x4& transformationsMatrix);
105
106 /**
107 * End object transformations
108 */
110
111 /**
112 * Update matrices
113 * @param contextIdx context index
114 */
115 void updateMatrices(int contextIdx);
116
117 /**
118 * Update texture matrix
119 * @param contextIdx context index
120 */
121 void updateTextureMatrix(int contextIdx);
122
123 /**
124 * Update material
125 * @param contextIdx context index
126 */
127 void updateMaterial(int contextIdx);
128
129 /**
130 * Set shader
131 * @param contextIdx context index
132 * @param id shader id
133 */
134 void setShader(int contextIdx, const string& id);
135
136 /**
137 * Update light
138 * @param lightId light id
139 */
140 void updateLight(int contextIdx, int32_t lightId);
141
142 /**
143 * Update shader parameters
144 * @param context
145 */
146 void updateShaderParameters(int contextIdx);
147
148 /**
149 * Bind texture
150 * @param textureId texture id
151 */
152 void bindTexture(int contextIdx, int32_t textureId);
153
154 /**
155 * Update depth bias mvp matrix with given matrix
156 * @param contextIdx context index
157 * @param depthBiasMVPMatrix depth bias MVP matrix
158 */
160
161 /**
162 * Update depth bias mvp matrix / upload only
163 * @param contextIdx context index
164 */
165 void updateDepthBiasMVPMatrix(int contextIdx);
166
167};
Engine main class.
Definition: Engine.h:122
void updateDepthBiasMVPMatrix(int contextIdx, Matrix4x4 &depthBiasMVPMatrix)
Update depth bias mvp matrix with given matrix.
void reshape(int32_t width, int32_t height)
Reshape shadow maps.
void updateLight(int contextIdx, int32_t lightId)
Update light.
void updateMatrices(int contextIdx)
Update matrices.
void renderShadowMaps(const vector< Object3D * > &visibleObjects)
Render shadow maps to world.
ShadowMap * getShadowMap(int idx)
Get shadow map.
void setShader(int contextIdx, const string &id)
Set shader.
void startObjectTransformations(int contextIdx, Matrix4x4 &transformationsMatrix)
Start object transformations.
ShadowMapping(Engine *engine, Renderer *renderer, EntityRenderer *entityRenderer)
Constructor.
void updateTextureMatrix(int contextIdx)
Update texture matrix.
void updateShaderParameters(int contextIdx)
Update shader parameters.
void updateMaterial(int contextIdx)
Update material.
void endObjectTransformations()
End object transformations.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
3D vector 4 class
Definition: Vector4.h:19