From 7110a4ab054341c9f41972b06044853138f526a8 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 8 Jun 2016 08:43:44 -0400 Subject: save to xml --- src/entities.cpp | 45 ++++++++++++++++----- src/mob.cpp | 80 +++++++++++++++++++++++++++++-------- src/world.cpp | 117 ++++--------------------------------------------------- 3 files changed, 106 insertions(+), 136 deletions(-) (limited to 'src') diff --git a/src/entities.cpp b/src/entities.cpp index f59b462..01255d5 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -195,6 +195,9 @@ void Player::createFromXML(XMLElement *e, World *w=nullptr) (void)w; } +void Player::saveToXML(void) +{} + NPC::NPC() : Entity() { width = HLINES(10); @@ -229,14 +232,12 @@ void NPC::createFromXML(XMLElement *e, World *w=nullptr) { std::string npcname; bool dialog; - float spawnx, Xhealth; unsigned int flooor; + xmle = e; + // spawn at coordinates if desired - if (e->QueryFloatAttribute("x", &spawnx) == XML_NO_ERROR) - spawn(spawnx, 100); - else - spawn(0, 100); + E_LOAD_COORDS(100); // name override if (!(npcname = e->StrAttribute("name")).empty()) @@ -254,11 +255,18 @@ void NPC::createFromXML(XMLElement *e, World *w=nullptr) Indoorp(w)->moveToFloor(this, flooor); // custom health value - if (e->QueryFloatAttribute("health", &Xhealth) == XML_NO_ERROR) { - health = maxHealth = Xhealth; - } + E_LOAD_HEALTH; - xmle = e; + // dialog index + if (e->QueryUnsignedAttribute("dindex", &flooor) == XML_NO_ERROR) + dialogIndex = flooor; +} + +void NPC::saveToXML(void) +{ + E_SAVE_HEALTH; + E_SAVE_COORDS; + xmle->SetAttribute("dindex", dialogIndex); } Merchant::Merchant() : NPC() @@ -294,6 +302,8 @@ Merchant::~Merchant() { } +void Merchant::saveToXML(void){} + Structures::Structures() : Entity() { canMove = false; @@ -308,13 +318,25 @@ void Structures::createFromXML(XMLElement *e, World *w) { float spawnx; + if (e->QueryBoolAttribute("alive", &alive) == XML_NO_ERROR && !alive) { + die(); + return; + } + inWorld = w; inside = e->StrAttribute("inside"); textureLoc = e->StrAttribute("texture"); spawn(static_cast(e->UnsignedAttribute("type")), - e->QueryFloatAttribute("x", &spawnx) == XML_NO_ERROR ? spawnx : (randGet() % w->getTheWidth() / 2.0f), + e->QueryFloatAttribute("spawnx", &spawnx) == XML_NO_ERROR ? spawnx : (randGet() % w->getTheWidth() / 2.0f), 100); + + xmle = e; +} + +void Structures::saveToXML(void) +{ + xmle->SetAttribute("alive", alive); } Object::Object() @@ -346,6 +368,9 @@ void Object::createFromXML(XMLElement *e, World *w=nullptr) (void)w; } +void Object::saveToXML(void) +{} + void Object::reloadTexture(void) { tex = TextureIterator({getItemTexturePath(iname)}); diff --git a/src/mob.cpp b/src/mob.cpp index 526d7b1..4cafa09 100644 --- a/src/mob.cpp +++ b/src/mob.cpp @@ -65,8 +65,13 @@ void Page::createFromXML(XMLElement *e, World *w=nullptr) cId = e->StrAttribute("cid"); cValue = e->StrAttribute("cvalue"); + + xmle = e; } +void Page::saveToXML(void) +{} + Door::Door(void) : Mob() { ridable = false; @@ -101,6 +106,9 @@ void Door::createFromXML(XMLElement *e, World *w=nullptr) loc.x = Xlocx; } +void Door::saveToXML(void) +{} + Cat::Cat(void) : Mob() { ridable = true; @@ -154,9 +162,23 @@ bool Cat::bindTex(void) void Cat::createFromXML(XMLElement *e, World *w=nullptr) { (void)w; - float Xlocx; - if (e->QueryFloatAttribute("x", &Xlocx) == XML_NO_ERROR) - loc.x = Xlocx; + float spawnc; + + if (e->QueryFloatAttribute("x", &spawnc) == XML_NO_ERROR) + loc.x = spawnc; + else + loc.x = e->FloatAttribute("spawnx"); + + if (e->QueryFloatAttribute("y", &spawnc) == XML_NO_ERROR) + loc.y = spawnc; + + xmle = e; +} + +void Cat::saveToXML(void) +{ + E_SAVE_COORDS; + xmle->SetAttribute("alive", alive); } Rabbit::Rabbit(void) : Mob() @@ -210,16 +232,27 @@ bool Rabbit::bindTex(void) void Rabbit::createFromXML(XMLElement *e, World *w=nullptr) { (void)w; - float Xlocx, Xhealth; - if (e->QueryFloatAttribute("x", &Xlocx) == XML_NO_ERROR) - loc.x = Xlocx; - if (e->QueryFloatAttribute("health", &Xhealth) == XML_NO_ERROR) - maxHealth = health = Xhealth; - if (e->QueryBoolAttribute("aggressive", &aggressive) != XML_NO_ERROR) { - aggressive = false; - } + float spawnc; xmle = e; + + if (e->QueryFloatAttribute("x", &spawnc) == XML_NO_ERROR) + loc.x = spawnc; + else + loc.x = e->FloatAttribute("spawnx"); + + if (e->QueryFloatAttribute("y", &spawnc) == XML_NO_ERROR) + loc.y = spawnc; + + E_LOAD_HEALTH; + + if (e->QueryBoolAttribute("aggressive", &aggressive) != XML_NO_ERROR) + aggressive = false; +} + +void Rabbit::saveToXML(void) +{ + E_SAVE_HEALTH; } Bird::Bird(void) : Mob() @@ -269,16 +302,26 @@ void Bird::createFromXML(XMLElement *e, World *w=nullptr) { (void)w; float Xlocx, Xhealth; - if (e->QueryFloatAttribute("x", &Xlocx) == XML_NO_ERROR) - loc.x = Xlocx; - if (e->QueryFloatAttribute("health", &Xhealth) == XML_NO_ERROR) - maxHealth = health = Xhealth; - if (e->QueryFloatAttribute("y", &initialY) != XML_NO_ERROR) - initialY = 300; + + xmle = e; + + if (e->QueryFloatAttribute("x", &Xlocx) == XML_NO_ERROR) + loc.x = Xlocx; + if (e->QueryFloatAttribute("y", &initialY) != XML_NO_ERROR) + initialY = 300; + + E_LOAD_HEALTH; + if (e->QueryBoolAttribute("aggressive", &aggressive) != XML_NO_ERROR) aggressive = false; } +void Bird::saveToXML(void) +{ + E_SAVE_COORDS; + E_SAVE_HEALTH; +} + Trigger::Trigger(void) : Mob() { ridable = false; @@ -351,6 +394,9 @@ void Trigger::createFromXML(XMLElement *e, World *w=nullptr) id = e->StrAttribute("id"); } +void Trigger::saveToXML(void) +{} + Mob::~Mob() { delete inv; diff --git a/src/world.cpp b/src/world.cpp index 11bd671..64dbfe0 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -93,6 +93,9 @@ static const float bgDraw[4][3]={ { 255, 255, 0.1 } }; +static std::string currentXMLRaw; +XMLDocument currentXMLDoc; + /* ---------------------------------------------------------------------------- ** Functions section ** --------------------------------------------------------------------------*/ @@ -1067,110 +1070,24 @@ getSTextureLocation(unsigned int index) const vec2 World:: getStructurePos(int index) { - if (build.empty()) + if (build.empty() || (unsigned)index >= build.size()) return vec2 {0, 0}; if (index < 0) return build.back()->loc; - else if ((unsigned)index >= build.size()) - return vec2 {0, 0}; return build[index]->loc; } -template -void appVal(const T &x, std::string &str) -{ - str.append(std::to_string(static_cast(x)) + "\n"); -} - /** * Saves world data to a file. */ -void World::save(void){ - std::string data; - std::string save = currentXML + ".dat"; - std::ofstream out (save, std::ios::out | std::ios::binary); - - std::cout << "Saving to " << save << " ..." << '\n'; - - // save npcs - for (auto &n : npc) { - appVal(n->dialogIndex, data); - appVal(n->loc.x, data); - appVal(n->loc.y, data); - } - - // save structures - for (auto &b : build) { - appVal(b->loc.x, data); - appVal(b->loc.y, data); - } - - // save mobs - for (auto &m : mob) { - appVal(m->loc.x, data); - appVal(m->loc.y, data); - appVal(m->isAlive(), data); - } - - // wrap up - data.append("dOnE\0"); - out.write(data.data(), data.size()); - out.close(); -} - -template -bool getVal(T &x, std::istringstream &iss) +void World::save(void) { - std::string str; - std::getline(iss, str); + for (const auto &e : entity) + e->saveToXML(); - if (str == "dOnE") - return false; - - x = std::stoi(str); - return true; -} - -void World::load(void){ - std::string save, data, line; - const char *filedata; - - save = currentXML + ".dat"; - filedata = readFile(save.c_str()); - data = filedata; - std::istringstream iss (data); - - for(auto &n : npc){ - if (!getVal(n->dialogIndex, iss)) return; - if (n->dialogIndex != 9999) - n->addAIFunc(false); - - if (!getVal(n->loc.x, iss)) return; - if (!getVal(n->loc.y, iss)) return; - } - - for(auto &b : build){ - if (!getVal(b->loc.x, iss)) return; - if (!getVal(b->loc.y, iss)) return; - } - - bool alive = true; - for(auto &m : mob){ - if (!getVal(m->loc.x, iss)) return; - if (!getVal(m->loc.y, iss)) return; - if (!getVal(alive, iss)) return; - if (!alive) - m->die(); - } - - while (std::getline(iss,line)) { - if(line == "dOnE") - break; - } - - delete[] filedata; + currentXMLDoc.SaveFile(currentXML.c_str(), false); } /** @@ -1893,18 +1810,6 @@ World *loadWorldFromPtr(World *ptr) * Loads a world from the given XML file. */ -static std::string currentXMLRaw; -XMLDocument currentXMLDoc; - -const XMLDocument& loadWorldXML(void) -{ - static XMLDocument xml; - if (xml.Parse(currentXMLRaw.data()) != XML_NO_ERROR) - UserError("XML Error: Failed to parse file (not your fault though..?)"); - - return xml; -} - World * loadWorldFromXMLNoSave(std::string path) { XMLDocument *_currentXMLDoc; @@ -2196,12 +2101,6 @@ loadWorldFromXMLNoSave(std::string path) { if (!loadedLeft && !loadedRight) { currentXML = _currentXML; currentXMLRaw = _currentXMLRaw; - - std::ifstream dat ((_currentXML + ".dat").data()); - if (dat.good()) { - dat.close(); - tmp->load(); - } } else { delete _currentXMLDoc; } -- cgit v1.2.3