summaryrefslogtreecommitdiff
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
parentf4407806c8d94e51a724172e1ed37bb12fa872f1 (diff)
downloadplus-be163616712f8c360af9b3940969c7f127043dc0.tar.gz
plus-be163616712f8c360af9b3940969c7f127043dc0.tar.bz2
plus-be163616712f8c360af9b3940969c7f127043dc0.tar.xz
plus-be163616712f8c360af9b3940969c7f127043dc0.zip
Add loading textdb.
-rw-r--r--src/CMakeLists.txt2
-rw-r--r--src/Makefile.am2
-rw-r--r--src/client.cpp3
-rw-r--r--src/defaults.cpp3
-rw-r--r--src/resources/db/textdb.cpp87
-rw-r--r--src/resources/db/textdb.h40
6 files changed, 137 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index e26ad4d61..f874ebc0d 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -815,6 +815,8 @@ SET(SRCS
resources/db/statdb.h
resources/db/statuseffectdb.cpp
resources/db/statuseffectdb.h
+ resources/db/textdb.cpp
+ resources/db/textdb.h
resources/db/unitsdb.cpp
resources/db/unitsdb.h
resources/db/weaponsdb.cpp
diff --git a/src/Makefile.am b/src/Makefile.am
index 21cfcfdc8..51e5bb6ff 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1384,6 +1384,8 @@ SRC = ${BASE_SRC} \
resources/db/statdb.h \
resources/db/statuseffectdb.cpp \
resources/db/statuseffectdb.h \
+ resources/db/textdb.cpp \
+ resources/db/textdb.h \
resources/db/unitsdb.cpp \
resources/db/unitsdb.h \
resources/db/weaponsdb.cpp \
diff --git a/src/client.cpp b/src/client.cpp
index c8530da94..f1ede82a2 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -129,6 +129,7 @@
#include "resources/db/skillunitdb.h"
#include "resources/db/statdb.h"
#include "resources/db/statuseffectdb.h"
+#include "resources/db/textdb.h"
#include "resources/db/unitsdb.h"
#include "resources/db/weaponsdb.h"
@@ -635,6 +636,7 @@ void Client::gameClear()
ColorDB::unload();
SoundDB::unload();
LanguageDb::unload();
+ TextDb::unload();
EmoteDB::unload();
ItemDB::unload();
ItemFieldDb::unload();
@@ -1366,6 +1368,7 @@ int Client::gameExec()
ColorDB::load();
SoundDB::load();
LanguageDb::load();
+ TextDb::load();
MapDB::load();
ItemFieldDb::load();
ItemDB::load();
diff --git a/src/defaults.cpp b/src/defaults.cpp
index 0d7493da7..96674599f 100644
--- a/src/defaults.cpp
+++ b/src/defaults.cpp
@@ -643,6 +643,9 @@ DefaultsData* getPathsDefaults()
AddDEF("languagesFile", "languages.xml");
AddDEF("languagesPatchFile", "languages_patch.xml");
AddDEF("languagesPatchDir", "languages.d");
+ AddDEF("textsFile", "texts.xml");
+ AddDEF("textsPatchFile", "texts_patch.xml");
+ AddDEF("textsPatchDir", "texts.d");
AddDEF("networkFile", "network.xml");
AddDEF("networkPatchFile", "network_patch.xml");
AddDEF("networkPatchDir", "network.d");
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