TDME2 1.9.121
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LightingShader.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>
33
34using std::string;
35using std::unordered_map;
36using std::vector;
37
62
63LightingShader::LightingShader(Renderer* renderer): renderer(renderer)
64{
65 // light scattering
66 if (LightingShaderLightScatteringDefaultImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderLightScatteringDefaultImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
67 if (LightingShaderLightScatteringFoliageImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderLightScatteringFoliageImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
68 if (LightingShaderLightScatteringTreeImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderLightScatteringTreeImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
69 // spec
70 if (LightingShaderDefaultImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderDefaultImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
71 if (LightingShaderFoliageImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderFoliageImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
72 if (LightingShaderSkyImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderSkyImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
73 if (LightingShaderTerrainEditorImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderTerrainEditorImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
74 if (LightingShaderTerrainImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderTerrainImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
75 if (LightingShaderTreeImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderTreeImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
76 if (LightingShaderWaterImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderWaterImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
77 // spec + deferred
78 if (DeferredLightingShaderDefaultImplementation::isSupported(renderer) == true) { auto shaderProgram = new DeferredLightingShaderDefaultImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
79 if (DeferredLightingShaderFoliageImplementation::isSupported(renderer) == true) { auto shaderProgram = new DeferredLightingShaderFoliageImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
80 if (DeferredLightingShaderSkyImplementation::isSupported(renderer) == true) { auto shaderProgram = new DeferredLightingShaderSkyImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
81 if (DeferredLightingShaderTerrainImplementation::isSupported(renderer) == true) { auto shaderProgram = new DeferredLightingShaderTerrainImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
82 if (DeferredLightingShaderTreeImplementation::isSupported(renderer) == true) { auto shaderProgram = new DeferredLightingShaderTreeImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
83 // pbr
84 if (LightingShaderPBRDefaultImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderPBRDefaultImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
85 if (LightingShaderPBRFoliageImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderPBRFoliageImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
86 if (LightingShaderPBRTreeImplementation::isSupported(renderer) == true) { auto shaderProgram = new LightingShaderPBRTreeImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
87 if (DeferredLightingShaderPBRDefaultImplementation::isSupported(renderer) == true) { auto shaderProgram = new DeferredLightingShaderPBRDefaultImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
88 if (DeferredLightingShaderPBRFoliageImplementation::isSupported(renderer) == true) { auto shaderProgram = new DeferredLightingShaderPBRFoliageImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
89 if (DeferredLightingShaderPBRTreeImplementation::isSupported(renderer) == true) { auto shaderProgram = new DeferredLightingShaderPBRTreeImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
91 contexts.resize(threadCount);
92}
93
95 for (auto shaderIt: shader) {
96 delete shaderIt.second;
97 }
98}
99
101{
102 bool initialized = true;
103 for (auto shaderIt: shader) {
104 if (shaderIt.second->isInitialized() == false) {
105 Console::println("LightingShader::isInitialized(): " + shaderIt.first + ": not initialized!");
106 } else {
107 shaderIt.second->registerShader();
108 }
109 initialized&= shaderIt.second->isInitialized();
110 }
111 return initialized;
112}
113
115{
116 for (auto shaderIt: shader) {
117 shaderIt.second->initialize();
118 }
119}
120
122{
123 running = true;
124 this->engine = engine;
125}
126
128{
129 running = false;
130 auto i = 0;
131 for (auto& lightingShaderContext: contexts) {
132 if (lightingShaderContext.implementation != nullptr) lightingShaderContext.implementation->unUseProgram(i);
133 lightingShaderContext.implementation = nullptr;
134 i++;
135 }
136 engine = nullptr;
137}
138
140{
141 auto& lightingShaderContext = contexts[contextIdx];
142 if (lightingShaderContext.implementation == nullptr) return;
143 lightingShaderContext.implementation->updateEffect(renderer, contextIdx);
144}
145
147{
148 auto& lightingShaderContext = contexts[contextIdx];
149 if (lightingShaderContext.implementation == nullptr) return;
150 lightingShaderContext.implementation->updateMaterial(renderer, contextIdx);
151}
152
153void LightingShader::updateLight(int contextIdx, int32_t lightId)
154{
155 auto& lightingShaderContext = contexts[contextIdx];
156 if (lightingShaderContext.implementation == nullptr) return;
157 lightingShaderContext.implementation->updateLight(renderer, contextIdx, lightId);
158}
159
161{
162 auto& lightingShaderContext = contexts[contextIdx];
163 if (lightingShaderContext.implementation == nullptr) return;
164 lightingShaderContext.implementation->updateMatrices(renderer, contextIdx);
165}
166
168 auto& lightingShaderContext = contexts[contextIdx];
169 if (lightingShaderContext.implementation == nullptr) return;
170 lightingShaderContext.implementation->updateTextureMatrix(renderer, contextIdx);
171}
172
173void LightingShader::setShader(int contextIdx, const string& id) {
174 if (running == false) return;
175 auto shaderId = id;
176 // TODO: find a better solution to remove pbr from lightscattering pass
177 if ((renderer->isPBRAvailable() == false || renderer->getShaderPrefix() == "ls_") &&
178 StringTools::startsWith(id, "pbr-") == true) {
179 shaderId = StringTools::substring(id, 4, id.size());
180 }
181 auto& lightingShaderContext = contexts[contextIdx];
182 auto currentImplementation = lightingShaderContext.implementation;
183 auto shaderIt = shader.find(renderer->getShaderPrefix() + shaderId);
184 if (shaderIt == shader.end()) shaderIt = shader.find(renderer->getShaderPrefix() + "default");
185 if (shaderIt == shader.end()) shaderIt = shader.find("default");
186 auto nextImplementation = shaderIt->second;
187 if (currentImplementation != nextImplementation) {
188 if (currentImplementation != nullptr) currentImplementation->unUseProgram(contextIdx);
189 lightingShaderContext.implementation = nextImplementation;
190 lightingShaderContext.implementation->useProgram(engine, contextIdx);
191 }
192}
193
195 auto& lightingShaderContext = contexts[contextIdx];
196 if (lightingShaderContext.implementation == nullptr) return;
197 lightingShaderContext.implementation->updateShaderParameters(renderer, contextIdx);
198}
199
200void LightingShader::bindTexture(int contextIdx, int32_t textureId)
201{
202 auto& lightingShaderContext = contexts[contextIdx];
203 if (lightingShaderContext.implementation == nullptr) return;
204 lightingShaderContext.implementation->bindTexture(renderer, contextIdx, textureId);
205}
Engine main class.
Definition: Engine.h:122
static int getThreadCount()
Definition: Engine.h:579
Interface to lighting shader program.
void updateLight(int contextIdx, int32_t lightId)
Update light to program.
void updateMatrices(int contextIdx)
Update matrices to program.
void updateEffect(int contextIdx)
Update effect to program.
void useProgram(Engine *engine)
Use lighting program.
void setShader(int contextIdx, const string &id)
Set shader.
void updateTextureMatrix(int contextIdx)
Update texture matrix to program.
void updateShaderParameters(int contextIdx)
Update shader parameters.
unordered_map< string, LightingShaderImplementation * > shader
void updateMaterial(int contextIdx)
Update material to program.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
const string & getShaderPrefix()
Get shader prefix.
Definition: Renderer.h:476
Console class.
Definition: Console.h:26
String tools class.
Definition: StringTools.h:20