TDME2 1.9.121
EZRShader.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <unordered_map>
5#include <vector>
6
7#include <tdme/tdme.h>
11#include <tdme/engine/Engine.h>
12#include <tdme/math/Matrix4x4.h>
14
16
17using std::string;
18using std::unordered_map;
19using std::vector;
20
29
30EZRShader::EZRShader(Renderer* renderer): renderer(renderer)
31{
32 if (EZRShaderDefaultImplementation::isSupported(renderer) == true) { auto shaderProgram = new EZRShaderDefaultImplementation(renderer); shader[shaderProgram->getId()] = shaderProgram; }
34 contexts.resize(threadCount);
35}
36
38 for (auto shaderIt: shader) {
39 delete shaderIt.second;
40 }
41}
42
44{
45 bool initialized = true;
46 for (auto shaderIt: shader) {
47 initialized&= shaderIt.second->isInitialized();
48 }
49 return initialized;
50}
51
53{
54 for (auto shaderIt: shader) {
55 shaderIt.second->initialize();
56 }
57}
58
60{
61 running = true;
62 this->engine = engine;
63}
64
66{
67 running = false;
68 auto i = 0;
69 for (auto& ezrShaderContext: contexts) {
70 if (ezrShaderContext.implementation != nullptr) {
71 ezrShaderContext.implementation->unUseProgram(i);
72 }
73 ezrShaderContext.implementation = nullptr;
74 i++;
75 }
76 engine = nullptr;
77}
78
79void EZRShader::updateMatrices(int contextIdx)
80{
81 auto& ezrShaderContext = contexts[contextIdx];
82 if (ezrShaderContext.implementation == nullptr) return;
83 ezrShaderContext.implementation->updateMatrices(renderer, contextIdx);
84}
85
86void EZRShader::updateTextureMatrix(int contextIdx) {
87 auto& ezrShaderContext = contexts[contextIdx];
88 if (ezrShaderContext.implementation == nullptr) return;
89 ezrShaderContext.implementation->updateTextureMatrix(renderer, contextIdx);
90}
91
92void EZRShader::updateMaterial(int contextIdx)
93{
94 auto& ezrShaderContext = contexts[contextIdx];
95 if (ezrShaderContext.implementation == nullptr) return;
96 ezrShaderContext.implementation->updateMaterial(renderer, contextIdx);
97}
98
99void EZRShader::bindTexture(int contextIdx, int32_t textureId)
100{
101 auto& ezrShaderContext = contexts[contextIdx];
102 if (ezrShaderContext.implementation == nullptr) return;
103 ezrShaderContext.implementation->bindTexture(renderer, contextIdx, textureId);
104}
105
107 auto& ezrShaderContext = contexts[contextIdx];
108 if (ezrShaderContext.implementation == nullptr) return;
109 ezrShaderContext.implementation->updateShaderParameters(renderer, contextIdx);
110}
111
112void EZRShader::setShader(int contextIdx, const string& id) {
113 if (running == false) return;
114
115 // TODO: find a better solution for removing PBR- lighing prefix
116 string shaderId;
117 if (StringTools::startsWith(id, string("pbr-")) == true) {
118 shaderId = StringTools::substring(id, 4);
119 } else {
120 shaderId = id;
121 }
122
123 //
124 auto& ezrShaderContext = contexts[contextIdx];
125 auto currentImplementation = ezrShaderContext.implementation;
126 auto shaderIt = shader.find(shaderId);
127 if (shaderIt == shader.end()) {
128 shaderIt = shader.find("default");
129 }
130 auto nextImplementation = shaderIt->second;
131 if (currentImplementation != nextImplementation) {
132 if (currentImplementation != nullptr) currentImplementation->unUseProgram(contextIdx);
133 ezrShaderContext.implementation = nextImplementation;
134 ezrShaderContext.implementation->useProgram(engine, contextIdx);
135 }
136}
Engine main class.
Definition: Engine.h:122
static int getThreadCount()
Definition: Engine.h:579
void updateMatrices(int contextIdx)
Update program matrices.
Definition: EZRShader.cpp:79
void useProgram(Engine *engine)
Use EZR render shader program.
Definition: EZRShader.cpp:59
void setShader(int contextIdx, const string &id)
Set shader.
Definition: EZRShader.cpp:112
unordered_map< string, EZRShaderImplementation * > shader
Definition: EZRShader.h:34
void updateTextureMatrix(int contextIdx)
Set up program texture matrix.
Definition: EZRShader.cpp:86
void updateShaderParameters(int contextIdx)
Update shader parameters.
Definition: EZRShader.cpp:106
void updateMaterial(int contextIdx)
Update material.
Definition: EZRShader.cpp:92
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
Definition: EZRShader.cpp:99
void unUseProgram()
Unuse EZR render shader program.
Definition: EZRShader.cpp:65
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Console class.
Definition: Console.h:26
String tools class.
Definition: StringTools.h:20