summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-04-05 22:49:39 +0300
committerAndrei Karas <akaras@inbox.ru>2017-04-05 22:49:39 +0300
commitbe163616712f8c360af9b3940969c7f127043dc0 (patch)
tree022d352cbe937c4d9c3e5f9a3a6909cc57213b8a /src/resources
parentf4407806c8d94e51a724172e1ed37bb12fa872f1 (diff)
downloadplus-be163616712f8c360af9b3940969c7f127043dc0.tar.gz
plus-be163616712f8c360af9b3940969c7f127043dc0.tar.bz2
plus-be163616712f8c360af9b3940969c7f127043dc0.tar.xz
plus-be163616712f8c360af9b3940969c7f127043dc0.zip
Add loading textdb.
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/db/textdb.cpp87
-rw-r--r--src/resources/db/textdb.h40
2 files changed, 127 insertions, 0 deletions
diff --git a/src/resources/db/textdb.cpp b/src/resources/db/textdb.cpp
new file mode 100644
index 000000000..28198162d
--- /dev/null
+++ b/src/resources/db/textdb.cpp
@@ -0,0 +1,87 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2013-2017 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "resources/db/textdb.h"
+
+#include "configuration.h"
+
+#include "utils/checkutils.h"
+
+#include "resources/beingcommon.h"
+
+#include "debug.h"
+
+namespace
+{
+ std::vector<std::string> mTexts;
+} // namespace
+
+void TextDb::load()
+{
+ unload();
+ loadXmlFile(paths.getStringValue("textsFile"), SkipError_false);
+ loadXmlFile(paths.getStringValue("textsPatchFile"), SkipError_true);
+ loadXmlDir("textsPatchDir", loadXmlFile);
+}
+
+void TextDb::loadXmlFile(const std::string &fileName,
+ const SkipError skipError)
+{
+ XML::Document *doc = new XML::Document(fileName,
+ UseVirtFs_true,
+ skipError);
+ XmlNodeConstPtrConst root = doc->rootNode();
+
+ if (!root || !xmlNameEqual(root, "texts"))
+ {
+ delete doc;
+ return;
+ }
+
+ for_each_xml_child_node(node, root)
+ {
+ if (xmlNameEqual(node, "include"))
+ {
+ const std::string name = XML::getProperty(node, "name", "");
+ if (!name.empty())
+ loadXmlFile(name, skipError);
+ continue;
+ }
+ else if (xmlNameEqual(node, "text"))
+ {
+ const bool show = XML::getBoolProperty(node, "show", false);
+ if (show == true)
+ {
+ if (!XmlHaveChildContent(node))
+ continue;
+
+ std::string text = XmlChildContent(node);
+ mTexts.push_back(text);
+ }
+ }
+ }
+
+ delete doc;
+}
+
+void TextDb::unload()
+{
+ mTexts.clear();
+}
diff --git a/src/resources/db/textdb.h b/src/resources/db/textdb.h
new file mode 100644
index 000000000..977b49ec6
--- /dev/null
+++ b/src/resources/db/textdb.h
@@ -0,0 +1,40 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2013-2017 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef RESOURCES_DB_TEXTDB_H
+#define RESOURCES_DB_TEXTDB_H
+
+#include "enums/simpletypes/skiperror.h"
+
+#include <string>
+
+#include "localconsts.h"
+
+namespace TextDb
+{
+ void load();
+
+ void loadXmlFile(const std::string &fileName,
+ const SkipError skipError);
+
+ void unload();
+} // namespace LanguageDB
+
+#endif // RESOURCES_DB_TEXTDB_H