TDME2 1.9.121
LightingShaderPBRBaseImplementation.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
10#include <tdme/engine/Engine.h>
11#include <tdme/engine/Timing.h>
12#include <tdme/math/Matrix4x4.h>
13#include <tdme/math/Vector3.h>
16
17using std::string;
18using std::to_string;
19
31
32LightingShaderPBRBaseImplementation::LightingShaderPBRBaseImplementation(Renderer* renderer)
33{
34 this->renderer = renderer;
35 initialized = false;
36}
37
39{
40 return initialized;
41}
42
44{
45
46 // link program
47 if (renderer->linkProgram(programId) == false) return;
48
49 // uniforms
51 if (uniformBaseColorFactor == -1) return;
53 if (uniformBaseColorSampler == -1) return;
55 if (uniformBaseColorSamplerAvailable == -1) return;
57 if (uniformAlphaCutoffEnabled == -1) return;
59 if (uniformAlphaCutoff == -1) return;
62 if (uniformExposure == -1) return;
64 if (uniformMetallicFactor == -1) return;
66 if (uniformMetallicRoughnessSampler == -1) return;
70 if (uniformNormalSampler == -1) return;
72 if (uniformNormalSamplerAvailable == -1) return;
74 if (uniformNormalScale == -1) return;
76 if (uniformRoughnessFactor == -1) return;
78 if (uniformViewProjectionMatrix == -1) return;
79 for (auto i = 0; i < Engine::LIGHTS_MAX; i++) {
80 uniformLightEnabled[i] = renderer->getProgramUniformLocation(programId, "u_PBRLights[" + to_string(i) + "].enabled");
81 uniformLightAmbient[i] = renderer->getProgramUniformLocation(programId, "u_PBRLights[" + to_string(i) + "].ambient");
82 uniformLightDirection[i] = renderer->getProgramUniformLocation(programId, "u_PBRLights[" + to_string(i) + "].direction");
83 uniformLightRange[i] = renderer->getProgramUniformLocation(programId, "u_PBRLights[" + to_string(i) + "].range");
84 uniformLightColor[i] = renderer->getProgramUniformLocation(programId, "u_PBRLights[" + to_string(i) + "].color");
85 uniformLightIntensity[i] = renderer->getProgramUniformLocation(programId, "u_PBRLights[" + to_string(i) + "].intensity");
86 uniformLightPosition[i] = renderer->getProgramUniformLocation(programId, "u_PBRLights[" + to_string(i) + "].position");
87 uniformLightInnerConeCos[i] = renderer->getProgramUniformLocation(programId, "u_PBRLights[" + to_string(i) + "].innerConeCos");
88 uniformLightOuterConeCos[i] = renderer->getProgramUniformLocation(programId, "u_PBRLights[" + to_string(i) + "].outerConeCos");
89 uniformLightType[i] = renderer->getProgramUniformLocation(programId, "u_PBRLights[" + to_string(i) + "].type");
90 }
91
92 // IBL
96
97 string environmentType = "studio_grey";
100 "pbr-environment-diffuse",
101 TextureReader::read("resources/engine/environments/" + environmentType + "/diffuse", "diffuse_left.png"),
102 TextureReader::read("resources/engine/environments/" + environmentType + "/diffuse", "diffuse_right.png"),
103 TextureReader::read("resources/engine/environments/" + environmentType + "/diffuse", "diffuse_top.png"),
104 TextureReader::read("resources/engine/environments/" + environmentType + "/diffuse", "diffuse_bottom.png"),
105 TextureReader::read("resources/engine/environments/" + environmentType + "/diffuse", "diffuse_front.png"),
106 TextureReader::read("resources/engine/environments/" + environmentType + "/diffuse", "diffuse_back.png"),
108 );
111 "pbr-environment-specular",
112 TextureReader::read("resources/engine/environments/" + environmentType + "/specular", "specular_left.png"),
113 TextureReader::read("resources/engine/environments/" + environmentType + "/specular", "specular_right.png"),
114 TextureReader::read("resources/engine/environments/" + environmentType + "/specular", "specular_top.png"),
115 TextureReader::read("resources/engine/environments/" + environmentType + "/specular", "specular_bottom.png"),
116 TextureReader::read("resources/engine/environments/" + environmentType + "/specular", "specular_front.png"),
117 TextureReader::read("resources/engine/environments/" + environmentType + "/specular", "specular_back.png"),
119 );
120 texturebrdfLUT = Engine::getInstance()->getTextureManager()->addTexture(TextureReader::read("resources/engine/environments", "brdfLUT.png"), renderer->CONTEXTINDEX_DEFAULT);
121
122 //
123 initialized = true;
124}
125
127{
128 renderer->useProgram(contextIdx, programId);
141 renderer->bindTexture(contextIdx, texturebrdfLUT);
142 renderer->setTextureUnit(contextIdx, 0);
143}
144
146{
148 renderer->bindTexture(contextIdx, renderer->ID_NONE);
150 renderer->bindTexture(contextIdx, renderer->ID_NONE);
152 renderer->bindTexture(contextIdx, renderer->ID_NONE);
154 renderer->bindTexture(contextIdx, renderer->ID_NONE);
156 renderer->bindTexture(contextIdx, renderer->ID_NONE);
158 renderer->bindTexture(contextIdx, renderer->ID_NONE);
159 renderer->setTextureUnit(contextIdx, 0);
160}
161
163{
164}
165
167{
168 auto material = renderer->getPBRMaterial(contextIdx);
169 renderer->setProgramUniformFloatVec4(contextIdx, uniformBaseColorFactor, material.baseColorFactor);
170 renderer->setProgramUniformFloat(contextIdx, uniformExposure, material.exposure);
171 renderer->setProgramUniformFloat(contextIdx, uniformMetallicFactor, material.metallicFactor);
172 renderer->setProgramUniformFloat(contextIdx, uniformRoughnessFactor, material.roughnessFactor);
173 renderer->setProgramUniformFloat(contextIdx, uniformNormalScale, material.normalScale);
174 renderer->setProgramUniformInteger(contextIdx, uniformAlphaCutoffEnabled, material.baseColorTextureMaskedTransparency);
175 renderer->setProgramUniformFloat(contextIdx, uniformAlphaCutoff, material.baseColorTextureMaskedTransparency == 0?0.0f:material.baseColorTextureMaskedTransparencyThreshold);
176}
177
178void LightingShaderPBRBaseImplementation::updateLight(Renderer* renderer, int contextIdx, int32_t lightId)
179{
180 auto& light = renderer->getLight(contextIdx, lightId);
181 if (uniformLightEnabled[lightId] != -1) renderer->setProgramUniformInteger(contextIdx, uniformLightEnabled[lightId], light.enabled);
182 if (light.enabled == 0) return;
183 if (uniformLightAmbient[lightId] != -1)
185 contextIdx,
186 uniformLightAmbient[lightId],
187 {{
188 light.ambient[0],
189 light.ambient[1],
190 light.ambient[2]
191 }}
192 );
193 if (uniformLightDirection[lightId] != -1) renderer->setProgramUniformFloatVec3(contextIdx, uniformLightDirection[lightId], light.spotDirection);
194 if (uniformLightRange[lightId] != -1) renderer->setProgramUniformFloat(contextIdx, uniformLightRange[lightId], 0.0f);
195 if (uniformLightColor[lightId] != -1)
197 contextIdx,
198 uniformLightColor[lightId],
199 {{
200 light.diffuse[0],
201 light.diffuse[1],
202 light.diffuse[2]
203 }}
204 );
205 if (uniformLightIntensity[lightId] != -1) renderer->setProgramUniformFloat(contextIdx, uniformLightIntensity[lightId], 1.0f);
206 if (uniformLightPosition[lightId] != -1) renderer->setProgramUniformFloatVec3(contextIdx, uniformLightPosition[lightId],{{ light.position[0], light.position[1], light.position[2] }});
207 if (uniformLightType[lightId] != -1) renderer->setProgramUniformInteger(contextIdx, uniformLightType[lightId], 0);
208}
209
211{
212 // set up camera position and view projection matrices
213 // matrices
214 Matrix4x4 vpMatrix;
215 // object to screen matrix
217 // upload matrices
220}
221
223}
224
226}
227
228void LightingShaderPBRBaseImplementation::bindTexture(Renderer* renderer, int contextIdx, int32_t textureId)
229{
230 switch (renderer->getTextureUnit(contextIdx)) {
233 break;
236 break;
239 break;
240 }
241}
242
Engine main class.
Definition: Engine.h:122
static TextureManager * getTextureManager()
Definition: Engine.h:564
static constexpr int LIGHTS_MAX
Definition: Engine.h:173
static Engine * getInstance()
Returns engine instance.
Definition: Engine.h:554
Timing class.
Definition: Timing.h:17
virtual void updateLight(Renderer *renderer, int contextIdx, int32_t lightId) override
Update light to program.
virtual void updateTextureMatrix(Renderer *renderer, int contextIdx) override
Update texture matrix to program.
virtual void updateMaterial(Renderer *renderer, int contextIdx) override
Update material to program.
virtual void updateMatrices(Renderer *renderer, int contextIdx) override
Update matrices to program.
virtual void bindTexture(Renderer *renderer, int contextIdx, int32_t textureId) override
Bind texture.
virtual void updateEffect(Renderer *renderer, int contextIdx) override
Update effect to program.
virtual void useProgram(Engine *engine, int contextIdx) override
Use lighting program.
virtual void updateShaderParameters(Renderer *renderer, int contextIdx) override=0
Update shader parameters.
int32_t addCubeMapTexture(const string &id, Texture *textureLeft, Texture *textureRight, Texture *textureTop, Texture *textureBottom, Texture *textureFront, Texture *textureBack, int contextIdx=0)
Adds a cube map texture to manager.
TextureManager_TextureManaged * addTexture(const string &id, bool &created)
Adds a texture to manager.
virtual void setTextureUnit(int contextIdx, int32_t textureUnit)=0
Sets up texture unit.
virtual void bindCubeMapTexture(int contextIdx, int32_t textureId)=0
Binds a cube map texture with given id or unbinds when using ID_NONE.
virtual void setProgramUniformFloatVec4(int contextIdx, int32_t uniformId, const array< float, 4 > &data)=0
Set up a float vec4 uniform value.
virtual int32_t getTextureUnit(int contextIdx)=0
Get texture unit.
virtual void setProgramUniformInteger(int contextIdx, int32_t uniformId, int32_t value)=0
Set up a integer uniform value.
virtual bool linkProgram(int32_t programId)=0
Links attached shaders to a program.
virtual void bindTexture(int contextIdx, int32_t textureId)=0
Binds a texture with given id or unbinds when using ID_NONE.
void setLighting(int contextIdx, int32_t lighting)
Set current lighting model.
Definition: Renderer.h:503
virtual void setProgramUniformFloatMatrix4x4(int contextIdx, int32_t uniformId, const array< float, 16 > &value)=0
Set up a float matrix 4x4 uniform value.
virtual int32_t getProgramUniformLocation(int32_t programId, const string &name)=0
Returns location of given uniform variable.
Renderer_PBRMaterial & getPBRMaterial(int contextIdx)
Get PBR material.
Definition: Renderer.h:1152
Renderer_Light & getLight(int contextIdx, int32_t lightIdx)
Get light.
Definition: Renderer.h:1099
virtual void useProgram(int contextIdx, int32_t programId)=0
Use shader program.
virtual void setProgramUniformFloatVec3(int contextIdx, int32_t uniformId, const array< float, 3 > &data)=0
Set up a float vec3 uniform value.
virtual void setProgramUniformFloat(int contextIdx, int32_t uniformId, float value)=0
Set up a float uniform value.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Matrix4x4 & set(float r0c0, float r1c0, float r2c0, float r3c0, float r0c1, float r1c1, float r2c1, float r3c1, float r0c2, float r1c2, float r2c2, float r3c2, float r0c3, float r1c3, float r2c3, float r3c3)
Set up matrix by values.
Definition: Matrix4x4.h:95
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Definition: Matrix4x4.h:351
array< float, 16 > & getArray() const
Returns array data.
Definition: Matrix4x4.h:616
3D vector 3 class
Definition: Vector3.h:22
array< float, 3 > & getArray() const
Definition: Vector3.h:171
Console class.
Definition: Console.h:26
Float class.
Definition: Float.h:23