diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-11 19:11:56 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-11 19:11:56 -0500 |
commit | 37ae27d47e148f3b4b7eaaa76ce98df680abcc6f (patch) | |
tree | 37616a5acfb08c77ee8f1ae7b803f3293d6df5fb /src | |
parent | 76a8dfce1c91c8536c940b53883eaf0ed7bd769a (diff) |
entity manager lock
Diffstat (limited to 'src')
-rw-r--r-- | src/components.cpp | 2 | ||||
-rw-r--r-- | src/engine.cpp | 2 | ||||
-rw-r--r-- | src/ui.cpp | 6 | ||||
-rw-r--r-- | src/world.cpp | 61 |
4 files changed, 37 insertions, 34 deletions
diff --git a/src/components.cpp b/src/components.cpp index fb0977f..a7d504d 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -162,6 +162,7 @@ void DialogSystem::configure(entityx::EventManager &ev) void DialogSystem::receive(const MouseClickEvent &mce) { + game::entities.lock(); game::entities.each<Position, Solid, Dialog, Name>( [&](entityx::Entity e, Position &pos, Solid &dim, Dialog &d, Name &name) { static std::atomic_bool dialogRun; @@ -270,6 +271,7 @@ void DialogSystem::receive(const MouseClickEvent &mce) } } }); + game::entities.unlock(); } void DialogSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) diff --git a/src/engine.cpp b/src/engine.cpp index aa0db73..abadf3f 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -69,7 +69,7 @@ void Engine::update(entityx::TimeDelta dt) namespace game { entityx::EventManager events; - entityx::EntityManager entities (events); + LockableEntityManager entities (events); //SpriteLoader sprite_l; Engine engine; @@ -535,10 +535,8 @@ namespace ui { auto& fi = fadeIntensity; fi = 0; - while (fi < 255) { - fadeUpdate(); - std::this_thread::sleep_for(1ms); - } + //while (fi < 255) + //std::this_thread::sleep_for(1ms); fi = 255; } diff --git a/src/world.cpp b/src/world.cpp index 6b7b89b..a1d2f3c 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -171,6 +171,7 @@ bool WorldSystem::save(void) // signature? save << "831998 "; + game::entities.lock(); game::entities.each<Position>([&](entityx::Entity entity, Position& pos) { // save position save << "p " << pos.x << ' ' << pos.y << ' '; @@ -179,6 +180,7 @@ bool WorldSystem::save(void) if (entity.has_component<Dialog>()) save << "d " << entity.component<Dialog>()->index << ' '; }); + game::entities.unlock(); save.close(); return true; @@ -237,6 +239,7 @@ void WorldSystem::load(const std::string& file) world.toLeft = world.toRight = ""; currentXMLFile = file; + game::entities.lock(); game::entities.reset(); game::engine.getSystem<PlayerSystem>()->create(); @@ -456,6 +459,7 @@ void WorldSystem::load(const std::string& file) } game::events.emit<BGMToggleEvent>(); + game::entities.unlock(); } /* @@ -1104,32 +1108,30 @@ void WorldSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, void WorldSystem::detect(entityx::TimeDelta dt) { + game::entities.lock(); game::entities.each<Grounded, Position, Solid>( [&](entityx::Entity e, Grounded &g, Position &loc, Solid &dim) { - (void)e; - if (!g.grounded) { - // get the line the entity is on - int line = std::clamp(static_cast<int>((loc.x + dim.width / 2 - world.startX) / game::HLINE), - 0, - static_cast<int>(world.data.size())); - + (void)e; + if (!g.grounded) { + // get the line the entity is on + int line = std::clamp(static_cast<int>((loc.x + dim.width / 2 - world.startX) / game::HLINE), + 0, static_cast<int>(world.data.size())); // make sure entity is above ground - const auto& data = world.data; - if (loc.y != data[line].groundHeight) { - loc.y = data[line].groundHeight; - e.remove<Grounded>(); - } + const auto& data = world.data; + if (loc.y != data[line].groundHeight) { + loc.y = data[line].groundHeight; + e.remove<Grounded>(); } - - }); + } + }); game::entities.each<Direction, Physics>( [&](entityx::Entity e, Direction &vel, Physics &phys) { - (void)e; - // handle gravity - if (vel.y > -2.0f) - vel.y -= (GRAVITY_CONSTANT * phys.g) * dt; - }); + (void)e; + // handle gravity + if (vel.y > -2.0f) + vel.y -= (GRAVITY_CONSTANT * phys.g) * dt; + }); game::entities.each<Position, Direction, Solid>( [&](entityx::Entity e, Position &loc, Direction &vel, Solid &dim) { @@ -1139,8 +1141,7 @@ void WorldSystem::detect(entityx::TimeDelta dt) // get the line the entity is on int line = std::clamp(static_cast<int>((loc.x + dim.width / 2 - world.startX) / game::HLINE), - 0, - static_cast<int>(world.data.size())); + 0, static_cast<int>(world.data.size())); // make sure entity is above ground const auto& data = world.data; @@ -1171,6 +1172,7 @@ void WorldSystem::detect(entityx::TimeDelta dt) loc.x = -(static_cast<int>(world.startX)) - dim.width - game::HLINE; } }); + game::entities.unlock(); } void WorldSystem::goWorldRight(Position& p, Solid &d) @@ -1208,17 +1210,18 @@ void WorldSystem::goWorldPortal(Position& p) p.x = world.outdoorCoords.x; // ineffective, player is regen'd p.y = world.outdoorCoords.y; } else { + game::entities.lock(); game::entities.each<Position, Solid, Portal>( [&](entityx::Entity entity, Position& loc, Solid &dim, Portal &portal) { - (void)entity; - if (!(portal.toFile.empty()) && p.x > loc.x && p.x < loc.x + dim.width) { - file = portal.toFile; - world.outdoor = currentXMLFile; - world.outdoorCoords = vec2(loc.x + dim.width / 2, 100); - return; - } + (void)entity; + if (!(portal.toFile.empty()) && p.x > loc.x && p.x < loc.x + dim.width) { + file = portal.toFile; + world.outdoor = currentXMLFile; + world.outdoorCoords = vec2(loc.x + dim.width / 2, 100); + return; } - ); + }); + game::entities.unlock(); } if (!file.empty()) { |