TDME2 1.9.121
LightingShaderTerrainEditorImplementation.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
11#include <tdme/math/Vector2.h>
12
13using std::string;
14using std::to_string;
15
23
24LightingShaderTerrainEditorImplementation::LightingShaderTerrainEditorImplementation(Renderer* renderer): LightingShaderTerrainImplementation(renderer)
25{
26 additionalDefinitions = "\n#define HAVE_TERRAIN_SHADER_EDITOR";
27}
28
30 return "terraineditor";
31}
32
34{
36
37 if (initialized == false) return;
38
39 //
40 initialized = false;
41
43 if (uniformBrushEnabled == -1) return;
44
46 if (uniformBrushTextureMatrix == -1) return;
47
49 if (uniformBrushTextureUnit == -1) return;
50
52 if (uniformBrushPosition == -1) return;
53
55 if (uniformBrushTextureDimension == -1) return;
56
57 //
58 initialized = true;
59}
60
63 Engine::ShaderType::SHADERTYPE_OBJECT3D,
64 getId(),
65 {
66 { "brushEnabled", ShaderParameter(true) },
67 { "brushDimension", ShaderParameter(Vector2(0.0f, 0.0f)) },
68 { "brushTexture", ShaderParameter(0) },
69 { "brushRotation", ShaderParameter(0.0f) },
70 { "brushScale", ShaderParameter(Vector2(1.0f, 1.0f)) },
71 { "brushPosition", ShaderParameter(Vector2(0.0f, 0.0f)) }
72 }
73 );
74}
75
78
79 //
80 auto currentTextureUnit = renderer->getTextureUnit(contextIdx);
82 renderer->bindTexture(contextIdx, engine->getShaderParameter(getId(), "brushTexture").getIntegerValue());
83 renderer->setTextureUnit(contextIdx, currentTextureUnit);
84
85 //
86 Matrix2D3x3 brushTextureMatrix;
87 brushTextureMatrix.identity();
88 brushTextureMatrix.multiply((Matrix2D3x3()).identity().translate(Vector2(0.5f, 0.5f)));
89 brushTextureMatrix.multiply((Matrix2D3x3()).identity().scale(
90 Vector2(
91 1.0f / engine->getShaderParameter(getId(), "brushScale").getVector2Value().getX(),
92 1.0f / engine->getShaderParameter(getId(), "brushScale").getVector2Value().getY()
93 )
94 ));
95 brushTextureMatrix.multiply((Matrix2D3x3()).identity().rotate(engine->getShaderParameter(getId(), "brushRotation").getFloatValue()));
96
97 //
98 renderer->setProgramUniformInteger(contextIdx, uniformBrushEnabled, engine->getShaderParameter(getId(), "brushEnabled").getBooleanValue() == true?1:0);
101 renderer->setProgramUniformFloatVec2(contextIdx, uniformBrushTextureDimension, engine->getShaderParameter(getId(), "brushDimension").getVector2Value().getArray());
102 renderer->setProgramUniformFloatVec2(contextIdx, uniformBrushPosition, engine->getShaderParameter(getId(), "brushPosition").getVector2Value().getArray());
103}
Engine main class.
Definition: Engine.h:122
static void registerShader(ShaderType type, const string &shaderId, const map< string, ShaderParameter > &parameterDefaults={})
Register shader.
Definition: Engine.cpp:2122
const ShaderParameter getShaderParameter(const string &shaderId, const string &parameterName)
Returns shader parameter for given shader id and parameter name, if the value does not exist,...
Definition: Engine.h:792
Shader parameter model class.
virtual void useProgram(Engine *engine, int contextIdx) override
Use lighting program.
virtual void useProgram(Engine *engine, int contextIdx) override
Use lighting program.
virtual void setTextureUnit(int contextIdx, int32_t textureUnit)=0
Sets up texture unit.
virtual void setProgramUniformFloatVec2(int contextIdx, int32_t uniformId, const array< float, 2 > &data)=0
Set up a float vec2 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 void bindTexture(int contextIdx, int32_t textureId)=0
Binds a texture with given id or unbinds when using ID_NONE.
virtual void setProgramUniformFloatMatrix3x3(int contextIdx, int32_t uniformId, const array< float, 9 > &value)=0
Set up a float matrix 3x3 uniform value.
virtual int32_t getProgramUniformLocation(int32_t programId, const string &name)=0
Returns location of given uniform variable.
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
array< float, 9 > & getArray() const
Returns array data.
Definition: Matrix2D3x3.h:348
Matrix2D3x3 & identity()
Setup identity matrix.
Definition: Matrix2D3x3.h:116
Matrix2D3x3 & multiply(const Matrix2D3x3 &m)
Multiplies this matrix with another matrix.
Definition: Matrix2D3x3.h:220
2D vector 2 class
Definition: Vector2.h:19