From 22882f01ed537cae28b2ce80b86264a9c9c52b00 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 9 Jun 2016 08:29:18 -0400 Subject: proper game resetting --- brice.dat | 5 ----- include/brice.hpp | 1 + include/coolarray.hpp | 2 +- main.cpp | 15 +++++++++------ src/brice.cpp | 6 ++++++ src/mob.cpp | 11 ++++++++++- xml/playerSpawnHill1.xml | 20 ++++++++++---------- xml/playerSpawnHill1_Building1.xml | 37 +++++++++++++------------------------ xml/playerSpawnHill2.xml | 13 +++++-------- 9 files changed, 55 insertions(+), 55 deletions(-) diff --git a/brice.dat b/brice.dat index 4bfeac6..e69de29 100644 --- a/brice.dat +++ b/brice.dat @@ -1,5 +0,0 @@ -2 -canJump -1 -canSprint -1 diff --git a/include/brice.hpp b/include/brice.hpp index 5f82fec..dc3ea96 100644 --- a/include/brice.hpp +++ b/include/brice.hpp @@ -11,6 +11,7 @@ namespace game { bool setValue(const std::string& id, const std::string& value); + void briceClear(void); void briceSave(void); void briceLoad(void); diff --git a/include/coolarray.hpp b/include/coolarray.hpp index 3e167b7..5388aab 100644 --- a/include/coolarray.hpp +++ b/include/coolarray.hpp @@ -16,7 +16,7 @@ public: _capacity = 0; } - CoolArray(size_t n, const T& value) { + CoolArray(size_t n, const T& value=0) { buffer = new T[n]; _size = n; _capacity = n; 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) { diff --git a/src/brice.cpp b/src/brice.cpp index 07cd05d..d5ac46d 100644 --- a/src/brice.cpp +++ b/src/brice.cpp @@ -33,6 +33,12 @@ namespace game { } } + void briceClear(void) { + std::ofstream out ("brice.dat", std::ios::out); + out.close(); + brice.clear(); + } + void briceSave(void) { std::ofstream out ("brice.dat", std::ios::out | std::ios::binary); std::string data = std::to_string(brice.size()) + '\n'; diff --git a/src/mob.cpp b/src/mob.cpp index ed9fbf4..7701086 100644 --- a/src/mob.cpp +++ b/src/mob.cpp @@ -350,11 +350,20 @@ void Trigger::act(void) xml.LoadFile(currentXML.c_str()); exml = xml.FirstChildElement("Trigger"); - while(exml->StrAttribute("id") != id) + while(exml && exml->StrAttribute("id") != id) exml = exml->NextSiblingElement(); player->vel.x = 0; + if (exml == nullptr) { + auto id = xmle->StrAttribute("cid"); + if (!id.empty()) { + game::setValue(id, xmle->StrAttribute("cvalue")); + game::briceUpdate(); + } + return; + } + ui::toggleBlackFast(); ui::waitForCover(); diff --git a/xml/playerSpawnHill1.xml b/xml/playerSpawnHill1.xml index c5d88d6..d7889fc 100644 --- a/xml/playerSpawnHill1.xml +++ b/xml/playerSpawnHill1.xml @@ -5,13 +5,13 @@ - - - + + + - - - + + + @@ -38,14 +38,14 @@ And it wasn't stormy. Hello there! My name is Ralph. - 300 + 300 You should go talk to my friend Johnny. He's a pretty chill dude. Niice. - + Go check out Johnny. He's cool. @@ -54,7 +54,7 @@ And it wasn't stormy. Sup bro! Have a quest. To complete it, just go talk to Ralph again. - + Dank MayMay,2 Wood Sword,1 @@ -68,5 +68,5 @@ And it wasn't stormy. Hey friend! It's dangerous out there, here take these! Wait, promise you'll stop by my stand in the local market! - + diff --git a/xml/playerSpawnHill1_Building1.xml b/xml/playerSpawnHill1_Building1.xml index 0cf04c1..800f007 100644 --- a/xml/playerSpawnHill1_Building1.xml +++ b/xml/playerSpawnHill1_Building1.xml @@ -1,37 +1,26 @@ -