diff options
Diffstat (limited to 'src/quest.cpp')
-rw-r--r-- | src/quest.cpp | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/quest.cpp b/src/quest.cpp new file mode 100644 index 0000000..f7548d2 --- /dev/null +++ b/src/quest.cpp @@ -0,0 +1,46 @@ +#include <quest.hpp> + +#include <algorithm> + +void QuestSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) +{ + (void)en; + (void)ev; + (void)dt; +} + +int QuestSystem::assign(std::string title, std::string desc, std::string req) +{ + (void)req; + current.emplace_back(title, desc); + return 0; +} + +int QuestSystem::drop(std::string title) +{ + current.erase(std::remove_if(std::begin(current), std::end(current), + [&title](const Quest& q) { return (q.name == title); })); + return 0; +} + +int QuestSystem::finish(std::string title) +{ + auto quest = std::find_if(std::begin(current), std::end(current), + [&title](const Quest& q) { return (q.name == title); }); + + if (quest == std::end(current)) + return -1; + + // TODO requirements + + drop(title); + + return 0; +} + +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)); +} + |