summaryrefslogtreecommitdiff
path: root/src/resources/colordb.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-30 20:36:56 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-30 20:36:56 +0300
commitf513868a135c1af288ff13ba2fcfdd6a5dc70a19 (patch)
treea979327e71dae600561f6402f18552561665ab10 /src/resources/colordb.cpp
parent076b11c903f88592fbd74f3af3989e71362912f8 (diff)
downloadplus-f513868a135c1af288ff13ba2fcfdd6a5dc70a19.tar.gz
plus-f513868a135c1af288ff13ba2fcfdd6a5dc70a19.tar.bz2
plus-f513868a135c1af288ff13ba2fcfdd6a5dc70a19.tar.xz
plus-f513868a135c1af288ff13ba2fcfdd6a5dc70a19.zip
move db files into db directory.
Diffstat (limited to 'src/resources/colordb.cpp')
-rw-r--r--src/resources/colordb.cpp200
1 files changed, 0 insertions, 200 deletions
diff --git a/src/resources/colordb.cpp b/src/resources/colordb.cpp
deleted file mode 100644
index d947a6523..000000000
--- a/src/resources/colordb.cpp
+++ /dev/null
@@ -1,200 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2008 Aethyra Development Team
- * Copyright (C) 2011-2013 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/colordb.h"
-
-#include "client.h"
-#include "configuration.h"
-#include "logger.h"
-
-#include "utils/xml.h"
-
-#include "debug.h"
-
-namespace
-{
- int mHairColorsSize = 0;
- bool mLoaded = false;
- std::string mFail("#ffffff");
- ColorDB::ColorLists mColorLists;
-}
-
-void ColorDB::load()
-{
- if (mLoaded)
- unload();
-
- loadHair();
- if (serverVersion >= 1)
- loadColorLists();
-
- const ColorListsIterator it = mColorLists.find("hair");
- if (it != mColorLists.end())
- mHairColorsSize = static_cast<int>((*it).second.size());
- else
- mHairColorsSize = 0;
-}
-
-void ColorDB::loadHair()
-{
- std::map <int, ItemColor> colors;
- const ColorListsIterator it = mColorLists.find("hair");
-
- if (it != mColorLists.end())
- colors = it->second;
-
- XML::Document *doc = new XML::Document(
- paths.getStringValue("hairColorFile"));
- XmlNodePtr root = doc->rootNode();
- bool hairXml = true;
-
- if (!root || !xmlNameEqual(root, "colors"))
- {
- logger->log("Trying to fall back on "
- + paths.getStringValue("hairColorFile2"));
-
- hairXml = false;
-
- delete doc;
- doc = new XML::Document(paths.getStringValue("hairColorFile2"));
- root = doc->rootNode();
-
- if (!root || !xmlNameEqual(root, "colors"))
- {
- logger->log1("ColorDB: Failed to find any color files.");
- colors[0] = ItemColor(0, "", "");
- mLoaded = true;
-
- delete doc;
-
- return;
- }
- }
-
- for_each_xml_child_node(node, root)
- {
- if (xmlNameEqual(node, "color"))
- {
- const int id = XML::getProperty(node, "id", 0);
-
- if (colors.find(id) != colors.end())
- logger->log("ColorDB: Redefinition of dye ID %d", id);
-
- colors[id] = ItemColor(id, XML::langProperty(node, "name", ""),
- XML::getProperty(node, hairXml ? "value" : "dye", "#FFFFFF"));
- }
- }
-
- delete doc;
-
- mColorLists["hair"] = colors;
- mLoaded = true;
-}
-
-void ColorDB::loadColorLists()
-{
- XML::Document *doc = new XML::Document(
- paths.getStringValue("itemColorsFile"));
- const XmlNodePtr root = doc->rootNode();
- if (!root)
- {
- delete doc;
- return;
- }
-
- for_each_xml_child_node(node, root)
- {
- if (xmlNameEqual(node, "list"))
- {
- const std::string name = XML::getProperty(node, "name", "");
- if (name.empty())
- continue;
-
- std::map <int, ItemColor> colors;
- const ColorListsIterator it = mColorLists.find(name);
-
- if (it != mColorLists.end())
- colors = it->second;
-
- for_each_xml_child_node(colorNode, node)
- {
- if (xmlNameEqual(colorNode, "color"))
- {
- ItemColor c(XML::getProperty(colorNode, "id", -1),
- XML::langProperty(colorNode, "name", ""),
- XML::getProperty(colorNode, "value", ""));
- if (c.id > -1)
- colors[c.id] = c;
- }
- }
- mColorLists[name] = colors;
- }
- }
- delete doc;
-}
-
-void ColorDB::unload()
-{
- logger->log1("Unloading color database...");
-
- mColorLists.clear();
- mLoaded = false;
-}
-
-std::string &ColorDB::getHairColorName(const int id)
-{
- if (!mLoaded)
- load();
-
- const ColorListsIterator it = mColorLists.find("hair");
- if (it == mColorLists.end())
- {
- logger->log1("ColorDB: Error, hair colors list empty");
- return mFail;
- }
-
- const ColorIterator i = (*it).second.find(id);
-
- if (i == (*it).second.end())
- {
- logger->log("ColorDB: Error, unknown dye ID# %d", id);
- return mFail;
- }
- else
- {
- return i->second.name;
- }
-}
-
-int ColorDB::getHairSize()
-{
- return mHairColorsSize;
-}
-
-const std::map <int, ColorDB::ItemColor>
- *ColorDB::getColorsList(const std::string &name)
-{
- const ColorListsIterator it = mColorLists.find(name);
-
- if (it != mColorLists.end())
- return &it->second;
- return nullptr;
-}