aboutsummaryrefslogtreecommitdiffstats
path: root/src/quest.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-11-30 21:34:43 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-11-30 21:34:43 -0500
commitcc2a768ff19e9fc83661a51d4cb4fef9b354ff30 (patch)
tree36a29f6c442c9e1386d00348b3db93fd12ab4979 /src/quest.cpp
parent1024fe8305e5b0a7bb1f660a1cee077172d84534 (diff)
quest work
Diffstat (limited to 'src/quest.cpp')
-rw-r--r--src/quest.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/quest.cpp b/src/quest.cpp
index f7548d2..1e343a6 100644
--- a/src/quest.cpp
+++ b/src/quest.cpp
@@ -1,4 +1,5 @@
#include <quest.hpp>
+#include <common.hpp>
#include <algorithm>
@@ -11,14 +12,17 @@ void QuestSystem::update(entityx::EntityManager &en, entityx::EventManager &ev,
int QuestSystem::assign(std::string title, std::string desc, std::string req)
{
- (void)req;
+ const auto& reqs = StringTokenizer(req, ',');
+ for (const auto& s : reqs)
+ std::cout << s << '\n';
+
current.emplace_back(title, desc);
return 0;
}
int QuestSystem::drop(std::string title)
{
- current.erase(std::remove_if(std::begin(current), std::end(current),
+ current.erase(std::remove_if(std::begin(current), std::end(current),
[&title](const Quest& q) { return (q.name == title); }));
return 0;
}
@@ -43,4 +47,3 @@ bool QuestSystem::hasQuest(std::string title)
return (std::find_if(std::begin(current), std::end(current),
[&title](const Quest& q) { return (q.name == title); }) != std::end(current));
}
-