From cc2a768ff19e9fc83661a51d4cb4fef9b354ff30 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 30 Nov 2016 21:34:43 -0500 Subject: quest work --- src/quest.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/quest.cpp') 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 +#include #include @@ -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)); } - -- cgit v1.2.3