TDME2 1.9.121
ShadowMapCreationShader.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/math/Matrix4x4.h>
16
17using std::string;
18using std::unordered_map;
19using std::vector;
20
31
32ShadowMapCreationShader::ShadowMapCreationShader(Renderer* renderer): renderer(renderer)
33{
38 contexts.resize(threadCount);
39}
40
42 for (auto shaderIt: shader) {
43 delete shaderIt.second;
44 }
45}
46
48{
49 bool initialized = true;
50 for (auto shaderIt: shader) {
51 initialized&= shaderIt.second->isInitialized();
52 }
53 return initialized;
54}
55
57{
58 for (auto shaderIt: shader) {
59 shaderIt.second->initialize();
60 }
61}
62
64{
65 running = true;
66 this->engine = engine;
67}
68
70{
71 running = false;
72 auto i = 0;
73 for (auto& shadowMappingShaderPreContext: contexts) {
74 if (shadowMappingShaderPreContext.implementation != nullptr) {
75 shadowMappingShaderPreContext.implementation->unUseProgram(i);
76 }
77 shadowMappingShaderPreContext.implementation = nullptr;
78 i++;
79 }
80 engine = nullptr;
81}
82
84{
85 auto& shadowMappingShaderPreContext = contexts[contextIdx];
86 if (shadowMappingShaderPreContext.implementation == nullptr) return;
87 shadowMappingShaderPreContext.implementation->updateMatrices(contextIdx);
88}
89
91 auto& shadowMappingShaderPreContext = contexts[contextIdx];
92 if (shadowMappingShaderPreContext.implementation == nullptr) return;
93 shadowMappingShaderPreContext.implementation->updateTextureMatrix(renderer, contextIdx);
94}
95
97{
98 auto& shadowMappingShaderPreContext = contexts[contextIdx];
99 if (shadowMappingShaderPreContext.implementation == nullptr) return;
100 shadowMappingShaderPreContext.implementation->updateMaterial(renderer, contextIdx);
101}
102
104 auto& shadowMappingShaderPreContext = contexts[contextIdx];
105 if (shadowMappingShaderPreContext.implementation == nullptr) return;
106 shadowMappingShaderPreContext.implementation->updateShaderParameters(renderer, contextIdx);
107}
108
109void ShadowMapCreationShader::bindTexture(int contextIdx, int32_t textureId)
110{
111 auto& shadowMappingShaderPreContext = contexts[contextIdx];
112 if (shadowMappingShaderPreContext.implementation == nullptr) return;
113 shadowMappingShaderPreContext.implementation->bindTexture(renderer, contextIdx, textureId);
114}
115
116void ShadowMapCreationShader::setShader(int contextIdx, const string& id) {
117 // TODO: find a better solution for removing PBR- lighing prefix
118 string shaderId;
119 if (StringTools::startsWith(id, string("pbr-")) == true) {
120 shaderId = StringTools::substring(id, 4);
121 } else {
122 shaderId = id;
123 }
124
125 //
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");
131 }
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);
137 }
138}
Engine main class.
Definition: Engine.h:122
static int getThreadCount()
Definition: Engine.h:579
void useProgram(Engine *engine)
Use shadow map creation shader program.
void setShader(int contextIdx, const string &id)
Set shader.
void updateShaderParameters(int contextIdx)
Update shader parameters.
unordered_map< string, ShadowMapCreationShaderImplementation * > shader
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void unUseProgram()
Unuse shadow map creation shader program.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
String tools class.
Definition: StringTools.h:20