TDME2 1.9.121
ShadowMapRenderShader.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <unordered_map>
5#include <vector>
6
7#include <tdme/tdme.h>
13#include <tdme/engine/Engine.h>
14#include <tdme/engine/Timing.h>
15#include <tdme/math/Matrix4x4.h>
17
18using std::string;
19using std::unordered_map;
20using std::vector;
21
32
33ShadowMapRenderShader::ShadowMapRenderShader(Renderer* renderer): renderer(renderer)
34{
39 contexts.resize(threadCount);
40}
41
43{
44 for (auto shaderIt: shader) {
45 delete shaderIt.second;
46 }
47}
48
50{
51 bool initialized = true;
52 for (auto shaderIt: shader) {
53 initialized&= shaderIt.second->isInitialized();
54 }
55 return initialized;
56}
57
59{
60 for (auto shaderIt: shader) {
61 shaderIt.second->initialize();
62 }
63}
64
66{
67 running = true;
68 this->engine = engine;
69}
70
72{
73 running = false;
74 auto i = 0;
75 for (auto& shadowMappingShaderRenderContext: contexts) {
76 if (shadowMappingShaderRenderContext.implementation != nullptr) {
77 shadowMappingShaderRenderContext.implementation->unUseProgram(i);
78 }
79 shadowMappingShaderRenderContext.implementation = nullptr;
80 i++;
81 }
82 engine = nullptr;
83}
84
86{
87 auto& shadowMappingShaderRenderContext = contexts[contextIdx];
88 if (shadowMappingShaderRenderContext.implementation == nullptr) return;
89 shadowMappingShaderRenderContext.implementation->updateMatrices(contextIdx);
90}
91
93 auto& shadowMappingShaderRenderContext = contexts[contextIdx];
94 if (shadowMappingShaderRenderContext.implementation == nullptr) return;
95 shadowMappingShaderRenderContext.implementation->updateTextureMatrix(renderer, contextIdx);
96}
97
99{
100 auto& shadowMappingShaderRenderContext = contexts[contextIdx];
101 if (shadowMappingShaderRenderContext.implementation == nullptr) return;
102 shadowMappingShaderRenderContext.implementation->updateMaterial(renderer, contextIdx);
103}
104
105void ShadowMapRenderShader::updateLight(int contextIdx, int32_t lightId) {
106 auto& shadowMappingShaderRenderContext = contexts[contextIdx];
107 if (shadowMappingShaderRenderContext.implementation == nullptr) return;
108 shadowMappingShaderRenderContext.implementation->updateLight(renderer, contextIdx, lightId);
109}
110
112 auto& shadowMappingShaderRenderContext = contexts[contextIdx];
113 if (shadowMappingShaderRenderContext.implementation == nullptr) return;
114 shadowMappingShaderRenderContext.implementation->updateShaderParameters(renderer, contextIdx);
115}
116
117void ShadowMapRenderShader::bindTexture(int contextIdx, int32_t textureId)
118{
119 auto& shadowMappingShaderRenderContext = contexts[contextIdx];
120 if (shadowMappingShaderRenderContext.implementation == nullptr) return;
121 shadowMappingShaderRenderContext.implementation->bindTexture(renderer, contextIdx, textureId);
122}
123
124void ShadowMapRenderShader::setDepthBiasMVPMatrix(int contextIdx, const Matrix4x4& depthBiasMVPMatrix)
125{
126 this->depthBiasMVPMatrix = depthBiasMVPMatrix;
127 auto& shadowMappingShaderRenderContext = contexts[contextIdx];
128 if (shadowMappingShaderRenderContext.implementation == nullptr) return;
129 shadowMappingShaderRenderContext.implementation->setDepthBiasMVPMatrix(contextIdx, this->depthBiasMVPMatrix);
130}
131
133 this->lightId = lightId;
134}
135
136void ShadowMapRenderShader::setShader(int contextIdx, const string& id) {
137 // TODO: find a better solution for removing PBR- lighing prefix
138 string shaderId;
139 if (StringTools::startsWith(id, string("pbr-")) == true) {
140 shaderId = StringTools::substring(id, 4);
141 } else {
142 shaderId = id;
143 }
144
145 //
146 auto& shadowMappingShaderRenderContext = contexts[contextIdx];
147 auto currentImplementation = shadowMappingShaderRenderContext.implementation;
148 auto shaderIt = shader.find(shaderId);
149 if (shaderIt == shader.end()) {
150 shaderIt = shader.find("default");
151 }
152 auto nextImplementation = shaderIt->second;
153 if (currentImplementation != nextImplementation) {
154 if (currentImplementation != nullptr) currentImplementation->unUseProgram(contextIdx);
155 shadowMappingShaderRenderContext.implementation = nextImplementation;
156 shadowMappingShaderRenderContext.implementation->useProgram(engine, contextIdx);
157 }
158
159 shadowMappingShaderRenderContext.implementation->setDepthBiasMVPMatrix(contextIdx, depthBiasMVPMatrix);
160 shadowMappingShaderRenderContext.implementation->setRenderLightId(lightId);
161}
Engine main class.
Definition: Engine.h:122
static int getThreadCount()
Definition: Engine.h:579
Timing class.
Definition: Timing.h:17
void initialize()
Initialize shadow map render shader program.
void updateLight(int contextIdx, int32_t lightId)
Update light.
void setDepthBiasMVPMatrix(int contextIdx, const Matrix4x4 &depthBiasMVPMatrix)
Set up program depth bias mvp matrix.
void useProgram(Engine *engine)
Use shadow map render shader program.
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 bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void unUseProgram()
Unuse shadow map render shader program.
unordered_map< string, ShadowMapRenderShaderImplementation * > shader
4x4 3D Matrix class
Definition: Matrix4x4.h:24
String tools class.
Definition: StringTools.h:20