diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-12 00:18:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-12 00:51:22 +0300 |
commit | d5a00a320043f5782ebc489285c89943b667e094 (patch) | |
tree | eb64f3b1f81f7ba2a3c7ff9e02ad329ef21abb83 /src/resources/db/sounddb.cpp | |
parent | 742b2a22bdcb69e6f615a284065ba2696e7bc261 (diff) | |
download | plus-d5a00a320043f5782ebc489285c89943b667e094.tar.gz plus-d5a00a320043f5782ebc489285c89943b667e094.tar.bz2 plus-d5a00a320043f5782ebc489285c89943b667e094.tar.xz plus-d5a00a320043f5782ebc489285c89943b667e094.zip |
Add skipError parameter to loadXml functions.
This allow not show errors for some not main xml files.
Diffstat (limited to 'src/resources/db/sounddb.cpp')
-rw-r--r-- | src/resources/db/sounddb.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/resources/db/sounddb.cpp b/src/resources/db/sounddb.cpp index 238e17b51..3268a3e9c 100644 --- a/src/resources/db/sounddb.cpp +++ b/src/resources/db/sounddb.cpp @@ -38,16 +38,17 @@ namespace void SoundDB::load() { unload(); - loadXmlFile(paths.getStringValue("soundsFile")); - loadXmlFile(paths.getStringValue("soundsPatchFile")); + loadXmlFile(paths.getStringValue("soundsFile"), SkipError_false); + loadXmlFile(paths.getStringValue("soundsPatchFile"), SkipError_true); loadXmlDir("soundsPatchDir", loadXmlFile); } -void SoundDB::loadXmlFile(const std::string &fileName) +void SoundDB::loadXmlFile(const std::string &fileName, + const SkipError skipError) { XML::Document *doc = new XML::Document(fileName, UseResman_true, - SkipError_false); + skipError); const XmlNodePtrConst root = doc->rootNode(); if (!root || !xmlNameEqual(root, "sounds")) @@ -62,7 +63,7 @@ void SoundDB::loadXmlFile(const std::string &fileName) { const std::string name = XML::getProperty(node, "name", ""); if (!name.empty()) - loadXmlFile(name); + loadXmlFile(name, skipError); continue; } else if (xmlNameEqual(node, "sound")) |