TDME2 1.9.121
EngineGLES2Renderer.cpp
Go to the documentation of this file.
2
3#if defined(_MSC_VER)
4 // this suppresses a warning redefinition of APIENTRY macro
5 #define NOMINMAX
6 #include <windows.h>
7#endif
8#define GLFW_INCLUDE_NONE
9#include <GLFW/glfw3.h>
10
11#include <string>
12
13#include <tdme/tdme.h>
19#include <tdme/engine/Engine.h>
20#include <tdme/engine/Version.h>
22
24
25using std::string;
26
35
36EngineGLES2Renderer::EngineGLES2Renderer()
37{
38}
39
41 if (tryIdx > 0) return false;
42 glfwWindowHint(GLFW_CLIENT_API, GLFW_OPENGL_ES_API);
43 glfwWindowHint(GLFW_CONTEXT_CREATION_API, GLFW_NATIVE_CONTEXT_API);
44 glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 2);
45 glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0);
46 return true;
47}
48
50 glfwMakeContextCurrent(glfwWindow);
51 if (glfwGetCurrentContext() == nullptr) {
52 Console::println("EngineGLES2Renderer::initializeWindowSystemRendererContext(): glfwMakeContextCurrent(): Error: No window attached to context");
53 return false;
54 }
55 return true;
56}
57
59{
60 if (Engine::lightingShader != nullptr)
62
63 if (Engine::particlesShader != nullptr)
65
66 if (Engine::linesShader != nullptr)
68
69 if (Engine::currentEngine->shadowMapping != nullptr)
71
72 if (Engine::ezrShader != nullptr)
74}
75
77{
78 if (Engine::lightingShader != nullptr)
80
81 if (Engine::particlesShader != nullptr)
83
84 if (Engine::linesShader != nullptr)
86
87 if (Engine::currentEngine->shadowMapping != nullptr)
89
90 if (Engine::ezrShader != nullptr)
92}
93
95{
96 if (Engine::lightingShader != nullptr)
98
99 if (Engine::particlesShader != nullptr)
101
102 if (Engine::linesShader != nullptr)
104
105 if (Engine::currentEngine->shadowMapping != nullptr)
107
108 if (Engine::ezrShader != nullptr)
110}
111
112void EngineGLES2Renderer::onBindTexture(int contextIdx, int32_t textureId)
113{
114 if (Engine::lightingShader != nullptr)
115 Engine::lightingShader->bindTexture(contextIdx, textureId);
116
117 if (Engine::guiShader != nullptr)
118 Engine::guiShader->bindTexture(textureId);
119
120 if (Engine::currentEngine->shadowMapping != nullptr)
121 Engine::currentEngine->shadowMapping->bindTexture(contextIdx, textureId);
122
123 if (Engine::ezrShader != nullptr)
124 Engine::ezrShader->bindTexture(contextIdx, textureId);
125}
126
128{
129 if (Engine::lightingShader != nullptr)
131
132 if (Engine::currentEngine->shadowMapping != nullptr)
134
135 if (Engine::guiShader != nullptr)
137
138 if (Engine::ezrShader != nullptr)
140}
141
143{
144 if (Engine::lightingShader != nullptr)
146
147 if (Engine::particlesShader != nullptr)
149
150 if (Engine::linesShader != nullptr)
152
153 if (Engine::guiShader != nullptr)
155
156}
157
158void EngineGLES2Renderer::onUpdateLight(int contextIdx, int32_t lightId)
159{
160 if (Engine::lightingShader != nullptr)
161 Engine::lightingShader->updateLight(contextIdx, lightId);
162
163 if (Engine::currentEngine->shadowMapping != nullptr)
164 Engine::currentEngine->shadowMapping->updateLight(contextIdx, lightId);
165}
166
168{
169 if (Engine::lightingShader != nullptr)
171
172 if (Engine::currentEngine->shadowMapping != nullptr)
174
175 if (Engine::ezrShader != nullptr)
177}
178
180 if (Engine::lightingShader != nullptr)
181 Engine::lightingShader->setShader(contextIdx, getShader(contextIdx));
182
183 if (Engine::currentEngine->shadowMapping != nullptr)
184 Engine::currentEngine->shadowMapping->setShader(contextIdx, getShader(contextIdx));
185
186 if (Engine::ezrShader != nullptr)
187 Engine::ezrShader->setShader(contextIdx, getShader(contextIdx));
188}
189
191 if (Engine::lightingShader != nullptr)
193
194 if (Engine::currentEngine->shadowMapping != nullptr)
196
197 if (Engine::ezrShader != nullptr)
199}
200
201// end point for engine to create renderer
203{
205 Console::println("EngineGL2Renderer::createInstance(): Engine and renderer version do not match: '" + EngineGLES2Renderer::getRendererVersion() + "' != '" + Version::getVersion() + "'");
206 return nullptr;
207 }
208 Console::println("EngineGLES2Renderer::createInstance(): Creating EngineGLES2Renderer instance!");
209 return new EngineGLES2Renderer();
210}
EngineGLES2Renderer * createInstance()
Engine main class.
Definition: Engine.h:122
static STATIC_DLL_IMPEXT Engine * currentEngine
Definition: Engine.h:180
static STATIC_DLL_IMPEXT EZRShader * ezrShader
Definition: Engine.h:193
static STATIC_DLL_IMPEXT LightingShader * lightingShader
Definition: Engine.h:196
static STATIC_DLL_IMPEXT LinesShader * linesShader
Definition: Engine.h:198
static STATIC_DLL_IMPEXT GUIShader * guiShader
Definition: Engine.h:200
static STATIC_DLL_IMPEXT ParticlesShader * particlesShader
Definition: Engine.h:197
ShadowMapping * shadowMapping
Definition: Engine.h:266
void updateMatrices(int contextIdx)
Update program matrices.
Definition: EZRShader.cpp:79
void setShader(int contextIdx, const string &id)
Set shader.
Definition: EZRShader.cpp:112
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
Interface to lighting shader program.
void updateLight(int contextIdx, int32_t lightId)
Update light to program.
void updateMatrices(int contextIdx)
Update matrices to program.
void updateEffect(int contextIdx)
Update effect to program.
void setShader(int contextIdx, const string &id)
Set shader.
void updateTextureMatrix(int contextIdx)
Update texture matrix to program.
void updateShaderParameters(int contextIdx)
Update shader parameters.
void updateMaterial(int contextIdx)
Update material to program.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void updateMatrices(int contextIdx)
Update matrices to program.
void updateEffect(int contextIdx)
Update effect to program.
Definition: LinesShader.cpp:85
void updateMatrices(int contextIdx)
Update matrices to program.
void updateEffect(int contextIdx)
Update effect to program.
Engine connector of GLES2 renderer to other engine functionality.
void onUpdateCameraMatrix(int contextIdx) override
Update camera matrix event.
void onUpdateModelViewMatrix(int contextIdx) override
Update model view matrix event.
void onUpdateProjectionMatrix(int contextIdx) override
Update projection matrix event.
void onUpdateTextureMatrix(int contextIdx) override
Update texture matrix for active texture unit event.
void onBindTexture(int contextIdx, int32_t textureId) override
On bind texture event.
void onUpdateMaterial(int contextIdx) override
On update material.
bool prepareWindowSystemRendererContext(int tryIdx) override
Prepare window system renderer context.
void onUpdateEffect(int contextIdx) override
Update material.
bool initializeWindowSystemRendererContext(GLFWwindow *glfwWindow) override
Initialize window system renderer context.
void onUpdateLight(int contextIdx, int32_t lightId) override
Update light.
void onUpdateShaderParameters(int contextIdx) override
On update shader parameters.
void onUpdateShader(int contextIdx) override
On update shader.
const string & getShader(int contextIdx)
Get shader.
Definition: Renderer.h:1167
void updateLight(int contextIdx, int32_t lightId)
Update light.
void updateMatrices(int contextIdx)
Update matrices.
void setShader(int contextIdx, const string &id)
Set shader.
void updateTextureMatrix(int contextIdx)
Update texture matrix.
void updateShaderParameters(int contextIdx)
Update shader parameters.
void updateMaterial(int contextIdx)
Update material.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void updateEffect()
Update effect to program.
Definition: GUIShader.cpp:139
void bindTexture(int32_t textureId)
Bind texture.
Definition: GUIShader.cpp:125
void updateTextureMatrix()
Update texure matrix to program.
Definition: GUIShader.cpp:152
static string getVersion()
Definition: Version.cpp:11