1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
/**
* @file render.cpp
*
* Copyright (C) 2019 Clyne Sullivan
* Copyright (C) 2019 Belle-Isle, Andrew <drumsetmonkey@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <render.hpp>
#include <components/Render.hpp>
#include <components/Position.hpp>
#include <components/Light.hpp>
#include <components/Script.hpp>
void RenderSystem::configure([[maybe_unused]] entityx::EntityManager& entities,
[[maybe_unused]] entityx::EventManager& events)
{
events.subscribe<NewRenderEvent>(*this);
events.subscribe<WorldMeshUpdateEvent>(*this);
events.subscribe<entityx::ComponentAddedEvent<Player>>(*this);
init();
}
void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities,
[[maybe_unused]] entityx::EventManager& events,
[[maybe_unused]] entityx::TimeDelta dt)
{
// TODO move these to only happen once to speed up rendering
static GLuint s = worldShader.getProgram();
static GLuint v = worldShader.getUniform("view");
static GLuint p = worldShader.getUniform("projection");
static GLuint m = worldShader.getUniform("model");
static GLuint a = worldShader.getAttribute("vertex");
static GLuint t = worldShader.getAttribute("texc");
static GLuint r = worldShader.getAttribute("trans");
static GLuint q = worldShader.getUniform("textu");
static GLuint n = worldShader.getUniform("normu");
static GLuint b = worldShader.getUniform("AmbientLight");
static GLuint f = worldShader.getUniform("Flipped");
static glm::vec3 rot = glm::vec3(0.0f, 0.0f, -1.0f);
camPos.z = 15.0f;
/***********
* SETUP *
***********/
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
glEnable(GL_DEPTH_TEST);
glEnable(GL_CULL_FACE);
glEnable(GL_POLYGON_OFFSET_FILL);
glm::mat4 view = glm::lookAt(camPos, // Pos
camPos + rot, // Facing
glm::vec3(0.0f, 1.0f, 0.0f)); // Up
//glm::mat4 projection = glm::perspective(45.0f,
// ((float)width/(float)height),
// 0.01f,
// 2048.0f);
float scale = 40.0f;
float scaleWidth = static_cast<float>(width) / scale;
float scaleHeight = static_cast<float>(height) / scale;
//glm::mat4 projection = glm::ortho(-(scaleWidth/2), // Left
// (scaleWidth/2), // Right
// -(scaleHeight/2), // Bottom
// (scaleHeight/2), // Top
// 100.0f, // zFar
// -100.0f // zNear
// );
glm::mat4 projection = glm::perspective(45.0f,
((float)width/(float)height),
0.01f,
2048.0f);
glm::mat4 model = glm::mat4(1.0f);
model = glm::scale(model, glm::vec3(1.0f, 1.0f, -1.0f));
glUseProgram(s);
glUniformMatrix4fv(v, 1, GL_FALSE, glm::value_ptr(view));
glUniformMatrix4fv(p, 1, GL_FALSE, glm::value_ptr(projection));
glUniformMatrix4fv(m, 1, GL_FALSE, glm::value_ptr(model));
glEnableVertexAttribArray(a);
glEnableVertexAttribArray(t);
glEnableVertexAttribArray(r);
// Ambient light, for now this is static
GLfloat amb[4] = {1.0f, 1.0f, 1.0f, 0.0f};
glUniform4fv(b, 1, amb);
/************
* CAMERA *
************/
try {
if (player.has_component<Position>()) {
Position *pos = player.component<Position>().get();
camPos.y = pos->y;
camPos.x = pos->x;
}
} catch (...) { // If the player doesn't exist or anything goes wrong
camPos.y = 0.0f;
camPos.x = 0.0f;
}
/**************
* LIGHTING *
**************/
std::vector<glm::vec3> lightPos;
std::vector<glm::vec4> lightColor;
int lightNum = 0;
entities.each<Light, Position>([&]
(entityx::Entity, Light &l, Position &p){
lightPos.push_back(glm::vec3(p.x, p.y, 1.0));
lightColor.push_back(glm::vec4(l.r, l.g, l.b, l.strength));
lightNum++;
});
glUniform1i(worldShader.getUniform("LightNum"), lightNum);
glUniform3fv(worldShader.getUniform("LightPos"),
lightPos.size(),
reinterpret_cast<GLfloat*>(lightPos.data()));
glUniform4fv(worldShader.getUniform("LightColor"),
lightColor.size(),
reinterpret_cast<GLfloat*>(lightColor.data()));
/*************
* DRAWING *
*************/
entities.each<Render, Position>(
[this](entityx::Entity, Render &rend, Position &p) {
if (!rend.visible)
return;
// If our component was created via script, call the entity's
// RenderIdle function
//if (e.has_component<Scripted>()) {
// e.component<Scripted>()->updateRender();
//}
float w = 0.5f;
float h = (float)rend.texture.height/rend.texture.width;
GLuint tri_vbo;
GLfloat tri_data[] = {
(float)p.x-w, (float)p.y , 0.0f, 0.0f, 1.0f, 1.0f,
(float)p.x+w, (float)p.y , 0.0f, 1.0f, 1.0f, 1.0f,
(float)p.x-w, (float)p.y+h, 0.0f, 0.0f, 0.0f, 1.0f,
(float)p.x+w, (float)p.y , 0.0f, 1.0f, 1.0f, 1.0f,
(float)p.x+w, (float)p.y+h, 0.0f, 1.0f, 0.0f, 1.0f,
(float)p.x-w, (float)p.y+h, 0.0f, 0.0f, 0.0f, 1.0f,
};
bool flipped = false;
// TODO flip nicely (aka model transformations)
if (rend.flipX) {
std::swap(tri_data[3], tri_data[9]);
tri_data[15] = tri_data[3];
std::swap(tri_data[27], tri_data[33]);
tri_data[21] = tri_data[27];
flipped = true;
}
glUniform1i(f, flipped ? 1 : 0);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, rend.texture.tex);
glUniform1i(q, 0);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, rend.normal.tex);
glUniform1i(n, 1);
glGenBuffers(1, &tri_vbo);
glBindBuffer(GL_ARRAY_BUFFER, tri_vbo);
glBufferData(GL_ARRAY_BUFFER, sizeof(tri_data), tri_data, GL_STREAM_DRAW);
glVertexAttribPointer(a, 3, GL_FLOAT, GL_FALSE,
6*sizeof(float), 0);
glVertexAttribPointer(t, 2, GL_FLOAT, GL_FALSE,
6*sizeof(float), (void*)(3*sizeof(float)));
glVertexAttribPointer(r, 1, GL_FLOAT, GL_FALSE,
6*sizeof(float), (void*)(5*sizeof(float)));
glDrawArrays(GL_TRIANGLES, 0, 6);
});
glUniform1i(f, 0);
// If we were given a world VBO render it
if (worldVBO) {
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, worldTexture);
glUniform1i(q, 0);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, worldNormal);
glUniform1i(n, 1);
glBindBuffer(GL_ARRAY_BUFFER, worldVBO);
glVertexAttribPointer(a, 3, GL_FLOAT, GL_FALSE,
6*sizeof(float), 0);
glVertexAttribPointer(t, 2, GL_FLOAT, GL_FALSE,
6*sizeof(float), (void*)(3*sizeof(float)));
glVertexAttribPointer(r, 1, GL_FLOAT, GL_FALSE,
6*sizeof(float), (void*)(5*sizeof(float)));
glDrawArrays(GL_TRIANGLES, 0, worldVertex);
}
glDisableVertexAttribArray(a);
glDisableVertexAttribArray(t);
glUseProgram(0);
/******************
* UI RENDERING *
******************/
static GLuint uiS = uiShader.getProgram();
static GLuint uiS_v = uiShader.getUniform("view");
static GLuint uiS_p = uiShader.getUniform("projection");
static GLuint uiS_m = uiShader.getUniform("model");
static GLuint uiS_a = uiShader.getAttribute("coord2d");
static GLuint uiS_t = uiShader.getAttribute("tex_coord");
static GLuint uiS_q = uiShader.getUniform("sampler");
glUseProgram(uiS);
view = glm::lookAt(glm::vec3(0.0f, 0.0f, 10.0f), // Pos
glm::vec3(0.0f, 0.0f, 1.0f), // Facing
glm::vec3(0.0f, 1.0f, 0.0f)); // Up
scale = 1.0f;
scaleWidth = static_cast<float>(width) / scale;
scaleHeight = static_cast<float>(height) / scale;
projection = glm::ortho(-scaleWidth/2.0f, // Left
scaleWidth/2, // Right
-scaleHeight/2, // Bottom
scaleHeight/2, // Top
100.0f, // zFar
-100.0f); // zNear
model = glm::mat4(1.0f);
glUniformMatrix4fv(uiS_v, 1, GL_FALSE, glm::value_ptr(view));
glUniformMatrix4fv(uiS_p, 1, GL_FALSE, glm::value_ptr(projection));
glUniformMatrix4fv(uiS_m, 1, GL_FALSE, glm::value_ptr(model));
glEnableVertexAttribArray(uiS_a);
glEnableVertexAttribArray(uiS_t);
// Update all UI VBOs
for (auto& r : uiRenders) {
auto& render = r.second;
glActiveTexture(GL_TEXTURE9);
glBindTexture(GL_TEXTURE_2D, render.tex);
glUniform1i(uiS_q, 9);
glBindBuffer(GL_ARRAY_BUFFER, r.first);
glVertexAttribPointer(uiS_a, 3, GL_FLOAT, GL_FALSE,
6*sizeof(float), 0);
glVertexAttribPointer(uiS_t, 2, GL_FLOAT, GL_FALSE,
6*sizeof(float), (void*)(3*sizeof(float)));
glDrawArrays(GL_TRIANGLES, 0, render.vertex);
}
glDisableVertexAttribArray(uiS_a);
glDisableVertexAttribArray(uiS_t);
/*************
* CLEANUP *
*************/
glUseProgram(0);
glDisable(GL_POLYGON_OFFSET_FILL);
glDisable(GL_CULL_FACE);
SDL_GL_SwapWindow(window.get());
}
int RenderSystem::init(void)
{
if (SDL_InitSubSystem(SDL_INIT_VIDEO) != 0) {
std::cerr << "SDL video failed to initialize: "
<< SDL_GetError() << std::endl;
return -1;
}
// Create window, managed by the unique_ptr
window.reset(SDL_CreateWindow(title,
SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
width, height,
SDL_WINDOW_OPENGL));
if (window.get() == nullptr) {
std::cerr << "SDL window creation failed: "
<< SDL_GetError() << std::endl;
return -1;
}
// Select an OpenGL 4.3 profile.
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK,
SDL_GL_CONTEXT_PROFILE_CORE);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 0);
SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 8);
context = SDL_GL_CreateContext(window.get());
GLenum err;
glewExperimental = GL_TRUE;
if((err=glewInit()) != GLEW_OK){
std::cerr << "GLEW was not able to initialize! Error: " <<
glewGetErrorString(err) << std::endl;
return -1;
}
SDL_GL_SetSwapInterval(0);
glEnable(GL_BLEND);
glEnable(GL_DEPTH_TEST);
//glDepthFunc(GL_LESS);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
worldShader.createProgram("Shaders/world.vert", "Shaders/world.frag");
worldShader.addUniform("projection");
worldShader.addUniform("view");
worldShader.addUniform("model");
worldShader.addAttribute("vertex");
worldShader.addAttribute("texc");
worldShader.addAttribute("trans");
worldShader.addUniform("textu");
worldShader.addUniform("normu");
worldShader.addUniform("LightPos");
worldShader.addUniform("LightColor");
worldShader.addUniform("LightNum");
worldShader.addUniform("AmbientLight");
worldShader.addUniform("Flipped");
uiShader.createProgram("Shaders/ui.vert", "Shaders/ui.frag");
uiShader.addUniform("projection");
uiShader.addUniform("view");
uiShader.addUniform("model");
uiShader.addAttribute("coord2d");
uiShader.addAttribute("tex_coord");
uiShader.addUniform("sampler");
glEnableVertexAttribArray(worldShader.getAttribute("vertex"));
glEnableVertexAttribArray(uiShader.getAttribute("coord2d"));
//glPolygonOffset(1.0, 1.0);
//glClearColor(0.6, 0.8, 1.0, 0.0);
camPos = glm::vec3(0.0f, 0.0f, 5.0f);
return 0;
}
/************
* EVENTS *
************/
void RenderSystem::receive(const NewRenderEvent &nre)
{
uiRenders.insert_or_assign(nre.vbo,
UIRenderData(nre.tex, nre.normal, nre.vertex));
}
void RenderSystem::receive(const WorldMeshUpdateEvent &wmu)
{
worldVBO = wmu.worldVBO;
worldVertex = wmu.numVertex;
worldTexture = wmu.worldTexture;
worldNormal = wmu.worldNormal;
}
void RenderSystem::receive(const entityx::ComponentAddedEvent<Player> &cae)
{
player = cae.entity;
}
|