diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-09 08:29:18 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-09 08:29:18 -0400 |
commit | 22882f01ed537cae28b2ce80b86264a9c9c52b00 (patch) | |
tree | 553dea987d50668b05181a6ed9abd0d0adf7cc30 /main.cpp | |
parent | 6882786999581e2280c870249ae448c744767e73 (diff) |
proper game resetting
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -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) { |