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 --- src/engine.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/engine.cpp') 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 * -- 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/engine.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