mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Add FILESYSTEM_loadTiXml2Document()
Same as FILESYSTEM_saveTiXml2Document(), except for loading. Read this as "load TinyXML2 Document", not "load TinyXML to Document".
This commit is contained in:
parent
45ad048756
commit
b17e96df7d
2 changed files with 15 additions and 0 deletions
|
@ -297,6 +297,20 @@ bool FILESYSTEM_saveTiXml2Document(const char *name, tinyxml2::XMLDocument& doc)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool FILESYSTEM_loadTiXml2Document(const char *name, tinyxml2::XMLDocument& doc)
|
||||
{
|
||||
/* XMLDocument.LoadFile doesn't account for Unicode paths, PHYSFS does */
|
||||
unsigned char *mem = NULL;
|
||||
FILESYSTEM_loadFileToMemory(name, &mem, NULL, true);
|
||||
if (mem == NULL)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
doc.Parse((const char*) mem);
|
||||
FILESYSTEM_freeMemory(&mem);
|
||||
return true;
|
||||
}
|
||||
|
||||
std::vector<std::string> FILESYSTEM_getLevelDirFileNames()
|
||||
{
|
||||
std::vector<std::string> list;
|
||||
|
|
|
@ -23,6 +23,7 @@ void FILESYSTEM_freeMemory(unsigned char **mem);
|
|||
bool FILESYSTEM_saveTiXmlDocument(const char *name, TiXmlDocument *doc);
|
||||
bool FILESYSTEM_loadTiXmlDocument(const char *name, TiXmlDocument *doc);
|
||||
bool FILESYSTEM_saveTiXml2Document(const char *name, tinyxml2::XMLDocument& doc);
|
||||
bool FILESYSTEM_loadTiXml2Document(const char *name, tinyxml2::XMLDocument& doc);
|
||||
|
||||
std::vector<std::string> FILESYSTEM_getLevelDirFileNames();
|
||||
|
||||
|
|
Loading…
Reference in a new issue