TDME2 1.9.121
EngineGL3Renderer.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#if !defined(__APPLE__)
12 #define GLEW_NO_GLU
13 #include <GL/glew.h>
14 #if defined(_WIN32)
15 #include <GL/wglew.h>
16 #endif
17#endif
18
19#include <string>
20
21#include <tdme/tdme.h>
27#include <tdme/engine/Engine.h>
28#include <tdme/engine/Version.h>
30
32
33using std::string;
34
43
44EngineGL3Renderer::EngineGL3Renderer()
45{
46}
47
49 array<array<int, 3>, 2> glVersions = {{ {{1, 4, 3}}, {{1, 3, 2}} }};
50 if (tryIdx >= glVersions.size()) return false;
51 #if defined(__APPLE__)
52 glfwWindowHint(GLFW_COCOA_RETINA_FRAMEBUFFER, GLFW_FALSE);
53 #endif
54 auto& glVersion = glVersions[tryIdx];
55 #if !defined(__HAIKU__)
56 // does not work for now with Haiku OS
57 glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, glVersion[0] == 1?GLFW_TRUE:GLFW_FALSE);
58 #endif
59 glfwWindowHint(GLFW_OPENGL_PROFILE, glVersion[0] == 1?GLFW_OPENGL_CORE_PROFILE:GLFW_OPENGL_ANY_PROFILE);
60 glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, glVersion[1]);
61 glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, glVersion[2]);
62 return true;
63}
64
66 glfwMakeContextCurrent(glfwWindow);
67 if (glfwGetCurrentContext() == nullptr) {
68 Console::println("EngineGL3Renderer::initializeWindowSystemRendererContext(): glfwMakeContextCurrent(): Error: No window attached to context");
69 return false;
70 }
71 #if !defined(__APPLE__)
72 //glewExperimental = true;
73 GLenum glewInitStatus = glewInit();
74 if (glewInitStatus != GLEW_OK) {
75 Console::println("EngineGL3Renderer::initializeWindowSystemRendererContext(): glewInit(): Error: " + (string((char*)glewGetErrorString(glewInitStatus))));
76 return false;
77 }
78 #endif
79 return true;
80}
81
83{
84 if (Engine::lightingShader != nullptr)
86
87 if (Engine::particlesShader != nullptr)
89
90 if (Engine::linesShader != nullptr)
92
93 if (Engine::currentEngine->shadowMapping != nullptr)
95
96 if (Engine::ezrShader != nullptr)
98}
99
101{
102 if (Engine::lightingShader != nullptr)
104
105 if (Engine::particlesShader != nullptr)
107
108 if (Engine::linesShader != nullptr)
110
111 if (Engine::currentEngine->shadowMapping != nullptr)
113
114 if (Engine::ezrShader != nullptr)
116}
117
119{
120 if (Engine::lightingShader != nullptr)
122
123 if (Engine::particlesShader != nullptr)
125
126 if (Engine::linesShader != nullptr)
128
129 if (Engine::currentEngine->shadowMapping != nullptr)
131
132 if (Engine::ezrShader != nullptr)
134}
135
136void EngineGL3Renderer::onBindTexture(int contextIdx, int32_t textureId)
137{
138 if (Engine::lightingShader != nullptr)
139 Engine::lightingShader->bindTexture(contextIdx, textureId);
140
141 if (Engine::guiShader != nullptr)
142 Engine::guiShader->bindTexture(textureId);
143
144 if (Engine::currentEngine->shadowMapping != nullptr)
145 Engine::currentEngine->shadowMapping->bindTexture(contextIdx, textureId);
146
147 if (Engine::ezrShader != nullptr)
148 Engine::ezrShader->bindTexture(contextIdx, textureId);
149}
150
152{
153 if (Engine::lightingShader != nullptr)
155
156 if (Engine::currentEngine->shadowMapping != nullptr)
158
159 if (Engine::guiShader != nullptr)
161
162 if (Engine::ezrShader != nullptr)
164}
165
167{
168 if (Engine::lightingShader != nullptr)
170
171 if (Engine::particlesShader != nullptr)
173
174 if (Engine::linesShader != nullptr)
176
177 if (Engine::guiShader != nullptr)
179
180}
181
182void EngineGL3Renderer::onUpdateLight(int contextIdx, int32_t lightId)
183{
184 if (Engine::lightingShader != nullptr)
185 Engine::lightingShader->updateLight(contextIdx, lightId);
186
187 if (Engine::currentEngine->shadowMapping != nullptr)
188 Engine::currentEngine->shadowMapping->updateLight(contextIdx, lightId);
189}
190
192{
193 if (Engine::lightingShader != nullptr)
195
196 if (Engine::currentEngine->shadowMapping != nullptr)
198
199 if (Engine::ezrShader != nullptr)
201}
202
204 if (Engine::lightingShader != nullptr)
205 Engine::lightingShader->setShader(contextIdx, getShader(contextIdx));
206
207 if (Engine::currentEngine->shadowMapping != nullptr)
208 Engine::currentEngine->shadowMapping->setShader(contextIdx, getShader(contextIdx));
209
210 if (Engine::ezrShader != nullptr)
211 Engine::ezrShader->setShader(contextIdx, getShader(contextIdx));
212}
213
215 if (Engine::lightingShader != nullptr)
217
218 if (Engine::currentEngine->shadowMapping != nullptr)
220
221 if (Engine::ezrShader != nullptr)
223}
224
225// end point for engine to create renderer
227{
229 Console::println("EngineGL3Renderer::createInstance(): Engine and renderer version do not match: '" + EngineGL3Renderer::getRendererVersion() + "' != '" + Version::getVersion() + "'");
230 return nullptr;
231 }
232 Console::println("EngineGL3Renderer::createInstance(): Creating EngineGL3Renderer instance!");
233 return new EngineGL3Renderer();
234}
EngineGL3Renderer * 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 GL3 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