1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-25 17:53:47 +00:00
Aquaria/BBGE/ReadXML.cpp

36 lines
851 B
C++
Raw Normal View History

#include "ReadXML.h"
#include "Base.h"
2019-03-17 23:50:56 +00:00
#include <sstream>
tinyxml2::XMLError readXML(const std::string& fn, tinyxml2::XMLDocument& doc)
{
size_t sz = 0;
char *buf = readFile(fn.c_str(), &sz);
tinyxml2::XMLError err = doc.Parse(buf, sz);
delete [] buf;
return err;
}
tinyxml2::XMLDocument *readXML(const std::string& fn, tinyxml2::XMLError *perr /* = 0 */, bool keepEmpty /* = false */)
{
tinyxml2::XMLDocument *doc = new tinyxml2::XMLDocument();
tinyxml2::XMLError err = readXML(fn, *doc);
if(perr)
*perr = err;
if(err != tinyxml2::XML_SUCCESS && !keepEmpty)
{
2019-03-17 23:50:56 +00:00
const char *e1 = doc->GetErrorStr1();
const char *e2 = doc->GetErrorStr2();
std::ostringstream os;
os << "readXML(" << fn << ") failed!\n";
if(e1)
os << e1 << "\n";
if(e2)
os << e2 << "\n";
errorLog(os.str());
delete doc;
doc = NULL;
}
return doc;
}