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/resources/db/textdb.cpp | 87 +++++++++++++++++++++++++++++++++++++++++++++ src/resources/db/textdb.h | 40 +++++++++++++++++++++ 2 files changed, 127 insertions(+) create mode 100644 src/resources/db/textdb.cpp create mode 100644 src/resources/db/textdb.h (limited to 'src/resources') 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