aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--entityx/Entity.cc4
-rw-r--r--entityx/Entity.h4
-rw-r--r--include/engine.hpp32
-rw-r--r--src/components.cpp26
-rw-r--r--src/engine.cpp2
-rw-r--r--src/world.cpp12
6 files changed, 26 insertions, 54 deletions
diff --git a/entityx/Entity.cc b/entityx/Entity.cc
index ddb8df7..adac3de 100644
--- a/entityx/Entity.cc
+++ b/entityx/Entity.cc
@@ -31,7 +31,8 @@ std::bitset<entityx::MAX_COMPONENTS> Entity::component_mask() const {
return manager_->component_mask(id_);
}
-EntityManager::EntityManager(EventManager &event_manager) : event_manager_(event_manager) {
+EntityManager::EntityManager(EventManager &event_manager)
+ : event_manager_(event_manager) {
}
EntityManager::~EntityManager() {
@@ -46,6 +47,7 @@ void EntityManager::reset() {
for (BaseComponentHelper *helper : component_helpers_) {
if (helper) delete helper;
}
+
component_pools_.clear();
component_helpers_.clear();
entity_component_mask_.clear();
diff --git a/entityx/Entity.h b/entityx/Entity.h
index 3217ae5..a423f8f 100644
--- a/entityx/Entity.h
+++ b/entityx/Entity.h
@@ -16,6 +16,7 @@
#include <new>
#include <cstdlib>
#include <algorithm>
+#include <mutex>
#include <bitset>
#include <cassert>
#include <iostream>
@@ -462,8 +463,11 @@ class EntityManager : entityx::help::NonCopyable {
template <typename T> struct identity { typedef T type; };
void each(typename identity<std::function<void(Entity entity, Components&...)>>::type f) {
+ static std::mutex locked;
+ locked.lock();
for (auto it : *this)
f(it, *(it.template component<Components>().get())...);
+ locked.unlock();
}
private:
diff --git a/include/engine.hpp b/include/engine.hpp
index 112fd3c..5824950 100644
--- a/include/engine.hpp
+++ b/include/engine.hpp
@@ -65,36 +65,6 @@ public:
}
};
-class LockableEntityManager : public entityx::EntityManager {
-private:
- std::atomic_bool locked;
-
-public:
- LockableEntityManager(entityx::EventManager& ev)
- : EntityManager(ev) {
- locked.store(false);
- }
-
- void lock(void) {
- while (locked.load())
- std::this_thread::sleep_for(std::chrono::milliseconds(10));
-
- locked.store(true);
- }
-
- void unlock(void) {
- locked.store(false);
- }
-
- bool try_lock(void) {
- if (locked.load())
- return false;
-
- locked.store(true);
- return true;
- }
-};
-
namespace game {
/**
* Handles all game events.
@@ -104,7 +74,7 @@ namespace game {
/**
* Handles entity data.
*/
- extern LockableEntityManager entities;
+ extern entityx::EntityManager entities;
/**
* An instance of the main game engine.
diff --git a/src/components.cpp b/src/components.cpp
index dfce75c..3b38a53 100644
--- a/src/components.cpp
+++ b/src/components.cpp
@@ -22,8 +22,10 @@ static std::vector<std::string> randomDialog (readFileA("assets/dialog_en-us"));
void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
+ std::string arena;
+
(void)ev;
- en.each<Position, Direction>([dt](entityx::Entity entity, Position &position, Direction &direction) {
+ en.each<Position, Direction>([&arena, dt](entityx::Entity entity, Position &position, Direction &direction) {
position.x += direction.x * dt;
position.y += direction.y * dt;
@@ -49,15 +51,10 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e
// TODO initialX and range?
if (entity.has_component<Aggro>()) {
auto ppos = game::engine.getSystem<PlayerSystem>()->getPosition();
- if (ppos.x > position.x && ppos.x < position.x + entity.component<Solid>()->width) {
- ui::toggleWhiteFast();
- ui::waitForCover(); // TODO thread safe call to load world?
- //game::engine.getSystem<WorldSystem>()->load(entity.component<Aggro>()->arena);
- ui::toggleWhiteFast();
- entity.destroy();
- } else {
+ if (ppos.x > position.x && ppos.x < position.x + entity.component<Solid>()->width)
+ arena = entity.component<Aggro>()->arena;
+ else
direction.x = (ppos.x > position.x) ? .05 : -.05;
- }
} else if (entity.has_component<Wander>()) {
auto& countdown = entity.component<Wander>()->countdown;
@@ -70,6 +67,13 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e
}
}
});
+
+ if (!arena.empty()) {
+ ui::toggleWhiteFast();
+ ui::waitForCover();
+ game::engine.getSystem<WorldSystem>()->load(arena);
+ ui::toggleWhiteFast();
+ }
}
void PhysicsSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
@@ -106,7 +110,6 @@ void RenderSystem::render(void)
if (!loadTexResult.isEmpty())
return;
- game::entities.lock();
game::entities.each<Visible, Sprite, Position>([](entityx::Entity entity, Visible &visible, Sprite &sprite, Position &pos) {
// Verticies and shit
float its = 0;
@@ -180,7 +183,6 @@ void RenderSystem::render(void)
ui::setFontZ(-5.0);
ui::putStringCentered(pos.x + dim.width / 2, pos.y - ui::fontSize - HLINES(0.5), name.name);
});
- game::entities.unlock();
}
void DialogSystem::configure(entityx::EventManager &ev)
@@ -190,7 +192,6 @@ 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;
@@ -308,7 +309,6 @@ 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 ebf5953..ee35d06 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -59,7 +59,7 @@ void Engine::update(entityx::TimeDelta dt)
namespace game {
entityx::EventManager events;
- LockableEntityManager entities (events);
+ entityx::EntityManager entities (events);
//SpriteLoader sprite_l;
Engine engine;
diff --git a/src/world.cpp b/src/world.cpp
index f46339b..09d277f 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -137,7 +137,6 @@ 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 << ' ';
@@ -146,7 +145,6 @@ bool WorldSystem::save(void)
if (entity.has_component<Dialog>())
save << "d " << entity.component<Dialog>()->index << ' ';
});
- game::entities.unlock();
save.close();
return true;
@@ -204,11 +202,14 @@ void WorldSystem::load(const std::string& file)
UserAssert(wxml != nullptr, "XML Error: Cannot find a <World> or <IndoorWorld> tag in " + xmlPath);
wxml = wxml->FirstChildElement();
world.indoor = true;
+ if (world.outdoor.empty()) {
+ world.outdoor = currentXMLFile;
+ world.outdoorCoords = vec2(0, 100);
+ }
}
world.toLeft = world.toRight = "";
currentXMLFile = file;
- game::entities.lock();
game::entities.reset();
game::engine.getSystem<PlayerSystem>()->create();
@@ -449,7 +450,6 @@ void WorldSystem::load(const std::string& file)
}
game::events.emit<BGMToggleEvent>();
- game::entities.unlock();
}
/*
@@ -1115,7 +1115,6 @@ 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;
@@ -1180,7 +1179,6 @@ 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)
@@ -1218,7 +1216,6 @@ 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;
@@ -1229,7 +1226,6 @@ void WorldSystem::goWorldPortal(Position& p)
return;
}
});
- game::entities.unlock();
}
if (!file.empty()) {