From ea60f9f78bac505a5aeeb4d34b927f04ec3121b3 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 11 Feb 2017 11:24:52 -0500 Subject: world bg, other fixes --- src/quest.cpp | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) (limited to 'src/quest.cpp') 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 #include - -std::vector StringTokenizer(const std::string& str, char delim); - -std::vector split(std::string s, const std::string& delim) -{ - std::vector res; - - while (!s.empty()) { - auto pos = s.find(delim); - res.emplace_back(s.substr(0, pos)); - s = s.substr(pos + 1); - } - - return res; -} +#include 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; } -- cgit v1.2.3