aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-06-09 08:29:18 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-06-09 08:29:18 -0400
commit22882f01ed537cae28b2ce80b86264a9c9c52b00 (patch)
tree553dea987d50668b05181a6ed9abd0d0adf7cc30 /main.cpp
parent6882786999581e2280c870249ae448c744767e73 (diff)
proper game resetting
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/main.cpp b/main.cpp
index fdecea9..4dac3b8 100644
--- a/main.cpp
+++ b/main.cpp
@@ -260,18 +260,19 @@ int main(int argc, char *argv[])
for (const auto &xf : xmlFiles) {
if (xf[0] != '.') {
XMLDocument xmld;
- xmld.LoadFile(xf.c_str());
+ auto file = xmlFolder + xf;
+ xmld.LoadFile(file.c_str());
auto xmle = xmld.FirstChildElement("World");
- if (xmle == nullptr)
+ if (xmle == nullptr) {
xmle = xmld.FirstChildElement("IndoorWorld");
- if (xmle == nullptr)
- continue;
+ if (xmle == nullptr)
+ continue;
+ }
xmle = xmle->FirstChildElement();
- std::cout << xmle->Name() << '\n';
while (xmle) {
xmle->DeleteAttribute("x");
xmle->DeleteAttribute("y");
@@ -280,9 +281,11 @@ int main(int argc, char *argv[])
xmle->DeleteAttribute("dindex");
xmle = xmle->NextSiblingElement();
}
- xmld.SaveFile(xf.c_str(), false);
+ xmld.SaveFile(file.c_str(), false);
}
}
+
+ game::briceClear();
}
if (currentWorld == nullptr) {