/** * @file render.cpp * * Copyright (C) 2019 Clyne Sullivan * Copyright (C) 2019 Belle-Isle, Andrew * * 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 . */ #include #include #include #include #include void RenderSystem::configure([[maybe_unused]] entityx::EntityManager& entities, [[maybe_unused]] entityx::EventManager& events) { events.subscribe(*this); events.subscribe(*this); events.subscribe>(*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 GLuint s = worldShader.getProgram(); GLuint v = worldShader.getUniform("view"); GLuint p = worldShader.getUniform("projection"); GLuint m = worldShader.getUniform("model"); GLuint a = worldShader.getAttribute("vertex"); GLuint t = worldShader.getAttribute("texc"); GLuint q = worldShader.getUniform("textu"); GLuint n = worldShader.getUniform("normu"); GLuint b = worldShader.getUniform("AmbientLight"); GLuint f = worldShader.getUniform("Flipped"); /*********** * SETUP * ***********/ glm::mat4 view = glm::lookAt(camPos, // Pos glm::vec3(camPos.x, camPos.y, 0.0f), // 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(width) / scale; float scaleHeight = static_cast(height) / scale; glm::mat4 projection = glm::ortho(-(scaleWidth/2), // Left (scaleWidth/2), // Right -(scaleHeight/2), // Bottom (scaleHeight/2), // Top 10.0f, // zFar -10.0f // zNear ); glm::mat4 model = glm::mat4(1.0f); glUseProgram(s); glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); glEnable(GL_DEPTH_TEST); 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)); glEnable(GL_CULL_FACE); glEnable(GL_POLYGON_OFFSET_FILL); glEnableVertexAttribArray(a); glEnableVertexAttribArray(t); // 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 *pos = player.component().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 lightPos; std::vector lightColor; int lightNum = 0; entities.each([&] (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(lightPos.data())); glUniform4fv(worldShader.getUniform("LightColor"), lightColor.size(), reinterpret_cast(lightColor.data())); /************* * DRAWING * *************/ entities.each( [this, a, q, t, n, f](entityx::Entity, Render &r, Position &p) { if (!r.visible) return; // If our component was created via script, call the entity's // RenderIdle function //if (e.has_component()) { // e.component()->updateRender(); //} float w = 0.5f; float h = (float)r.texture.height/r.texture.width; GLuint tri_vbo; GLfloat tri_data[] = { (float)p.x-w, (float)p.y , 00.0f, 0.0f, 1.0f, (float)p.x+w, (float)p.y , 00.0f, 1.0f, 1.0f, (float)p.x-w, (float)p.y+h, 00.0f, 0.0f, 0.0f, (float)p.x+w, (float)p.y , 00.0f, 1.0f, 1.0f, (float)p.x+w, (float)p.y+h, 00.0f, 1.0f, 0.0f, (float)p.x-w, (float)p.y+h, 00.0f, 0.0f, 0.0f, }; bool flipped = false; // TODO flip nicely (aka model transformations) if (r.flipX) { std::swap(tri_data[3], tri_data[8]); tri_data[13] = tri_data[3]; std::swap(tri_data[23], tri_data[28]); tri_data[18] = tri_data[23]; flipped = true; } glUniform1i(f, flipped ? 1 : 0); glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, r.texture.tex); glUniform1i(q, 0); glActiveTexture(GL_TEXTURE1); glBindTexture(GL_TEXTURE_2D, r.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, 5*sizeof(float), 0); glVertexAttribPointer(t, 2, GL_FLOAT, GL_FALSE, 5*sizeof(float), (void*)(3*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); //glBufferData(GL_ARRAY_BUFFER, // wm.size() * sizeof(WorldMeshData), // &wm.front(), // 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))); glDrawArrays(GL_TRIANGLES, 0, worldVertex); } // Update all UI VBOs for (auto& r : uiRenders) { auto& render = r.second; glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, render.tex); glUniform1i(q, 0); glActiveTexture(GL_TEXTURE1); glBindTexture(GL_TEXTURE_2D, render.normal); glUniform1i(n, 1); glBindBuffer(GL_ARRAY_BUFFER, r.first); 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))); glDrawArrays(GL_TRIANGLES, 0, render.vertex); } /************* * CLEANUP * *************/ glDisableVertexAttribArray(a); glDisableVertexAttribArray(t); glDisable(GL_POLYGON_OFFSET_FILL); glDisable(GL_CULL_FACE); glUseProgram(0); SDL_GL_SwapWindow(window.get()); } int RenderSystem::init(void) { // Select an OpenGL 4.3 profile. SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 4); SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 3); 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; } 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.addUniform("textu"); worldShader.addUniform("normu"); worldShader.addUniform("LightPos"); worldShader.addUniform("LightColor"); worldShader.addUniform("LightNum"); worldShader.addUniform("AmbientLight"); worldShader.addUniform("Flipped"); glEnableVertexAttribArray(worldShader.getAttribute("vertex")); glUseProgram(worldShader.getProgram()); // TODO //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 &cae) { player = cae.entity; }