aboutsummaryrefslogtreecommitdiffstats
path: root/include/Quest.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Quest.hpp')
-rw-r--r--include/Quest.hpp72
1 files changed, 72 insertions, 0 deletions
diff --git a/include/Quest.hpp b/include/Quest.hpp
new file mode 100644
index 0000000..eaf9426
--- /dev/null
+++ b/include/Quest.hpp
@@ -0,0 +1,72 @@
+/** @file Quest.h
+ * @brief The quest handling system.
+ *
+ * This file contains Quest and QuestHandler, used to manage quests inside the
+ * game.
+ */
+
+#ifndef QUEST_H
+#define QUEST_H
+
+#include <cstring>
+
+#include <common.hpp>
+#include <inventory.hpp>
+
+/**
+ * When defined, DEBUG allows extra messages to be printed to the terminal for
+ * debugging purposes.
+ */
+
+#define DEBUG
+
+struct need_t {
+ std::string name;
+ int n;
+};
+
+typedef struct {
+ std::string title;
+ std::string desc;
+ struct item_t reward;
+ std::vector<struct need_t> need;
+} Quest;
+
+/**
+ * The Quest Handler class.
+ *
+ * This class handles quests, including the assigning, dropping, and completing
+ * of the quests.
+ */
+
+class QuestHandler {
+public:
+ std::vector<Quest>current;
+
+ /**
+ * Adds a quest to the current quest vector by its title.
+ */
+
+ int assign(std::string title,std::string desc,std::string req);
+
+ /**
+ * Drops a quest through its title.
+ */
+
+ int drop(std::string title);
+
+ /**
+ * Finishes a quest through it's title, also giving a pointer to the Entity
+ * that gave the quest originally.
+ */
+
+ int finish(std::string t);
+
+ /**
+ * Returns true if this handler is currently taking the quest.
+ */
+
+ bool hasQuest(std::string t);
+};
+
+#endif // QUEST_H