4#include <unordered_map>
18using std::unordered_map;
32ShadowMapCreationShader::ShadowMapCreationShader(
Renderer* renderer): renderer(renderer)
42 for (
auto shaderIt:
shader) {
43 delete shaderIt.second;
49 bool initialized =
true;
50 for (
auto shaderIt:
shader) {
51 initialized&= shaderIt.second->isInitialized();
58 for (
auto shaderIt:
shader) {
59 shaderIt.second->initialize();
73 for (
auto& shadowMappingShaderPreContext:
contexts) {
74 if (shadowMappingShaderPreContext.implementation !=
nullptr) {
75 shadowMappingShaderPreContext.implementation->unUseProgram(i);
77 shadowMappingShaderPreContext.implementation =
nullptr;
85 auto& shadowMappingShaderPreContext =
contexts[contextIdx];
86 if (shadowMappingShaderPreContext.implementation ==
nullptr)
return;
87 shadowMappingShaderPreContext.implementation->updateMatrices(contextIdx);
91 auto& shadowMappingShaderPreContext =
contexts[contextIdx];
92 if (shadowMappingShaderPreContext.implementation ==
nullptr)
return;
93 shadowMappingShaderPreContext.implementation->updateTextureMatrix(
renderer, contextIdx);
98 auto& shadowMappingShaderPreContext =
contexts[contextIdx];
99 if (shadowMappingShaderPreContext.implementation ==
nullptr)
return;
100 shadowMappingShaderPreContext.implementation->updateMaterial(
renderer, contextIdx);
104 auto& shadowMappingShaderPreContext =
contexts[contextIdx];
105 if (shadowMappingShaderPreContext.implementation ==
nullptr)
return;
106 shadowMappingShaderPreContext.implementation->updateShaderParameters(
renderer, contextIdx);
111 auto& shadowMappingShaderPreContext =
contexts[contextIdx];
112 if (shadowMappingShaderPreContext.implementation ==
nullptr)
return;
113 shadowMappingShaderPreContext.implementation->bindTexture(
renderer, contextIdx, textureId);
119 if (StringTools::startsWith(
id,
string(
"pbr-")) ==
true) {
120 shaderId = StringTools::substring(
id, 4);
126 auto& shadowMappingShaderPreContext =
contexts[contextIdx];
127 auto currentImplementation = shadowMappingShaderPreContext.implementation;
128 auto shaderIt =
shader.find(shaderId);
129 if (shaderIt ==
shader.end()) {
130 shaderIt =
shader.find(
"default");
132 auto nextImplementation = shaderIt->second;
133 if (currentImplementation != nextImplementation) {
134 if (currentImplementation !=
nullptr) currentImplementation->unUseProgram(contextIdx);
135 shadowMappingShaderPreContext.implementation = nextImplementation;
136 shadowMappingShaderPreContext.implementation->useProgram(
engine, contextIdx);
static int getThreadCount()
virtual bool isSupportingMultithreadedRendering()=0
Shadow mapping shader base class to create shadow map.
Shadow mapping default shader class to create shadow map.
static bool isSupported(Renderer *renderer)
Shadow mapping foliage shader class to create shadow map.
static bool isSupported(Renderer *renderer)
Shadow mapping tree shader class to create shadow map.
static bool isSupported(Renderer *renderer)
Shadow mapping shader to create a shadow map.
void initialize()
Init shadow map creation shader program.
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.
unordered_map< string, ShadowMapCreationShaderImplementation * > shader
void updateMaterial(int contextIdx)
Update material.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void unUseProgram()
Unuse shadow map creation shader program.
~ShadowMapCreationShader()
Destructor.
vector< ShadowMapCreationShaderContext > contexts
Pre shadow mapping shader for create shadow map.