TDME2 1.9.121
|
Shadow mapping module. More...
#include <tdme/engine/subsystems/shadowmapping/ShadowMapping.h>
Public Member Functions | |
ShadowMapping (Engine *engine, Renderer *renderer, EntityRenderer *entityRenderer) | |
Constructor. More... | |
~ShadowMapping () | |
Destructor. More... | |
Engine * | getEngine () |
void | reshape (int32_t width, int32_t height) |
Reshape shadow maps. More... | |
ShadowMap * | getShadowMap (int idx) |
Get shadow map. More... | |
void | createShadowMaps () |
Create shadow maps. More... | |
void | renderShadowMaps (const vector< Object3D * > &visibleObjects) |
Render shadow maps to world. More... | |
void | dispose () |
Dispose shadow maps. More... | |
void | startObjectTransformations (int contextIdx, Matrix4x4 &transformationsMatrix) |
Start object transformations. More... | |
void | endObjectTransformations () |
End object transformations. More... | |
void | updateMatrices (int contextIdx) |
Update matrices. More... | |
void | updateTextureMatrix (int contextIdx) |
Update texture matrix. More... | |
void | updateMaterial (int contextIdx) |
Update material. More... | |
void | setShader (int contextIdx, const string &id) |
Set shader. More... | |
void | updateLight (int contextIdx, int32_t lightId) |
Update light. More... | |
void | updateShaderParameters (int contextIdx) |
Update shader parameters. More... | |
void | bindTexture (int contextIdx, int32_t textureId) |
Bind texture. More... | |
void | updateDepthBiasMVPMatrix (int contextIdx, Matrix4x4 &depthBiasMVPMatrix) |
Update depth bias mvp matrix with given matrix. More... | |
void | updateDepthBiasMVPMatrix (int contextIdx) |
Update depth bias mvp matrix / upload only. More... | |
Private Types | |
enum | ShadowMapping_RunState { NONE , CREATE , RENDER } |
Private Attributes | |
Renderer * | renderer { nullptr } |
EntityRenderer * | entityRenderer { nullptr } |
Matrix4x4 | shadowTransformationsMatrix |
Matrix4x4 | depthBiasMVPMatrix |
Engine * | engine { nullptr } |
vector< ShadowMap * > | shadowMaps |
ShadowMapping_RunState | runState { NONE } |
vector< Object3D * > | visibleObjectsReceivingShadows |
Friends | |
class | tdme::engine::Engine |
class | ShadowMap |
|
private |
Enumerator | |
---|---|
NONE | |
CREATE | |
RENDER |
Definition at line 35 of file ShadowMapping.h.
ShadowMapping | ( | Engine * | engine, |
Renderer * | renderer, | ||
EntityRenderer * | entityRenderer | ||
) |
Constructor.
engine | engine |
renderer | renderer |
entityRenderer | entityRenderer |
Definition at line 38 of file ShadowMapping.cpp.
~ShadowMapping | ( | ) |
Destructor.
Definition at line 51 of file ShadowMapping.cpp.
void bindTexture | ( | int | contextIdx, |
int32_t | textureId | ||
) |
void createShadowMaps | ( | ) |
Create shadow maps.
Definition at line 66 of file ShadowMapping.cpp.
void dispose | ( | ) |
Dispose shadow maps.
Definition at line 196 of file ShadowMapping.cpp.
void endObjectTransformations | ( | ) |
End object transformations.
Definition at line 224 of file ShadowMapping.cpp.
Engine * getEngine | ( | ) |
Definition at line 57 of file ShadowMapping.cpp.
ShadowMap * getShadowMap | ( | int | idx | ) |
Get shadow map.
idx | index |
Definition at line 105 of file ShadowMapping.cpp.
void renderShadowMaps | ( | const vector< Object3D * > & | visibleObjects | ) |
Render shadow maps to world.
visibleObjects | visible objects |
Definition at line 109 of file ShadowMapping.cpp.
void reshape | ( | int32_t | width, |
int32_t | height | ||
) |
Reshape shadow maps.
width | width |
height | height |
Definition at line 62 of file ShadowMapping.cpp.
void setShader | ( | int | contextIdx, |
const string & | id | ||
) |
Set shader.
contextIdx | context index |
id | shader id |
Definition at line 326 of file ShadowMapping.cpp.
void startObjectTransformations | ( | int | contextIdx, |
Matrix4x4 & | transformationsMatrix | ||
) |
Start object transformations.
contextIdx | context index |
transformationsMatrix | transformations matrix |
Definition at line 208 of file ShadowMapping.cpp.
void updateDepthBiasMVPMatrix | ( | int | contextIdx | ) |
Update depth bias mvp matrix / upload only.
contextIdx | context index |
Definition at line 317 of file ShadowMapping.cpp.
void updateDepthBiasMVPMatrix | ( | int | contextIdx, |
Matrix4x4 & | depthBiasMVPMatrix | ||
) |
Update depth bias mvp matrix with given matrix.
contextIdx | context index |
depthBiasMVPMatrix | depth bias MVP matrix |
Definition at line 306 of file ShadowMapping.cpp.
void updateLight | ( | int | contextIdx, |
int32_t | lightId | ||
) |
void updateMaterial | ( | int | contextIdx | ) |
Update material.
contextIdx | context index |
Definition at line 266 of file ShadowMapping.cpp.
void updateMatrices | ( | int | contextIdx | ) |
Update matrices.
contextIdx | context index |
Definition at line 249 of file ShadowMapping.cpp.
void updateShaderParameters | ( | int | contextIdx | ) |
void updateTextureMatrix | ( | int | contextIdx | ) |
Update texture matrix.
contextIdx | context index |
Definition at line 232 of file ShadowMapping.cpp.
|
friend |
Definition at line 32 of file ShadowMapping.h.
|
friend |
Definition at line 31 of file ShadowMapping.h.
|
private |
Definition at line 41 of file ShadowMapping.h.
|
private |
Definition at line 43 of file ShadowMapping.h.
|
private |
Definition at line 38 of file ShadowMapping.h.
|
private |
Definition at line 37 of file ShadowMapping.h.
|
private |
Definition at line 46 of file ShadowMapping.h.
|
private |
Definition at line 45 of file ShadowMapping.h.
|
private |
Definition at line 40 of file ShadowMapping.h.
|
private |
Definition at line 48 of file ShadowMapping.h.