From eb028c960be2eeaee6e5177bc9c83a489e9209f2 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sun, 1 Sep 2019 19:02:49 -0400 Subject: THE CAT IS BACK --- src/render.cpp | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) (limited to 'src/render.cpp') diff --git a/src/render.cpp b/src/render.cpp index 2771535..9355513 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -37,6 +37,9 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, 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"); /*********** * SETUP * @@ -74,31 +77,43 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, glEnable(GL_POLYGON_OFFSET_FILL); glEnableVertexAttribArray(a); + glEnableVertexAttribArray(t); /************* * DRAWING * *************/ entities.each( - [this, a](entityx::Entity, Render &r, Position &p) { + [this, a, q, t](entityx::Entity, Render &r, Position &p) { if (!r.visible) return; + float w = r.texture.width/2.0f; + float h = r.texture.height; + GLuint tri_vbo; GLfloat tri_data[] = { - (float)p.x-10.0f, (float)p.y-10.0f, 00.0f, - (float)p.x+10.0f, (float)p.y-10.0f, 00.0f, - (float)p.x+00.0f, (float)p.y+10.0f, 00.0f, + (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, }; + glActiveTexture(GL_TEXTURE0); + glBindTexture(GL_TEXTURE_2D, r.texture.tex); + glUniform1i(q, 0); + 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, 0, 0); - glDrawArrays(GL_TRIANGLES, 0, 3); - + 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); }); @@ -106,6 +121,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, * CLEANUP * *************/ glDisableVertexAttribArray(a); + glDisableVertexAttribArray(t); glDisable(GL_POLYGON_OFFSET_FILL); glDisable(GL_CULL_FACE); @@ -163,6 +179,9 @@ int RenderSystem::init(void) worldShader.addUniform("model"); worldShader.addAttribute("vertex"); + worldShader.addAttribute("texc"); + + worldShader.addUniform("textu"); glEnableVertexAttribArray(worldShader.getAttribute("vertex")); glUseProgram(worldShader.getProgram()); -- cgit v1.2.3 From 3ffcf5e332dc4cb6cf2e966db5d0d3a369eee711 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sun, 1 Sep 2019 19:19:06 -0400 Subject: Scaled up entities and stopped player from flashing --- Scripts/init.lua | 10 +++++----- src/render.cpp | 1 + src/render.hpp | 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) (limited to 'src/render.cpp') diff --git a/Scripts/init.lua b/Scripts/init.lua index 3e35da9..9983c98 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -18,11 +18,11 @@ bird = { visible = true }, Idle = function(self) - if (self.visibleTick >= 20) then - self.Render.visible = not self.Render.visible - self.visibleTick = 0 - end - self.visibleTick = self.visibleTick + 1 + --if (self.visibleTick >= 20) then + -- self.Render.visible = not self.Render.visible + -- self.visibleTick = 0 + --end + --self.visibleTick = self.visibleTick + 1 end, visibleTick = 0 } diff --git a/src/render.cpp b/src/render.cpp index 9355513..8e9cbdf 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -63,6 +63,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, ); glm::mat4 model = glm::mat4(1.0f); + model = glm::scale(model, glm::vec3(2.0f)); glUseProgram(s); diff --git a/src/render.hpp b/src/render.hpp index 6362d63..5d3025c 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -38,8 +38,8 @@ class RenderSystem : public entityx::System { private: constexpr static const char *title = "gamedev2"; - constexpr static int width = 640; - constexpr static int height = 480; + constexpr static int width = 1280; + constexpr static int height = 720; std::unique_ptr window; SDL_GLContext context; -- cgit v1.2.3 From 7f66a924156e6baa9110e2e023e3a24c31ce95d3 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 2 Sep 2019 00:08:38 -0400 Subject: Added LIGHTING --- Scripts/init.lua | 45 +++++++++++++++++++++++++ Shaders/world.frag | 85 ++++++++++++++++++++++++++++++++++++++++++++++- Shaders/world.vert | 4 ++- src/components/Light.hpp | 54 ++++++++++++++++++++++++++++++ src/components/Render.hpp | 6 ++++ src/render.cpp | 36 ++++++++++++++++++-- src/script.cpp | 13 ++++++++ 7 files changed, 239 insertions(+), 4 deletions(-) create mode 100644 src/components/Light.hpp (limited to 'src/render.cpp') diff --git a/Scripts/init.lua b/Scripts/init.lua index 9983c98..37b1f0d 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -17,6 +17,12 @@ bird = { texture = "Assets/player.png", visible = true }, + Light = { + r = 1.0, + g = 1.0, + b = 1.0, + strength = 1.0 + }, Idle = function(self) --if (self.visibleTick >= 20) then -- self.Render.visible = not self.Render.visible @@ -38,6 +44,7 @@ cat = { }, Render = { texture = "Assets/cat.png", + normal = "Assets/cat_normal.png", visible = true }, Init = function(self) @@ -61,6 +68,12 @@ animal = { texture = "Assets/rabbit.png", visible = true }, + Light = { + r = 0.0, + b = 1.0, + g = 0.2, + strength = 2.0 + }, Idle = function(self) self.Velocity.x = -200 * math.sin(math.rad(self.counter)); self.Velocity.y = 500 * math.cos(math.rad(self.counter*5)); @@ -69,8 +82,40 @@ animal = { counter = 0; } +wall = { + Position = { + y = -100 + }, + Render = { + texture = "Assets/rock.png", + normal = "Assets/rock_normal.png", + visible = true + } +} + birdSpawn = game.spawn(bird); dogSpawn = game.spawn(cat); animalSpawn = game.spawn(animal); + +wallSpawn = game.spawn(wall); + +game.spawn({ + Velocity = { + x = 0, + y = 0 + }, + Light = { + r = 0.8, + g = 0.1, + b = 0.2, + strength = 0.75 + }, + counter = 0; + Idle = function(self) + self.Velocity.x = -100 * math.sin(math.rad(self.counter)); + self.Velocity.y = 100 * math.cos(math.rad(self.counter)); + self.counter = self.counter + 5; + end +}); diff --git a/Shaders/world.frag b/Shaders/world.frag index ded3ec0..5ef399d 100644 --- a/Shaders/world.frag +++ b/Shaders/world.frag @@ -7,11 +7,94 @@ precision mediump float; #endif uniform sampler2D textu; +uniform sampler2D normu; in vec2 texCoord; +in vec4 fragCoord; out vec4 FragColor; +uniform vec3 LightPos[32]; +uniform vec4 LightColor[32]; +uniform int LightNum; + void main() { - FragColor = texture(textu, texCoord); + //vec3 LightPos = vec3(0.0, 0.0, 0.0); + //vec4 LightColor = vec4(1.0, 1.0, 1.0, 1.0); + vec3 Falloff = vec3(0.1, 0.2, 0.0); + + vec4 DiffuseColor = texture2D(textu, texCoord); + + if (DiffuseColor.a < 0.1f) + discard; + + vec3 NormalMap = texture2D(normu, texCoord).rgb; + vec3 SumLight = vec3(0.0); + + for (int i = 0; i < LightNum; i++) { + vec3 LightDir = vec3(LightPos[i].xy - fragCoord.xy, LightPos[i].z); + + float D = length(LightDir); + + vec3 N = normalize(NormalMap * 2.0 - 1.0); + vec3 L = normalize(LightDir); + + vec3 Diffuse = (LightColor[i].rgb * LightColor[i].a) * max(dot(N, L), 0.0); + + vec3 Ambient = vec3(0.0); + + float Attenuation = + 1.0 / (Falloff.x + (Falloff.y * D) + (Falloff.z * D * D)); + + vec3 Intensity = Ambient + Diffuse + Attenuation; + vec3 FinalColor = DiffuseColor.rgb * Intensity; + + SumLight += FinalColor; + } + + FragColor = vec4(SumLight, DiffuseColor.a); +}; + +/* + vec4 normalMap = texture2D(normu, texCoord); + vec3 normal = normalMap.xyz * 2.0 - 1.0; + + if (pixTex.a < 0.1f) + discard; + + vec4 shadeColor = vec4(0.0f, 0.0f, 0.0f, 0.0f); + + float dist = length(light.xy - fragCoord.xy); + if (dist < light.w) { + float attenuation = clamp(1.0f - dist*dist/(light.w*light.w), 0.0f, 1.0f); + attenuation *= attenuation; + shadeColor += vec4(attenuation, attenuation, attenuation, 1.0f) * vec4(normal.xyz, 1); + //shadeColor = vec4(1.0) + 0.1*normal; + //shadeColor = vec4(1.0); + } + + //FragColor = pixTex * shadeColor; + FragColor = vec4(normal.xyz, 1); } +*/ + +/* + vec2 texLoc = vec2(texCoord.x, 1-texCoord.y); + vec4 pixTex = texture2D(texture, texLoc); + if (pixTex.a < 0.1f) + discard; + + vec4 shadeColor = vec4(0.0f, 0.0f, 0.0f, 0.0f); + if (lightImpact > 0.0f) { + for (int i = 0; i < lightSize; i++) { + vec2 loc = light[i].xy; + float dist = length(loc - fragCoord.xy); + if (dist < light[i].w) { + float attenuation = clamp(1.0f - dist*dist/(light[i].w*light[i].w), 0.0f, 1.0f); + attenuation *= attenuation; + shadeColor += (vec4(attenuation, attenuation, attenuation, 0.0f) * vec4(lightColor[i])) * lightImpact; + } + } + } + shadeColor += ambientLight; +*/ diff --git a/Shaders/world.vert b/Shaders/world.vert index 743ff3d..0760183 100644 --- a/Shaders/world.vert +++ b/Shaders/world.vert @@ -9,9 +9,11 @@ uniform mat4 view; uniform mat4 model; out vec2 texCoord; +out vec4 fragCoord; void main() { texCoord = texc; - gl_Position = projection * view * model * vec4(vertex, 1.0f); + fragCoord = vec4(vertex, 1.0f); + gl_Position = projection * view * model * fragCoord; } diff --git a/src/components/Light.hpp b/src/components/Light.hpp new file mode 100644 index 0000000..ee215a6 --- /dev/null +++ b/src/components/Light.hpp @@ -0,0 +1,54 @@ +/** + * @file Light.hpp + * + * 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 . + */ + +#ifndef COMPONENT_LIGHT_HPP_ +#define COMPONENT_LIGHT_HPP_ + +#include "Component.hpp" + +struct Light : Component, entityx::Component +{ +public: + float r, g, b; + float strength; + + Light() {} + Light(float _r, float _g, float _z, float _s) : + r(_r), g(_g), b(_z), strength(_s) {} + + Light FromLua(sol::object ref) + { + if (ref.get_type() == sol::type::table) { + sol::table tab = ref; + if (tab["r"] == sol::type::number) + this->r = tab["r"]; + if (tab["g"] == sol::type::number) + this->g = tab["g"]; + if (tab["b"] == sol::type::number) + this->b = tab["b"]; + if (tab["strength"] == sol::type::number) + this->strength = tab["strength"]; + } else { + throw std::string("Light component must be a table"); + } + return *this; + } +}; + +#endif//COMPONENT_LIGHT_HPP_ diff --git a/src/components/Render.hpp b/src/components/Render.hpp index 6cc26db..f5936ea 100644 --- a/src/components/Render.hpp +++ b/src/components/Render.hpp @@ -25,7 +25,9 @@ struct Render : Component, entityx::Component { public: Texture texture; + Texture normal; bool visible; + bool hasNormal = false; Render(std::string _file) : texture(_file), visible(true) {} @@ -40,6 +42,10 @@ public: this->visible = tab["visible"]; if (tab["texture"].get_type() == sol::type::string) this->texture = Texture(static_cast(tab["texture"])); + if (tab["normal"].get_type() == sol::type::string) { + this->normal = Texture(static_cast(tab["normal"])); + hasNormal = true; + } } else { throw std::string( "Render component table formatted incorrectly" diff --git a/src/render.cpp b/src/render.cpp index 8e9cbdf..bd168ed 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -21,6 +21,7 @@ #include #include #include +#include void RenderSystem::configure([[maybe_unused]] entityx::EntityManager& entities, [[maybe_unused]] entityx::EventManager& events) @@ -40,6 +41,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, GLuint t = worldShader.getAttribute("texc"); GLuint q = worldShader.getUniform("textu"); + GLuint n = worldShader.getUniform("normu"); /*********** * SETUP * @@ -84,8 +86,29 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, * DRAWING * *************/ + 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, 0.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())); + entities.each( - [this, a, q, t](entityx::Entity, Render &r, Position &p) { + [this, a, q, t, n](entityx::Entity, Render &r, Position &p) { if (!r.visible) return; @@ -108,6 +131,10 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, 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); @@ -183,6 +210,11 @@ int RenderSystem::init(void) worldShader.addAttribute("texc"); worldShader.addUniform("textu"); + worldShader.addUniform("normu"); + + worldShader.addUniform("LightPos"); + worldShader.addUniform("LightColor"); + worldShader.addUniform("LightNum"); glEnableVertexAttribArray(worldShader.getAttribute("vertex")); glUseProgram(worldShader.getProgram()); @@ -190,7 +222,7 @@ int RenderSystem::init(void) // TODO //glPolygonOffset(1.0, 1.0); - glClearColor(0.6, 0.8, 1.0, 0.0); + //glClearColor(0.6, 0.8, 1.0, 0.0); return 0; } diff --git a/src/script.cpp b/src/script.cpp index 80ac538..30328ab 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -80,6 +80,7 @@ void ScriptSystem::doFile(void) #include #include #include +#include void ScriptSystem::scriptExport(void) { @@ -108,6 +109,13 @@ void ScriptSystem::scriptExport(void) lua.new_usertype("Player", sol::constructors()); + lua.new_usertype("Light", + sol::constructors(), + "r", &Light::r, + "g", &Light::g, + "b", &Light::b, + "strength", &Light::strength); + auto gamespace = lua["game"].get_or_create(); gamespace.set_function("spawn", func); } @@ -162,6 +170,11 @@ sol::table ScriptSystem::spawn(sol::object param) (*toRet)["Player"] = e.assign().get(); } + if (tab["Light"] != nullptr) { + (*toRet)["Light"] = + e.assign(Light().FromLua(tab["Light"])).get(); + } + } else { // TODO better logging std::cerr << "Parameter to spawn() must be a table!" << std::endl; -- cgit v1.2.3 From e8d3e8f0522b6d7896f1e3d330c70af5376f7c4c Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 2 Sep 2019 00:15:35 -0400 Subject: Made lighting a bit softer --- Scripts/init.lua | 7 ------- Shaders/world.frag | 2 -- src/render.cpp | 2 +- 3 files changed, 1 insertion(+), 10 deletions(-) (limited to 'src/render.cpp') diff --git a/Scripts/init.lua b/Scripts/init.lua index 37b1f0d..9b8912f 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -9,10 +9,6 @@ bird = { y = 0.0 }, Name = "bord", - Init = function(self) - print(self.Position.x .. "," .. self.Position.y) - print("Bird spawn") - end, Render = { texture = "Assets/player.png", visible = true @@ -47,9 +43,6 @@ cat = { normal = "Assets/cat_normal.png", visible = true }, - Init = function(self) - print(self.Position.x .. "," .. self.Position.y) - end, counter = 0; Idle = function(self) self.Velocity.x = -100 * math.sin(math.rad(self.counter)); diff --git a/Shaders/world.frag b/Shaders/world.frag index 5ef399d..4a17a93 100644 --- a/Shaders/world.frag +++ b/Shaders/world.frag @@ -19,8 +19,6 @@ uniform int LightNum; void main() { - //vec3 LightPos = vec3(0.0, 0.0, 0.0); - //vec4 LightColor = vec4(1.0, 1.0, 1.0, 1.0); vec3 Falloff = vec3(0.1, 0.2, 0.0); vec4 DiffuseColor = texture2D(textu, texCoord); diff --git a/src/render.cpp b/src/render.cpp index bd168ed..d9cc054 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -94,7 +94,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, [&] (entityx::Entity, Light &l, Position &p){ - lightPos.push_back(glm::vec3(p.x, p.y, 0.0)); + lightPos.push_back(glm::vec3(p.x, p.y,-10.0)); lightColor.push_back(glm::vec4(l.r, l.g, l.b, l.strength)); lightNum++; }); -- cgit v1.2.3 From ea35ad60506407040f7b9fae65c5bdc18f9576bb Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 2 Sep 2019 01:05:57 -0400 Subject: Added Lua update function that allows certain entities to update every loop --- Assets/cat_normal.png | Bin 8324 -> 8481 bytes Scripts/init.lua | 16 ++++++++++++++- Shaders/world.frag | 51 +++++----------------------------------------- src/components/Render.hpp | 8 ++++---- src/components/Script.hpp | 6 ++++++ src/engine.cpp | 1 + src/render.cpp | 34 ++++++++++++++++++++++++++----- src/script.cpp | 9 ++++++-- 8 files changed, 67 insertions(+), 58 deletions(-) (limited to 'src/render.cpp') diff --git a/Assets/cat_normal.png b/Assets/cat_normal.png index ae10a49..5b5a74b 100644 Binary files a/Assets/cat_normal.png and b/Assets/cat_normal.png differ diff --git a/Scripts/init.lua b/Scripts/init.lua index 9b8912f..26b2aa7 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -26,6 +26,13 @@ bird = { --end --self.visibleTick = self.visibleTick + 1 end, + Update = function(self) + if self.Velocity.x < 0 then + self.Render.flipx = true + elseif self.Velocity.x > 0 then + self.Render.flipx = false + end + end, visibleTick = 0 } @@ -48,6 +55,13 @@ cat = { self.Velocity.x = -100 * math.sin(math.rad(self.counter)); self.Velocity.y = 100 * math.cos(math.rad(self.counter)); self.counter = self.counter + 5; + end, + Update = function(self) + if self.Velocity.x < 0 then + self.Render.flipx = true + elseif self.Velocity.x > 0 then + self.Render.flipx = false + end end } @@ -65,7 +79,7 @@ animal = { r = 0.0, b = 1.0, g = 0.2, - strength = 2.0 + strength = 1.0 }, Idle = function(self) self.Velocity.x = -200 * math.sin(math.rad(self.counter)); diff --git a/Shaders/world.frag b/Shaders/world.frag index 4a17a93..85941f2 100644 --- a/Shaders/world.frag +++ b/Shaders/world.frag @@ -16,9 +16,11 @@ out vec4 FragColor; uniform vec3 LightPos[32]; uniform vec4 LightColor[32]; uniform int LightNum; +uniform vec4 AmbientLight; void main() { + // Quadratic light falloff vec3 Falloff = vec3(0.1, 0.2, 0.0); vec4 DiffuseColor = texture2D(textu, texCoord); @@ -37,9 +39,10 @@ void main() vec3 N = normalize(NormalMap * 2.0 - 1.0); vec3 L = normalize(LightDir); - vec3 Diffuse = (LightColor[i].rgb * LightColor[i].a) * max(dot(N, L), 0.0); + vec3 Diffuse = + (LightColor[i].rgb * LightColor[i].a) * max(dot(N, L), 0.0); - vec3 Ambient = vec3(0.0); + vec3 Ambient = AmbientLight.rgb * AmbientLight.a; float Attenuation = 1.0 / (Falloff.x + (Falloff.y * D) + (Falloff.z * D * D)); @@ -52,47 +55,3 @@ void main() FragColor = vec4(SumLight, DiffuseColor.a); }; - -/* - vec4 normalMap = texture2D(normu, texCoord); - vec3 normal = normalMap.xyz * 2.0 - 1.0; - - if (pixTex.a < 0.1f) - discard; - - vec4 shadeColor = vec4(0.0f, 0.0f, 0.0f, 0.0f); - - float dist = length(light.xy - fragCoord.xy); - if (dist < light.w) { - float attenuation = clamp(1.0f - dist*dist/(light.w*light.w), 0.0f, 1.0f); - attenuation *= attenuation; - shadeColor += vec4(attenuation, attenuation, attenuation, 1.0f) * vec4(normal.xyz, 1); - //shadeColor = vec4(1.0) + 0.1*normal; - //shadeColor = vec4(1.0); - } - - //FragColor = pixTex * shadeColor; - FragColor = vec4(normal.xyz, 1); -} -*/ - -/* - vec2 texLoc = vec2(texCoord.x, 1-texCoord.y); - vec4 pixTex = texture2D(texture, texLoc); - if (pixTex.a < 0.1f) - discard; - - vec4 shadeColor = vec4(0.0f, 0.0f, 0.0f, 0.0f); - if (lightImpact > 0.0f) { - for (int i = 0; i < lightSize; i++) { - vec2 loc = light[i].xy; - float dist = length(loc - fragCoord.xy); - if (dist < light[i].w) { - float attenuation = clamp(1.0f - dist*dist/(light[i].w*light[i].w), 0.0f, 1.0f); - attenuation *= attenuation; - shadeColor += (vec4(attenuation, attenuation, attenuation, 0.0f) * vec4(lightColor[i])) * lightImpact; - } - } - } - shadeColor += ambientLight; -*/ diff --git a/src/components/Render.hpp b/src/components/Render.hpp index f5936ea..3f1750f 100644 --- a/src/components/Render.hpp +++ b/src/components/Render.hpp @@ -27,7 +27,7 @@ public: Texture texture; Texture normal; bool visible; - bool hasNormal = false; + bool flipX = false; Render(std::string _file) : texture(_file), visible(true) {} @@ -42,10 +42,10 @@ public: this->visible = tab["visible"]; if (tab["texture"].get_type() == sol::type::string) this->texture = Texture(static_cast(tab["texture"])); - if (tab["normal"].get_type() == sol::type::string) { + if (tab["normal"].get_type() == sol::type::string) this->normal = Texture(static_cast(tab["normal"])); - hasNormal = true; - } + if (tab["flipx"].get_type() == sol::type::boolean) + this->flipX = tab["flipx"]; } else { throw std::string( "Render component table formatted incorrectly" diff --git a/src/components/Script.hpp b/src/components/Script.hpp index 66addc8..069fea9 100644 --- a/src/components/Script.hpp +++ b/src/components/Script.hpp @@ -47,6 +47,12 @@ public: caller["Idle"](caller); // Call idle function and pass itself // in or to fulfill the 'self' param } + + void update(void) + { + if (caller["Update"] == sol::type::function) + caller["Update"](caller); + } }; #endif // COMPONENT_SCRIPT_HPP_ diff --git a/src/engine.cpp b/src/engine.cpp index f235651..aa3ccc5 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -67,6 +67,7 @@ void Engine::logicLoop(void) }); systems.update(dt); + systems.update(dt); /******************* * LOGIC UPDATES * diff --git a/src/render.cpp b/src/render.cpp index d9cc054..4990955 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -33,6 +33,7 @@ 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"); @@ -42,6 +43,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, GLuint q = worldShader.getUniform("textu"); GLuint n = worldShader.getUniform("normu"); + GLuint b = worldShader.getUniform("AmbientLight"); /*********** * SETUP * @@ -82,9 +84,14 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, glEnableVertexAttribArray(a); glEnableVertexAttribArray(t); - /************* - * DRAWING * - *************/ + GLfloat amb[4] = {1.0f, 1.0f, 1.0f, 0.0f}; + + glUniform4fv(b, 1, amb); + + /************** + * LIGHTING * + **************/ + std::vector lightPos; std::vector lightColor; @@ -107,6 +114,11 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, lightColor.size(), reinterpret_cast(lightColor.data())); + /************* + * DRAWING * + *************/ + + entities.each( [this, a, q, t, n](entityx::Entity, Render &r, Position &p) { @@ -127,6 +139,15 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, (float)p.x-w, (float)p.y+h, 00.0f, 0.0f, 0.0f, }; + // 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]; + } + glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, r.texture.tex); glUniform1i(q, 0); @@ -139,8 +160,10 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, 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))); + 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); }); @@ -215,6 +238,7 @@ int RenderSystem::init(void) worldShader.addUniform("LightPos"); worldShader.addUniform("LightColor"); worldShader.addUniform("LightNum"); + worldShader.addUniform("AmbientLight"); glEnableVertexAttribArray(worldShader.getAttribute("vertex")); glUseProgram(worldShader.getProgram()); diff --git a/src/script.cpp b/src/script.cpp index 30328ab..a886ca3 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -36,10 +36,14 @@ void ScriptSystem::configure(entityx::EntityManager& entities, //init(); } -void ScriptSystem::update([[maybe_unused]] entityx::EntityManager& entites, +#include +void ScriptSystem::update([[maybe_unused]] entityx::EntityManager& entities, [[maybe_unused]] entityx::EventManager& events, [[maybe_unused]] entityx::TimeDelta dt) { + entities.each([](entityx::Entity, Scripted &s){ + s.update(); + }); } @@ -99,7 +103,8 @@ void ScriptSystem::scriptExport(void) lua.new_usertype("Render", sol::constructors(), "visible", &Render::visible, - "texture", &Render::texture); + "texture", &Render::texture, + "flipx", &Render::flipX); lua.new_usertype("Velocity", sol::constructors(), -- cgit v1.2.3 From b52920a35eb69d1a258c737e3114fbe5cfe9aca5 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 2 Sep 2019 01:42:36 -0400 Subject: Changed Lua Idle function names --- Scripts/init.lua | 4 ++-- src/components/Script.hpp | 15 +++++++++++---- src/engine.cpp | 12 ++++++------ src/render.cpp | 13 +++++++++---- src/script.cpp | 2 +- 5 files changed, 29 insertions(+), 17 deletions(-) (limited to 'src/render.cpp') diff --git a/Scripts/init.lua b/Scripts/init.lua index 26b2aa7..4a874b2 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -26,7 +26,7 @@ bird = { --end --self.visibleTick = self.visibleTick + 1 end, - Update = function(self) + PhysicsIdle = function(self) if self.Velocity.x < 0 then self.Render.flipx = true elseif self.Velocity.x > 0 then @@ -56,7 +56,7 @@ cat = { self.Velocity.y = 100 * math.cos(math.rad(self.counter)); self.counter = self.counter + 5; end, - Update = function(self) + PhysicsIdle = function(self) if self.Velocity.x < 0 then self.Render.flipx = true elseif self.Velocity.x > 0 then diff --git a/src/components/Script.hpp b/src/components/Script.hpp index 069fea9..b3c89f3 100644 --- a/src/components/Script.hpp +++ b/src/components/Script.hpp @@ -42,16 +42,23 @@ public: return *this; } - void exec(void) { + void exec(void) + { if (caller["Idle"] == sol::type::function) caller["Idle"](caller); // Call idle function and pass itself // in or to fulfill the 'self' param } - void update(void) + void updatePhysics(void) + { + if (caller["PhysicsIdle"] == sol::type::function) + caller["PhysicsIdle"](caller); + } + + void updateRender(void) { - if (caller["Update"] == sol::type::function) - caller["Update"](caller); + if (caller["RenderIdle"] == sol::type::function) + caller["RenderIdle"](caller); } }; diff --git a/src/engine.cpp b/src/engine.cpp index aa3ccc5..2916a6e 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -30,6 +30,10 @@ #include "components/Position.hpp" #include "components/Velocity.hpp" +using namespace std::chrono_literals; +namespace cr = std::chrono; +typedef std::chrono::high_resolution_clock mc; + int Engine::init(void) { systems.add(); @@ -46,10 +50,6 @@ int Engine::init(void) void Engine::logicLoop(void) { - using namespace std::chrono_literals; - namespace cr = std::chrono; - typedef std::chrono::high_resolution_clock mc; - entityx::TimeDelta dt = 0; /**< Elapsed milliseconds since each loop */ double elapsed = 0; @@ -98,9 +98,9 @@ void Engine::logicLoop(void) void Engine::renderLoop(void) { + entityx::TimeDelta dt = 0; /**< Elapsed milliseconds since each loop */ while (shouldRun()) { - systems.update(0); - std::this_thread::yield(); + systems.update(dt); } } diff --git a/src/render.cpp b/src/render.cpp index 4990955..65b8441 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -22,6 +22,7 @@ #include #include #include +#include void RenderSystem::configure([[maybe_unused]] entityx::EntityManager& entities, [[maybe_unused]] entityx::EventManager& events) @@ -84,8 +85,8 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, 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); /************** @@ -97,8 +98,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, std::vector lightColor; int lightNum = 0; - entities.each( - [&] + entities.each([&] (entityx::Entity, Light &l, Position &p){ lightPos.push_back(glm::vec3(p.x, p.y,-10.0)); @@ -118,13 +118,18 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, * DRAWING * *************/ - entities.each( [this, a, q, t, n](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 = r.texture.width/2.0f; float h = r.texture.height; diff --git a/src/script.cpp b/src/script.cpp index a886ca3..fa485bc 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -42,7 +42,7 @@ void ScriptSystem::update([[maybe_unused]] entityx::EntityManager& entities, [[maybe_unused]] entityx::TimeDelta dt) { entities.each([](entityx::Entity, Scripted &s){ - s.update(); + s.updatePhysics(); }); } -- cgit v1.2.3 From 062a7e2baad74f49f2548793a25f0cf5e4ae6f86 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 2 Sep 2019 01:52:56 -0400 Subject: Fixed flipped texture normals being displayed properly in shaders --- Shaders/world.frag | 3 +++ src/render.cpp | 10 +++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) (limited to 'src/render.cpp') diff --git a/Shaders/world.frag b/Shaders/world.frag index 85941f2..881127b 100644 --- a/Shaders/world.frag +++ b/Shaders/world.frag @@ -17,6 +17,7 @@ uniform vec3 LightPos[32]; uniform vec4 LightColor[32]; uniform int LightNum; uniform vec4 AmbientLight; +uniform int Flipped; void main() { @@ -33,6 +34,8 @@ void main() for (int i = 0; i < LightNum; i++) { vec3 LightDir = vec3(LightPos[i].xy - fragCoord.xy, LightPos[i].z); + if (Flipped == 1) + LightDir.x = -LightDir.x; float D = length(LightDir); diff --git a/src/render.cpp b/src/render.cpp index 65b8441..7ae2fd7 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -45,6 +45,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, GLuint q = worldShader.getUniform("textu"); GLuint n = worldShader.getUniform("normu"); GLuint b = worldShader.getUniform("AmbientLight"); + GLuint f = worldShader.getUniform("Flipped"); /*********** * SETUP * @@ -119,7 +120,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, *************/ entities.each( - [this, a, q, t, n](entityx::Entity, Render &r, Position &p) { + [this, a, q, t, n, f](entityx::Entity, Render &r, Position &p) { if (!r.visible) return; @@ -144,6 +145,8 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, (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]); @@ -151,8 +154,12 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, 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); @@ -244,6 +251,7 @@ int RenderSystem::init(void) worldShader.addUniform("LightColor"); worldShader.addUniform("LightNum"); worldShader.addUniform("AmbientLight"); + worldShader.addUniform("Flipped"); glEnableVertexAttribArray(worldShader.getAttribute("vertex")); glUseProgram(worldShader.getProgram()); -- cgit v1.2.3