diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-02-11 11:24:52 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-02-11 11:24:52 -0500 |
commit | ea60f9f78bac505a5aeeb4d34b927f04ec3121b3 (patch) | |
tree | 15c617c9293c5a3b1011be0a19cb85396f49a3fc /src/quest.cpp | |
parent | 27892bc40122494385bdbe5eb84aee52737f9c13 (diff) |
world bg, other fixes
Diffstat (limited to 'src/quest.cpp')
-rw-r--r-- | src/quest.cpp | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/src/quest.cpp b/src/quest.cpp index 920ac84..8fd786e 100644 --- a/src/quest.cpp +++ b/src/quest.cpp @@ -1,21 +1,7 @@ #include <quest.hpp> #include <algorithm> - -std::vector<std::string> StringTokenizer(const std::string& str, char delim); - -std::vector<std::string> split(std::string s, const std::string& delim) -{ - std::vector<std::string> res; - - while (!s.empty()) { - auto pos = s.find(delim); - res.emplace_back(s.substr(0, pos)); - s = s.substr(pos + 1); - } - - return res; -} +#include <sstream> void QuestSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) { @@ -26,10 +12,7 @@ void QuestSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, int QuestSystem::assign(std::string title, std::string desc, std::string req) { - const auto& reqs = StringTokenizer(req, ','); - for (const auto& s : reqs) - std::cout << s << '\n'; - + (void)req; current.emplace_back(title, desc); return 0; } |