aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-05-02 08:49:54 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-05-02 08:49:54 -0400
commitf102149e15ca1ac36cbb4e2627e5ce44f2d5273a (patch)
treefcf939ba1c26bd25c693ae7b05bd79c00ce2a691 /src/world.cpp
parent6a728a46d837384074228959d6330ba29e03aee0 (diff)
parent13cd55136ffd09afd9f4828a00716ed9f94f0e0b (diff)
Merge branch 'master' of https://github.com/tcsullivan/gamedev
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/world.cpp b/src/world.cpp
index 477432c..223a8bc 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -636,11 +636,13 @@ detect(Player *p)
int l;
// handle the player
- std::thread(&World::singleDetect, this, p).detach();
+ singleDetect(p);
+ //std::thread(&World::singleDetect, this, p).detach();
// handle other entities
for (auto &e : entity)
- std::thread(&World::singleDetect, this, e).detach();
+ singleDetect(e);
+ //std::thread(&World::singleDetect, this, e).detach();
// handle particles
for (auto &part : particles) {
@@ -791,6 +793,16 @@ getLastMob(void)
return mob.back();
}
+std::vector<Entity*> World::
+getMobs(void)
+{
+ std::vector<Entity*> meme;
+ for (auto &m : mob) {
+ meme.push_back(m);
+ }
+ return meme;
+}
+
/**
* Get the interactable entity that is closest to the entity provided.
*/