TDME2 1.9.121
ParticlesShader.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
7
14
15ParticlesShader::ParticlesShader(Engine* engine, Renderer* renderer)
16{
17 this->engine = engine;
18 this->renderer = renderer;
19 isRunning = false;
20 initialized = false;
22}
23
25{
26 return initialized;
27}
28
30{
31 auto shaderVersion = renderer->getShaderVersion();
32 // particles
33 // fragment shader
36 "shader/" + shaderVersion + "/particles",
37 "render_fragmentshader.frag",
38 "#define HAVE_DEPTH_FOG"
39 );
40 if (renderFragmentShaderId == 0) return;
41 // vertex shader
44 "shader/" + shaderVersion + "/particles",
45 "render_vertexshader.vert",
46 "#define HAVE_DEPTH_FOG"
47 );
48 if (renderVertexShaderId == 0) return;
49 // create, attach and link program
53 // map inputs to attributes
56 renderer->setProgramAttributeLocation(renderProgramId, 1, "inTextureSpriteIndex");
59 renderer->setProgramAttributeLocation(renderProgramId, 6, "inSpriteSheetDimensions");
62 }
63 // link program
64 if (renderer->linkProgram(renderProgramId) == false) return;
65
66 // get uniforms
68 if (uniformMVPMatrix == -1) return;
69 for (auto i = 0; i < uniformDiffuseTextureUnits.size(); i++) {
70 uniformDiffuseTextureUnits[i] = renderer->getProgramUniformLocation(renderProgramId, "diffuseTextureUnits[" + to_string(i) + "]");
71 if (i == 0 && uniformDiffuseTextureUnits[i] == -1) return;
72 }
73 // TODO: use ivec2 and vec2
75 if (uniformViewPortWidth == -1) return;
77 if (uniformViewPortHeight == -1) return;
79 if (uniformProjectionMatrixXx == -1) return;
81 if (uniformProjectionMatrixYy == -1) return;
82 initialized = true;
83}
84
85void ParticlesShader::useProgram(int contextIdx)
86{
87 isRunning = true;
90 for (auto i = 0; i < uniformDiffuseTextureUnits.size(); i++) {
91 if (uniformDiffuseTextureUnits[i] == -1) break;
93 }
94}
95
97{
98 // skip if not running
99 if (isRunning == false) return;
100}
101
103{
104 isRunning = false;
105 for (auto i = 0; i < boundTextureIds.size(); i++) {
106 if (uniformDiffuseTextureUnits[i] == -1) break;
107 auto textureId = boundTextureIds[i];
108 if (textureId == 0) continue;
109 renderer->setTextureUnit(contextIdx, i);
110 renderer->bindTexture(contextIdx, renderer->ID_NONE);
111 }
112 renderer->setTextureUnit(contextIdx, 0);
114}
115
117{
118 // skip if not running
119 if (isRunning == false) return;
120 // object to screen matrix
127}
128
129void ParticlesShader::setParameters(int contextIdx, const array<int32_t, 16>& textureIds) {
130 for (auto i = 0; i < boundTextureIds.size(); i++) {
131 if (uniformDiffuseTextureUnits[i] == -1) break;
132 auto textureId = boundTextureIds[i];
133 if (textureId == renderer->ID_NONE) continue;
134 renderer->setTextureUnit(contextIdx, i);
135 renderer->bindTexture(contextIdx, renderer->ID_NONE);
136 }
137 for (auto i = 0; i < textureIds.size(); i++) {
138 if (uniformDiffuseTextureUnits[i] == -1) break;
139 auto textureId = textureIds[i];
140 if (textureId == renderer->ID_NONE) continue;
141 renderer->setTextureUnit(contextIdx, i);
142 renderer->bindTexture(contextIdx, textureId);
143 }
144 renderer->setTextureUnit(contextIdx, 0);
145 boundTextureIds = textureIds;
146}
Engine main class.
Definition: Engine.h:122
void updateMatrices(int contextIdx)
Update matrices to program.
void updateEffect(int contextIdx)
Update effect to program.
void unUseProgram(int contextIdx)
Unuse particles shader program.
void setParameters(int contextIdx, const array< int32_t, 16 > &textureIds)
Set parameters.
void useProgram(int contextIdx)
Use lighting program.
virtual void setTextureUnit(int contextIdx, int32_t textureUnit)=0
Sets up texture unit.
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.
virtual int32_t createProgram(int type)=0
Creates a shader program.
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.
Definition: Renderer.h:503
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.
virtual void useProgram(int contextIdx, int32_t programId)=0
Use shader program.
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