blob: 311aadec2d43f1a19912840dbc714f903beb24a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/** @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 <string>
#include <inventory.hpp>
/**
* When defined, DEBUG allows extra messages to be printed to the terminal for
* debugging purposes.
*/
#define DEBUG
typedef struct {
std::string title;
std::string desc;
struct item_t reward;
std::vector<std::pair<std::string,int>> 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
|