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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
|
#include <common.hpp>
#include <entities.hpp>
#include <world.hpp>
#include <ui.hpp>
#include <tinyxml2.h>
using namespace tinyxml2;
extern Player *player; // main.cpp
extern World *currentWorld; // main.cpp
extern Menu pauseMenu;
extern Menu optionsMenu;
extern std::string xmlFolder;
extern std::vector<NPC *> aipreload;
extern void mainLoop(void); // main.cpp
std::vector<XMLElement *> dopt;
void destroyEverything(void);
int commonAIFunc(NPC *speaker)
{
XMLDocument xml;
XMLElement *exml,*oxml;
static unsigned int oldidx = 9999;
std::string name;
unsigned int idx = 0;
bool stop = false;
// load the XML file and find the dialog tags
xml.LoadFile(currentXML.c_str());
exml = xml.FirstChildElement("Dialog");
// search for the dialog block associated with this npc
while (exml->StrAttribute("name") != speaker->name)
exml = exml->NextSiblingElement();
// search for the desired text block
exml = exml->FirstChildElement();
std::cout << speaker->dialogIndex << '\n';
do {
if (std::string("text") == exml->Name() && exml->UnsignedAttribute("id") == (unsigned)speaker->dialogIndex)
break;
} while ((exml = exml->NextSiblingElement()));
// handle quest tags
if ((oxml = exml->FirstChildElement("quest"))) {
std::string qname;
// iterate through all quest tags
do {
// assign quest
if (!(qname = oxml->StrAttribute("assign")).empty())
player->qh.assign(qname, "None", std::string(oxml->GetText())); // TODO add descriptions
// check / finish quest
else if (!(qname = oxml->StrAttribute("check")).empty()) {
if (player->qh.hasQuest(qname) && player->qh.finish(qname)) {
// QuestHandler::finish() did all the work..
break;
} else {
// run error dialog
oldidx = speaker->dialogIndex;
speaker->dialogIndex = oxml->UnsignedAttribute("fail");
return commonAIFunc(speaker);
}
}
} while((oxml = oxml->NextSiblingElement()));
}
// handle give tags
if ((oxml = exml->FirstChildElement("give"))) {
do player->inv->addItem(oxml->Attribute("id"), oxml->UnsignedAttribute("count"));
while ((oxml = oxml->NextSiblingElement()));
}
// handle take tags
if ((oxml = exml->FirstChildElement("take"))) {
do player->inv->takeItem(oxml->Attribute("id"), oxml->UnsignedAttribute("count"));
while ((oxml = oxml->NextSiblingElement()));
}
// handle movement directs
if ((oxml = exml->FirstChildElement("gotox")))
speaker->moveTo(std::stoi(oxml->GetText()));
// handle dialog options
if ((oxml = exml->FirstChildElement("option"))) {
std::string optstr;
// convert option strings to a colon-separated format
do {
// append the next option
optstr.append(std::string(":") + oxml->Attribute("text"));
// save the associated XMLElement
dopt.push_back(oxml);
} while ((oxml = oxml->NextSiblingElement()));
// run the dialog stuff
ui::dialogBox(speaker->name, optstr, false, exml->GetText() + 1);
ui::waitForDialog();
if (ui::dialogOptChosen)
exml = dopt[ui::dialogOptChosen - 1];
dopt.clear();
}
// optionless dialog
else {
ui::dialogBox(speaker->name, "", false, exml->GetText());
ui::waitForDialog();
}
// trigger other npcs if desired
if (!(name = exml->StrAttribute("call")).empty()) {
NPC *n = *std::find_if(std::begin(currentWorld->npc), std::end(currentWorld->npc), [name](NPC *npc) {
return (npc->name == name);
});
if (exml->QueryUnsignedAttribute("callid", &idx) == XML_NO_ERROR) {
n->dialogIndex = idx;
n->addAIFunc(false);
}
}
// handle potential following dialogs
if ((idx = exml->UnsignedAttribute("nextid"))) {
speaker->dialogIndex = idx;
// stop talking
if (exml->QueryBoolAttribute("stop", &stop) == XML_NO_ERROR && stop) {
speaker->dialogIndex = 9999;
return 0;
}
// pause, allow player to click npc to continue
else if (exml->QueryBoolAttribute("pause", &stop) == XML_NO_ERROR && stop) {
return 1;
}
// instantly continue
else {
return commonAIFunc(speaker);
}
}
// stop talking
else {
// error text?
if (oldidx != 9999) {
speaker->dialogIndex = oldidx;
oldidx = 9999;
return 1;
} else {
speaker->dialogIndex = 9999;
return 0;
}
}
return 0;
}
void initEverything(void) {
std::vector<std::string> xmlFiles;
XMLDocument xml;
/*
* Read the XML directory into an array.
*/
if (getdir(std::string("./" + xmlFolder).c_str(), xmlFiles))
UserError("Error reading XML files!!!");
/*
* Sort the files alphabetically.
*/
strVectorSortAlpha(&xmlFiles);
/*
* Load the first file found as currentWorld.
*/
for (xf : xmlFiles) { //unsigned int i=0;i<xmlFiles.size();i++){
if (xf[0] != '.' && strcmp(&xf[xf.size() - 3], "dat")){
// read the xml file
std::cout << "File to load: " << xf << std::endl;
currentWorld = loadWorldFromXML(xf);
break;
}
}
/*
* Spawn the player and begin the game.
*/
player = new Player();
player->sspawn(0,100);
ui::menu::init();
currentWorld->bgmPlay(NULL);
atexit(destroyEverything);
}
void destroyEverything(void) {
currentWorld->save();
//delete currentWorld;
//delete[] currentXML;
aipreload.clear();
}
|