28using tdme::engine::subsystems::shadowmapping::ShadowMapping_RunState;
48 runState = ShadowMapping_RunState::NONE;
68 runState = ShadowMapping_RunState::CREATE;
76 if (light->isEnabled() ==
true &&
77 light->getSpotDirection().computeLengthSquared() > Math::square(Math::EPSILON)) {
81 shadowMap->initialize();
102 runState = ShadowMapping_RunState::NONE;
112 for (
auto object: visibleObjects) {
113 if (object->isReceivesShadows() ==
false)
continue;
120 runState = ShadowMapping_RunState::RENDER;
126 shader->useProgram(
engine);
130 for (
auto i = 0; i <
shadowMaps.size(); i++) {
137 shader->setRenderLightId(i);
140 for (
auto j = 0; j < contextCount; j++) {
144 shadowMap->updateDepthBiasMVPMatrix(contextIdx);
149 shadowMap->bindDepthBufferTexture(contextIdx);
161 EntityRenderer::RENDERTYPE_NORMALS |
162 EntityRenderer::RENDERTYPE_TEXTUREARRAYS_DIFFUSEMASKEDTRANSPARENCY |
163 EntityRenderer::RENDERTYPE_TEXTURES_DIFFUSEMASKEDTRANSPARENCY |
164 EntityRenderer::RENDERTYPE_SHADOWMAPPING
173 shader->unUseProgram();
176 for (
auto j = 0; j < contextCount; j++) {
193 runState = ShadowMapping_RunState::NONE;
199 for (
auto i = 0; i <
shadowMaps.size(); i++) {
210 if (
runState != ShadowMapping_RunState::RENDER)
226 if (
runState != ShadowMapping_RunState::RENDER)
234 if (
runState == ShadowMapping_RunState::NONE)
return;
238 case ShadowMapping_RunState::CREATE:
241 case ShadowMapping_RunState::RENDER:
245 Console::println(
string(
"ShadowMapping::updateTextureMatrix(): unsupported run state '" + to_string(
runState)));
251 if (
runState == ShadowMapping_RunState::NONE)
return;
255 case ShadowMapping_RunState::CREATE:
258 case ShadowMapping_RunState::RENDER:
262 Console::println(
string(
"ShadowMapping::updateMatrices(): unsupported run state '" + to_string(
runState)));
267 if (
runState == ShadowMapping_RunState::NONE)
272 case ShadowMapping_RunState::CREATE:
275 case ShadowMapping_RunState::RENDER:
279 Console::println(
string(
"ShadowMapping::updateMaterial(): unsupported run state '" + to_string(
runState)));
284 if (
runState == ShadowMapping_RunState::RENDER) {
290 if (
runState == ShadowMapping_RunState::NONE)
295 case ShadowMapping_RunState::CREATE:
298 case ShadowMapping_RunState::RENDER:
302 Console::println(
string(
"ShadowMapping::bindTexture(): unsupported run state '" + to_string(
runState)));
308 if (
runState != ShadowMapping_RunState::RENDER)
319 if (
runState != ShadowMapping_RunState::RENDER)
327 if (
runState == ShadowMapping_RunState::NONE)
332 case ShadowMapping_RunState::CREATE:
335 case ShadowMapping_RunState::RENDER:
339 Console::println(
string(
"ShadowMapping::setShader(): unsupported run state '" + to_string(
runState)));
344 if (
runState == ShadowMapping_RunState::NONE)
349 case ShadowMapping_RunState::CREATE:
352 case ShadowMapping_RunState::RENDER:
356 Console::println(
string(
"ShadowMapping::updateShaderParameters(): unsupported run state '" + to_string(
runState)));
static ShadowMapRenderShader * getShadowMapRenderShader()
Light * getLightAt(int32_t idx)
Returns light at idx (0 <= idx < 8)
static int32_t getShadowMapWidth()
static ShadowMapCreationShader * getShadowMapCreationShader()
static int32_t getShadowMapHeight()
static int getThreadCount()
static constexpr int RENDERPASS_MAX
virtual void setTextureUnit(int contextIdx, int32_t textureUnit)=0
Sets up texture unit.
virtual bool isSupportingMultithreadedRendering()=0
virtual void enableDepthBufferWriting()=0
Enable depth buffer writing.
virtual void setCullFace(int32_t cullFace)=0
Sets up which face will be culled.
virtual int32_t getTextureUnit(int contextIdx)=0
Get texture unit.
virtual void enableBlending()=0
Enables blending.
virtual void disableBlending()=0
Disables blending.
virtual void setColorMask(bool red, bool green, bool blue, bool alpha)=0
Set up GL rendering colormask.
virtual void bindTexture(int contextIdx, int32_t textureId)=0
Binds a texture with given id or unbinds when using ID_NONE.
virtual void disableDepthBufferWriting()=0
Disable depth buffer writing.
void render(Entity::RenderPass renderPass, const vector< Object3D * > &objects, bool renderTransparentFaces, int32_t renderTypes)
Renders all given objects.
Shadow mapping shader to create a shadow map.
void updateMatrices(int contextIdx)
Set up matrices.
void useProgram(Engine *engine)
Use shadow map creation shader program.
void setShader(int contextIdx, const string &id)
Set shader.
void updateTextureMatrix(int contextIdx)
Set up texture matrix.
void updateShaderParameters(int contextIdx)
Update shader parameters.
void updateMaterial(int contextIdx)
Update material.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void unUseProgram()
Unuse shadow map creation shader program.
Shadow mapping shader to render shadow maps.
void updateLight(int contextIdx, int32_t lightId)
Update light.
void updateMatrices(int contextIdx)
Update matrices.
void setDepthBiasMVPMatrix(int contextIdx, const Matrix4x4 &depthBiasMVPMatrix)
Set up program depth bias mvp matrix.
void setShader(int contextIdx, const string &id)
Set shader.
void updateTextureMatrix(int contextIdx)
Update up texture matrix.
void updateShaderParameters(int contextIdx)
Update shader parameters.
void updateMaterial(int contextIdx)
Update material.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
static constexpr int32_t TEXTUREUNIT
void updateDepthBiasMVPMatrix(int contextIdx, Matrix4x4 &depthBiasMVPMatrix)
Update depth bias mvp matrix with given matrix.
vector< ShadowMap * > shadowMaps
void reshape(int32_t width, int32_t height)
Reshape shadow maps.
ShadowMapping_RunState runState
void updateLight(int contextIdx, int32_t lightId)
Update light.
void updateMatrices(int contextIdx)
Update matrices.
~ShadowMapping()
Destructor.
Matrix4x4 depthBiasMVPMatrix
void createShadowMaps()
Create shadow maps.
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.
EntityRenderer * entityRenderer
void startObjectTransformations(int contextIdx, Matrix4x4 &transformationsMatrix)
Start object transformations.
void updateTextureMatrix(int contextIdx)
Update texture matrix.
vector< Object3D * > visibleObjectsReceivingShadows
void updateShaderParameters(int contextIdx)
Update shader parameters.
void dispose()
Dispose shadow maps.
void updateMaterial(int contextIdx)
Update material.
void endObjectTransformations()
End object transformations.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
Matrix4x4 shadowTransformationsMatrix
Matrix4x4 & identity()
Setup identity matrix.
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.
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.