aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-11 19:11:56 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-11 19:11:56 -0500
commit37ae27d47e148f3b4b7eaaa76ce98df680abcc6f (patch)
tree37616a5acfb08c77ee8f1ae7b803f3293d6df5fb
parent76a8dfce1c91c8536c940b53883eaf0ed7bd769a (diff)
entity manager lock
-rw-r--r--Makefile10
-rw-r--r--include/engine.hpp36
-rw-r--r--src/components.cpp2
-rw-r--r--src/engine.cpp2
-rw-r--r--src/ui.cpp6
-rw-r--r--src/world.cpp61
6 files changed, 76 insertions, 41 deletions
diff --git a/Makefile b/Makefile
index 0e1f54e..f8d7511 100644
--- a/Makefile
+++ b/Makefile
@@ -39,11 +39,11 @@ cleandata:
touch brice.dat
$(EXEC): $(CXXOUTDIR)/$(CXXOBJ) main.cpp
- #g++ -I. -std=c++11 -c entityx/help/Pool.cc -o out/Pool.o
- #g++ -I. -std=c++11 -c entityx/help/Timer.cc -o out/Timer.o
- #g++ -I. -std=c++11 -c entityx/Event.cc -o out/Event.o
- #g++ -I. -std=c++11 -c entityx/Entity.cc -o out/Entity.o
- #g++ -I. -std=c++11 -c entityx/System.cc -o out/System.o
+ g++ -I. -std=c++11 -c entityx/help/Pool.cc -o out/Pool.o
+ g++ -I. -std=c++11 -c entityx/help/Timer.cc -o out/Timer.o
+ g++ -I. -std=c++11 -c entityx/Event.cc -o out/Event.o
+ g++ -I. -std=c++11 -c entityx/Entity.cc -o out/Entity.o
+ g++ -I. -std=c++11 -c entityx/System.cc -o out/System.o
@echo " CXX/LD main"
@$(CXX) $(CXXFLAGS) $(CXXINC) $(CXXWARN) -o $(EXEC) main.cpp out/*.o $(LIBS)
diff --git a/include/engine.hpp b/include/engine.hpp
index 2b03696..a331e50 100644
--- a/include/engine.hpp
+++ b/include/engine.hpp
@@ -70,6 +70,38 @@ public:
}
};
+#include <atomic>
+#include <chrono>
+
+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 {
/**
@@ -80,8 +112,8 @@ namespace game {
/**
* Handles entity data.
*/
- extern entityx::EntityManager entities;
-
+ extern LockableEntityManager entities;
+
/**
* An instance of the main game engine.
*/
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;
diff --git a/src/ui.cpp b/src/ui.cpp
index d1b6055..21ed180 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -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()) {