diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-02 01:05:57 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-02 01:05:57 -0400 |
commit | ea35ad60506407040f7b9fae65c5bdc18f9576bb (patch) | |
tree | 7933d683cf84c6cd27ae2568404ed6026637b5b8 /src | |
parent | e8d3e8f0522b6d7896f1e3d330c70af5376f7c4c (diff) |
Added Lua update function that allows certain entities to update every loop
Diffstat (limited to 'src')
-rw-r--r-- | src/components/Render.hpp | 8 | ||||
-rw-r--r-- | src/components/Script.hpp | 6 | ||||
-rw-r--r-- | src/engine.cpp | 1 | ||||
-rw-r--r-- | src/render.cpp | 34 | ||||
-rw-r--r-- | src/script.cpp | 9 |
5 files changed, 47 insertions, 11 deletions
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<std::string>(tab["texture"])); - if (tab["normal"].get_type() == sol::type::string) { + if (tab["normal"].get_type() == sol::type::string) this->normal = Texture(static_cast<std::string>(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<InputSystem>(dt); + systems.update<ScriptSystem>(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<glm::vec3> lightPos; std::vector<glm::vec4> lightColor; @@ -107,6 +114,11 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, lightColor.size(), reinterpret_cast<GLfloat*>(lightColor.data())); + /************* + * DRAWING * + *************/ + + entities.each<Render, Position>( [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 <components/Script.hpp> +void ScriptSystem::update([[maybe_unused]] entityx::EntityManager& entities, [[maybe_unused]] entityx::EventManager& events, [[maybe_unused]] entityx::TimeDelta dt) { + entities.each<Scripted>([](entityx::Entity, Scripted &s){ + s.update(); + }); } @@ -99,7 +103,8 @@ void ScriptSystem::scriptExport(void) lua.new_usertype<Render>("Render", sol::constructors<Render(std::string), Render()>(), "visible", &Render::visible, - "texture", &Render::texture); + "texture", &Render::texture, + "flipx", &Render::flipX); lua.new_usertype<Velocity>("Velocity", sol::constructors<Velocity(double, double), Velocity()>(), |