From 7644b740e87053838f3c7a80e88ad192fcf1a5e2 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 21 Oct 2017 13:50:04 -0400 Subject: lightsgit status! fireflies --- assets/style/classic/bg/insideWoodHouse.png | Bin 23738 -> 8078 bytes include/components/all.hpp | 1 + include/components/light.hpp | 26 ++++++++++++ include/systems/light.hpp | 34 ++++++++++++++++ src/engine.cpp | 3 ++ src/render.cpp | 2 + src/systems/light.cpp | 60 ++++++++++++++++++++++++++++ src/world.cpp | 2 + xcf/insideWoodHouse.xcf | Bin 42953 -> 12756 bytes xml/entities.xml | 1 + 10 files changed, 129 insertions(+) create mode 100644 include/components/light.hpp create mode 100644 include/systems/light.hpp create mode 100644 src/systems/light.cpp diff --git a/assets/style/classic/bg/insideWoodHouse.png b/assets/style/classic/bg/insideWoodHouse.png index 47d3918..f926cb2 100644 Binary files a/assets/style/classic/bg/insideWoodHouse.png and b/assets/style/classic/bg/insideWoodHouse.png differ diff --git a/include/components/all.hpp b/include/components/all.hpp index 7c4e0d1..3c243a7 100644 --- a/include/components/all.hpp +++ b/include/components/all.hpp @@ -13,6 +13,7 @@ #include "hit.hpp" #include "hop.hpp" #include "itemdrop.hpp" +#include "light.hpp" #include "name.hpp" #include "physics.hpp" #include "player.hpp" diff --git a/include/components/light.hpp b/include/components/light.hpp new file mode 100644 index 0000000..95fe6ec --- /dev/null +++ b/include/components/light.hpp @@ -0,0 +1,26 @@ +#ifndef COMPONENTS_LIGHT_HPP_ +#define COMPONENTS_LIGHT_HPP_ + +#include +#include +#include +#include + +struct Illuminate : public Component { + int index; + + Illuminate(vec2 pos, float radius, Color color) { + index = LightSystem::addLight(pos, radius, color); + } + Illuminate(XMLElement* imp, XMLElement* def) { + fromXML(imp, def); + } + + void fromXML(XMLElement* imp, XMLElement* def) final { + (void)imp; + float radius = def->FloatAttribute("radius"); + index = LightSystem::addLight(vec2(), radius, Color(1, 1, 0)); + } +}; + +#endif // COMPONENTS_LIGHT_HPP_ diff --git a/include/systems/light.hpp b/include/systems/light.hpp new file mode 100644 index 0000000..71c541a --- /dev/null +++ b/include/systems/light.hpp @@ -0,0 +1,34 @@ +#ifndef SYSTEM_LIGHT_HPP_ +#define SYSTEM_LIGHT_HPP_ + +#include +#include +#include + +#include +#include + +struct Light { + vec2 pos; + float radius; + Color color; + + Light(vec2 p = vec2(), float r = 0, Color c = Color()) + : pos(p), radius(r), color(c) {} +}; + +class LightSystem : public entityx::System { +private: + static std::vector lights; + +public: + void update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) override; + + static void render(void); + + static int addLight(vec2 pos, float radius, Color color = Color(1, 1, 1)); + static void updateLight(int index, vec2 pos, float radius = -1); + static void removeLight(int index); +}; + +#endif // SYSTEM_LIGHT_HPP_ diff --git a/src/engine.cpp b/src/engine.cpp index bf0bca9..232d11c 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -13,6 +13,7 @@ #include #include #include +#include Engine::Engine(void) : shouldRun(true), systems(game::entities, game::events) @@ -40,6 +41,7 @@ void Engine::init(void) { systems.add(); systems.add(); + systems.add(); systems.add(); systems.configure(); @@ -69,6 +71,7 @@ void Engine::update(entityx::TimeDelta dt) systems.update(dt); systems.update(dt); systems.update(dt); + systems.update(dt); //systems.update(dt); } diff --git a/src/render.cpp b/src/render.cpp index 85384ce..f9f84c9 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -7,6 +7,7 @@ #include #include #include +#include extern vec2 offset; @@ -198,5 +199,6 @@ void render(const int& fps) FontSystem::setFontZ(); } + LightSystem::render(); WindowSystem::render(); } diff --git a/src/systems/light.cpp b/src/systems/light.cpp new file mode 100644 index 0000000..361099d --- /dev/null +++ b/src/systems/light.cpp @@ -0,0 +1,60 @@ +#include + +#include +#include +#include + +std::vector LightSystem::lights; + +void LightSystem::update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) { + (void)ev; + (void)dt; + + en.each([&](entityx::Entity e, Illuminate& ill, Position& pos, + Solid& dim) { + (void)e; + vec2 p (pos.x, pos.y); + vec2 d (dim.width, dim.height); + LightSystem::updateLight(ill.index, p + d / 2); + }); +} + +void LightSystem::render(void) { + auto coords = new GLfloat[lights.size() * 4]; + auto colors = new GLfloat[lights.size() * 4]; + + unsigned int offset = 0; + for (const auto& l : lights) { + coords[offset] = l.pos.x, coords[offset + 1] = l.pos.y, + coords[offset + 2] = 0, coords[offset + 3] = l.radius; + colors[offset] = l.color.red, colors[offset + 1] = l.color.green, + colors[offset + 2] = l.color.blue, colors[offset + 3] = 1.0f; + offset += 4; + } + + Render::worldShader.use(); + Render::worldShader.enable(); + + glUniform4fv(Render::worldShader.uniform[WU_light], lights.size(), coords); + glUniform4fv(Render::worldShader.uniform[WU_light_color], lights.size(), colors); + glUniform1i(Render::worldShader.uniform[WU_light_size], lights.size()); + + Render::worldShader.disable(); + Render::worldShader.unuse(); +} + +int LightSystem::addLight(vec2 pos, float radius, Color color) { + lights.emplace_back(pos, radius, color); + return lights.size() - 1; +} + +void LightSystem::updateLight(int index, vec2 pos, float radius) { + lights[index].pos = pos; + if (radius >= 0) + lights[index].radius = radius; +} + +void LightSystem::removeLight(int index) { + lights.erase(lights.begin() + index); +} + diff --git a/src/world.cpp b/src/world.cpp index b163979..ea2566a 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -371,6 +371,8 @@ void WorldSystem::loader(void) entity.assign(wxml, abcd); else if (tname == "Drop") entity.assign(wxml, abcd); + else if (tname == "Illuminate") + entity.assign(wxml, abcd); abcd = abcd->NextSiblingElement(); } diff --git a/xcf/insideWoodHouse.xcf b/xcf/insideWoodHouse.xcf index f08dff8..c0a2fcd 100644 Binary files a/xcf/insideWoodHouse.xcf and b/xcf/insideWoodHouse.xcf differ diff --git a/xml/entities.xml b/xml/entities.xml index 96c8d79..b95b5a6 100644 --- a/xml/entities.xml +++ b/xml/entities.xml @@ -10,6 +10,7 @@ + countdown = 0 -- cgit v1.2.3