From be163616712f8c360af9b3940969c7f127043dc0 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 5 Apr 2017 22:49:39 +0300 Subject: Add loading textdb. --- src/CMakeLists.txt | 2 ++ src/Makefile.am | 2 ++ src/client.cpp | 3 ++ src/defaults.cpp | 3 ++ src/resources/db/textdb.cpp | 87 +++++++++++++++++++++++++++++++++++++++++++++ src/resources/db/textdb.h | 40 +++++++++++++++++++++ 6 files changed, 137 insertions(+) create mode 100644 src/resources/db/textdb.cpp create mode 100644 src/resources/db/textdb.h (limited to 'src') 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 . + */ + +#include "resources/db/textdb.h" + +#include "configuration.h" + +#include "utils/checkutils.h" + +#include "resources/beingcommon.h" + +#include "debug.h" + +namespace +{ + std::vector 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 . + */ + +#ifndef RESOURCES_DB_TEXTDB_H +#define RESOURCES_DB_TEXTDB_H + +#include "enums/simpletypes/skiperror.h" + +#include + +#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 -- cgit v1.2.3-60-g2f50