33DeferredLightingRenderShader::DeferredLightingRenderShader(
Renderer* renderer)
54 "shader/" + shaderVersion +
"/framebuffer",
55 "render_vertexshader.vert",
56 "#define HAVE_DEPTH_FOG"
62 "shader/" + shaderVersion +
"/framebuffer",
63 "deferred_lighting_fragmentshader.frag",
65 "#define HAVE_DEPTH_FOG\n" +
66 "#define LIGHT_COUNT " + to_string(
Engine::LIGHTS_MAX) +
"\n#define USE_PUNCTUAL\n#define MATERIAL_METALLICROUGHNESS\n#define USE_IBL\n",
67 FileSystem::getInstance()->getContentAsString(
68 "shader/" + shaderVersion +
"/functions/specular",
69 "specular_lighting.inc.glsl"
72 FileSystem::getInstance()->getContentAsString(
73 "shader/" + shaderVersion +
"/functions/pbr",
74 "tonemapping.inc.glsl"
77 FileSystem::getInstance()->getContentAsString(
78 "shader/" + shaderVersion +
"/functions/pbr",
82 FileSystem::getInstance()->getContentAsString(
83 "shader/" + shaderVersion +
"/functions/pbr",
84 "pbr_lighting.inc.glsl"
191 string environmentType =
"studio_grey";
194 "pbr-environment-diffuse",
195 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/diffuse",
"diffuse_left.png"),
196 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/diffuse",
"diffuse_right.png"),
197 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/diffuse",
"diffuse_top.png"),
198 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/diffuse",
"diffuse_bottom.png"),
199 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/diffuse",
"diffuse_front.png"),
200 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/diffuse",
"diffuse_back.png"),
205 "pbr-environment-specular",
206 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/specular",
"specular_left.png"),
207 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/specular",
"specular_right.png"),
208 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/specular",
"specular_top.png"),
209 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/specular",
"specular_bottom.png"),
210 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/specular",
"specular_front.png"),
211 TextureReader::read(
"resources/engine/environments/" + environmentType +
"/specular",
"specular_back.png"),
239 if (light->isEnabled() ==
false)
continue;
272 if (light->isEnabled() ==
false)
continue;
273 auto& ambient = light->getAmbient().getArray();
274 auto& diffuse = light->getDiffuse().getArray();
275 auto& position = light->getPosition().getArray();
const Matrix4x4 & getModelViewMatrix() const
Light * getLightAt(int32_t idx)
Returns light at idx (0 <= idx < 8)
static TextureManager * getTextureManager()
static constexpr int LIGHTS_MAX
static Engine * getInstance()
Returns engine instance.
Deferred lighint render shader.
int32_t uniformGeometryBufferTextureId1
int32_t uniformColorBufferTextureUnit2
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightSpotCosCutoff
int32_t textureDiffuseEnvSampler
void initialize()
Initialize.
int32_t uniformColorBufferTextureUnit3
int32_t uniformColorBufferTextureUnit4
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightLinearAttenuation
int32_t textureSpecularEnvSampler
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightSpotExponent
~DeferredLightingRenderShader()
Public destructor.
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightPosition
int32_t uniformGeometryBufferTextureId2
int32_t uniformColorBufferTextureUnit5
int32_t uniformDiffuseEnvSampler
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightSpecular
array< int32_t, Engine::LIGHTS_MAX > uniformPBRLightRange
array< int32_t, Engine::LIGHTS_MAX > uniformPBRLightInnerConeCos
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightRadius
array< int32_t, Engine::LIGHTS_MAX > uniformPBRLightDirection
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightDiffuse
int32_t uniformSpecularEnvSampler
int32_t uniformDepthBufferTextureUnit
int32_t uniformCameraMatrix
array< int32_t, Engine::LIGHTS_MAX > uniformPBRLightOuterConeCos
void useProgram(Engine *engine)
Use render program.
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightConstantAttenuation
array< int32_t, Engine::LIGHTS_MAX > uniformPBRLightPosition
array< int32_t, Engine::LIGHTS_MAX > uniformPBRLightColor
array< int32_t, Engine::LIGHTS_MAX > uniformPBRLightIntensity
int32_t uniformColorBufferTextureUnit1
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightQuadraticAttenuation
array< int32_t, Engine::LIGHTS_MAX > uniformPBRLightEnabled
array< int32_t, Engine::LIGHTS_MAX > uniformPBRLightType
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightSpotDirection
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightEnabled
array< int32_t, Engine::LIGHTS_MAX > uniformSpecularLightAmbient
void unUseProgram()
Un use render program.
int32_t uniformGeometryBufferTextureId3
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 int32_t loadShader(int32_t type, const string &pathName, const string &fileName, const string &definitions=string(), const string &functions=string())=0
Loads a shader.
int32_t SHADER_FRAGMENT_SHADER
virtual void setProgramUniformFloatVec4(int contextIdx, int32_t uniformId, const array< float, 4 > &data)=0
Set up a float vec4 uniform value.
Vector3 & getCameraPosition()
int32_t SHADER_VERTEX_SHADER
virtual int32_t createProgram(int type)=0
Creates a shader program.
virtual bool isUsingProgramAttributeLocation()=0
virtual int32_t getTextureUnit(int contextIdx)=0
Get texture unit.
virtual void setProgramAttributeLocation(int32_t programId, int32_t location, const string &name)=0
Bind attribute to a input location.
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.
virtual void attachShaderToProgram(int32_t programId, int32_t shaderId)=0
Attaches a shader to a program.
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.
int32_t CONTEXTINDEX_DEFAULT
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 const string getShaderVersion()=0
virtual void setProgramUniformFloat(int contextIdx, int32_t uniformId, float value)=0
Set up a float uniform value.
Buffers used to transfer data between main memory to graphics board memory.
array< float, 16 > & getArray() const
Returns array data.
array< float, 3 > & getArray() const
File system singleton class.