aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-02-09 20:26:32 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-02-09 20:26:32 -0500
commit27892bc40122494385bdbe5eb84aee52737f9c13 (patch)
treec8145ac93afbfc4d30e78dea8dc2a5de6e2b0972 /src/world.cpp
parent7f77420e0ea5f1b5a36539b06a1207c98bec1927 (diff)
skirl; angry
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/world.cpp b/src/world.cpp
index 4f2f99c..8db9344 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -203,20 +203,25 @@ void WorldSystem::load(const std::string& file)
UserError("XML Error: Failed to parse file (not your fault though..?)");
// include headers
+ std::vector<std::string> toAdd;
auto ixml = xmlDoc.FirstChildElement("include");
while (ixml != nullptr) {
auto file = ixml->Attribute("file");
if (file != nullptr) {
DEBUG_printf("Including file: %s\n", file);
- xmlRaw.append(readFile(xmlFolder + file));
+ toAdd.emplace_back(xmlFolder + file);
+ //xmlRaw.append(readFile(xmlFolder + file));
} else {
UserError("XML Error: <include> tag file not given");
}
- break;//ixml = ixml->NextSiblingElement();
+ ixml = ixml->NextSiblingElement("include");
}
+ for (const auto& f : toAdd)
+ xmlRaw.append(readFile(f));
+
if (xmlDoc.Parse(xmlRaw.data()) != XML_NO_ERROR)
UserError("XML Error:");
@@ -385,6 +390,8 @@ void WorldSystem::load(const std::string& file)
entity.assign<Wander>();
} else if (tname == "Hop" ) {
entity.assign<Hop>();
+ } else if (tname == "Aggro" ) {
+ entity.assign<Aggro>(abcd->Attribute("arena"));
} else if (tname == "Animation") {
auto entan = entity.assign<Animate>();
auto animx = abcd->FirstChildElement();