diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-02-15 16:57:14 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-02-15 16:57:14 -0500 |
commit | bd80053588a9a38c9f7a1f132d36fb0844b91af4 (patch) | |
tree | a5d0710ed06d486ff6459b809e5f22025067cab0 /main.cpp | |
parent | 4a5d0a99f7c83c9f254cbfb8f41828831f8251db (diff) |
reset flag redo
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -27,7 +27,7 @@ using namespace std::literals::chrono_literals; /** * The currently used folder to look for XML files in. */ -std::string xmlFolder = "xml/"; +std::string xmlFolder = "./xml/"; /** * The current center of the screen, updated in main render. @@ -80,6 +80,16 @@ int main(int argc, char *argv[]) // kill the world if needed if (worldReset) { + for (const auto& s : xmlFiles) { + if (s.find(".dat", s.size() - 4) != std::string::npos) { + std::string re = xmlFolder; + re.append(s); + auto r = re.c_str(); + std::cout << "Removing " << r << "...\n"; + std::remove(r); + } + } + // TODO TODO TODO we do xml/*.dat now... kill that game::briceClear(); } |