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
|
#include <systems/dialog.hpp>
#include <components/position.hpp>
#include <components/solid.hpp>
#include <components/dialog.hpp>
#include <components/flash.hpp>
#include <components/name.hpp>
#include <components/direction.hpp>
#include <brice.hpp>
#include <engine.hpp>
#include <fileio.hpp>
#include <quest.hpp>
#include <thread.hpp>
#include <ui.hpp>
#include <world.hpp>
#include <string>
#include <vector>
static std::vector<std::string> randomDialog (readFileA("assets/dialog_en-us"));
void DialogSystem::configure(entityx::EventManager &ev)
{
ev.subscribe<MouseClickEvent>(*this);
}
bool DialogSystem::receive(const MouseClickEvent &mce)
{
static bool continueEvent;
continueEvent = true;
game::entities.each<Position, Solid, Dialog, Name>(
[&](entityx::Entity e, Position &pos, Solid &dim, Dialog &d, Name &name) {
static std::atomic_bool dialogRun;
if (((mce.position.x > pos.x) & (mce.position.x < pos.x + dim.width)) &&
((mce.position.y > pos.y) & (mce.position.y < pos.y + dim.height))) {
continueEvent = false;
e.replace<Flash>(Color(0, 255, 255));
if (!dialogRun.load()) {
// copy entity, windows destroys the original after thread detach
dialogRun.store(true);
std::thread([e, &pos, &dim, &d, &name] {
std::string questAssignedText;
int newIndex;
auto exml = WorldSystem::getXML()->FirstChildElement("Dialog");
if (e.has_component<Direction>())
d.talking = true;
if (d.index == 9999) {
UISystem::dialogBox(name.name, randomDialog[d.rindex % randomDialog.size()]);
UISystem::waitForDialog();
} else if (exml != nullptr) {
while (exml->StrAttribute("name") != name.name)
exml = exml->NextSiblingElement();
exml = exml->FirstChildElement("text");
while (exml->IntAttribute("id") != d.index)
exml = exml->NextSiblingElement();
auto oxml = exml->FirstChildElement("set");
if (oxml != nullptr) {
do game::setValue(oxml->StrAttribute("id"), oxml->StrAttribute("value"));
while ((oxml = oxml->NextSiblingElement()));
game::briceUpdate();
}
auto ixml = exml->FirstChildElement("give");
if (ixml != nullptr) {
do {
InventorySystem::add(ixml->StrAttribute("name"), ixml->IntAttribute("count"));
ixml = ixml->NextSiblingElement();
} while (ixml != nullptr);
}
auto qxml = exml->FirstChildElement("quest");
if (qxml != nullptr) {
const char *qname;
do {
// assign quest
qname = qxml->Attribute("assign");
if (qname != nullptr) {
questAssignedText = qname;
auto req = qxml->GetText();
QuestSystem::assign(qname, qxml->StrAttribute("desc"), req ? req : "");
}
// check / finish quest
else {
qname = qxml->Attribute("check");
if (qname != nullptr) {
if (qname != nullptr && QuestSystem::finish(qname) == 0) {
d.index = 9999;
} else {
UISystem::dialogBox(name.name, "Finish my quest u nug");
UISystem::waitForDialog();
goto END;
}
// oldidx = d.index;
// d.index = qxml->UnsignedAttribute("fail");
// goto COMMONAIFUNC;
}
}
} while((qxml = qxml->NextSiblingElement()));
}
auto xxml = exml->FirstChildElement("option");
if (xxml != nullptr) {
do {
UISystem::dialogAddOption(xxml->StrAttribute("name"), xxml->StrAttribute("value"));
xxml = xxml->NextSiblingElement();
} while (xxml != nullptr);
}
auto cxml = exml->FirstChildElement("content");
const char *content;
if (cxml == nullptr) {
content = randomDialog[d.rindex % randomDialog.size()].c_str();
} else {
content = cxml->GetText() - 1;
while (*++content && isspace(*content));
}
UISystem::dialogBox(name.name, content);
UISystem::waitForDialog();
if (!questAssignedText.empty())
UISystem::dialogImportant("Quest assigned:\n\"" + questAssignedText + "\"");
//passiveImportantText(5000, ("Quest assigned:\n\"" + questAssignedText + "\"").c_str());
if (!UISystem::getDialogResult().empty())
d.index = std::stoi(UISystem::getDialogResult());
else if (exml->QueryIntAttribute("nextid", &newIndex) == XML_NO_ERROR)
d.index = newIndex;
}
END:
d.talking = false;
dialogRun.store(false);
}).detach();
} // dialogRun check
} // mouse check
} // .each
);
return continueEvent;
}
void DialogSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
(void)en;
(void)ev;
(void)dt;
}
|