4#include <unordered_map>
35using std::unordered_map;
63LightingShader::LightingShader(
Renderer* renderer): renderer(renderer)
95 for (
auto shaderIt:
shader) {
96 delete shaderIt.second;
102 bool initialized =
true;
103 for (
auto shaderIt:
shader) {
104 if (shaderIt.second->isInitialized() ==
false) {
105 Console::println(
"LightingShader::isInitialized(): " + shaderIt.first +
": not initialized!");
107 shaderIt.second->registerShader();
109 initialized&= shaderIt.second->isInitialized();
116 for (
auto shaderIt:
shader) {
117 shaderIt.second->initialize();
131 for (
auto& lightingShaderContext:
contexts) {
132 if (lightingShaderContext.implementation !=
nullptr) lightingShaderContext.implementation->unUseProgram(i);
133 lightingShaderContext.implementation =
nullptr;
141 auto& lightingShaderContext =
contexts[contextIdx];
142 if (lightingShaderContext.implementation ==
nullptr)
return;
143 lightingShaderContext.implementation->updateEffect(
renderer, contextIdx);
148 auto& lightingShaderContext =
contexts[contextIdx];
149 if (lightingShaderContext.implementation ==
nullptr)
return;
150 lightingShaderContext.implementation->updateMaterial(
renderer, contextIdx);
155 auto& lightingShaderContext =
contexts[contextIdx];
156 if (lightingShaderContext.implementation ==
nullptr)
return;
157 lightingShaderContext.implementation->updateLight(
renderer, contextIdx, lightId);
162 auto& lightingShaderContext =
contexts[contextIdx];
163 if (lightingShaderContext.implementation ==
nullptr)
return;
164 lightingShaderContext.implementation->updateMatrices(
renderer, contextIdx);
168 auto& lightingShaderContext =
contexts[contextIdx];
169 if (lightingShaderContext.implementation ==
nullptr)
return;
170 lightingShaderContext.implementation->updateTextureMatrix(
renderer, contextIdx);
178 StringTools::startsWith(
id,
"pbr-") ==
true) {
179 shaderId = StringTools::substring(
id, 4,
id.size());
181 auto& lightingShaderContext =
contexts[contextIdx];
182 auto currentImplementation = lightingShaderContext.implementation;
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);
195 auto& lightingShaderContext =
contexts[contextIdx];
196 if (lightingShaderContext.implementation ==
nullptr)
return;
197 lightingShaderContext.implementation->updateShaderParameters(
renderer, contextIdx);
202 auto& lightingShaderContext =
contexts[contextIdx];
203 if (lightingShaderContext.implementation ==
nullptr)
return;
204 lightingShaderContext.implementation->bindTexture(
renderer, contextIdx, textureId);
static int getThreadCount()
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Lighting shader implementation.
static bool isSupported(Renderer *renderer)
Interface to lighting shader program.
void initialize()
Initialize renderer.
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.
vector< LightingShaderContext > contexts
~LightingShader()
Destructor.
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.
void unUseProgram()
Unuse lighting program.
virtual bool isSupportingMultithreadedRendering()=0
virtual bool isPBRAvailable()=0
const string & getShaderPrefix()
Get shader prefix.
Lighting shader implementation interface.