aboutsummaryrefslogtreecommitdiffstats
path: root/include/Quest.h
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-03-30 08:41:16 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-03-30 08:41:16 -0400
commitc35571e37bdd6d2fe9b95e4265c150265585f3a9 (patch)
tree31478f777e27f345cc20f2eaf796a176b55cb4fe /include/Quest.h
parent82c178d797b9a23c31d7dad1cc8cac29d27c6eb1 (diff)
Inv and textures
Diffstat (limited to 'include/Quest.h')
-rw-r--r--include/Quest.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/include/Quest.h b/include/Quest.h
deleted file mode 100644
index 8b1e142..0000000
--- a/include/Quest.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/** @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.h>
-#include <inventory.h>
-
-/**
- * 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