aboutsummaryrefslogtreecommitdiffstats
path: root/src/systems
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-07-22 10:09:13 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-07-22 10:09:13 -0400
commit132172601e249327d30b3756c9dbfc73cb2b6b0c (patch)
treea8bf275357e5c4125970359f3714f4a61fa8dbc7 /src/systems
parent0649af210afa6e7da051d655c3b28a7cd3b9ebc6 (diff)
dialog options now function
Diffstat (limited to 'src/systems')
-rw-r--r--src/systems/dialog.cpp14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/systems/dialog.cpp b/src/systems/dialog.cpp
index f818760..76c0f93 100644
--- a/src/systems/dialog.cpp
+++ b/src/systems/dialog.cpp
@@ -109,14 +109,9 @@ void DialogSystem::receive(const MouseClickEvent &mce)
}
auto xxml = exml->FirstChildElement("option");
- std::string options;
- std::vector<int> optionNexts;
if (xxml != nullptr) {
do {
- UISystem::dialogAddOption(xxml->StrAttribute("name"));
-
- options += '\"' + xxml->StrAttribute("name");
- optionNexts.emplace_back(xxml->IntAttribute("value"));
+ UISystem::dialogAddOption(xxml->StrAttribute("name"), xxml->StrAttribute("value"));
xxml = xxml->NextSiblingElement();
} while (xxml != nullptr);
}
@@ -130,15 +125,16 @@ void DialogSystem::receive(const MouseClickEvent &mce)
while (*++content && isspace(*content));
}
- UISystem::dialogBox(name.name, /*options, false,*/ content);
- UISystem::waitForDialog();
+ 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 (exml->QueryIntAttribute("nextid", &newIndex) == XML_NO_ERROR)
+ if (!UISystem::getDialogResult().empty())
+ d.index = std::stoi(UISystem::getDialogResult());
+ else if (exml->QueryIntAttribute("nextid", &newIndex) == XML_NO_ERROR)
d.index = newIndex;
}