summaryrefslogtreecommitdiff
path: root/src/resources/db
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-06-29 18:57:21 +0300
committerAndrei Karas <akaras@inbox.ru>2016-06-30 00:03:19 +0300
commitbd10eec0009a0b90b246b07829d176a360d7bccb (patch)
treeb957a1e744c672cceb107689a94d292c6d2b8aa7 /src/resources/db
parentaa47227c8d93bcc3d225c51461c9c8af113bfcc1 (diff)
downloadplus-bd10eec0009a0b90b246b07829d176a360d7bccb.tar.gz
plus-bd10eec0009a0b90b246b07829d176a360d7bccb.tar.bz2
plus-bd10eec0009a0b90b246b07829d176a360d7bccb.tar.xz
plus-bd10eec0009a0b90b246b07829d176a360d7bccb.zip
Add statdb. Move to statdb server related stats list.
Diffstat (limited to 'src/resources/db')
-rw-r--r--src/resources/db/itemdb.cpp9
-rw-r--r--src/resources/db/itemdb.h7
-rw-r--r--src/resources/db/statdb.cpp97
-rw-r--r--src/resources/db/statdb.h47
4 files changed, 146 insertions, 14 deletions
diff --git a/src/resources/db/itemdb.cpp b/src/resources/db/itemdb.cpp
index 0421d7d88..323412e08 100644
--- a/src/resources/db/itemdb.cpp
+++ b/src/resources/db/itemdb.cpp
@@ -37,6 +37,7 @@
#include "resources/db/itemdbstat.h"
#include "resources/db/itemfielddb.h"
+#include "resources/db/statdb.h"
#include "net/serverfeatures.h"
@@ -77,13 +78,6 @@ static void loadOrderSprite(ItemInfo *const itemInfo,
static int parseSpriteName(const std::string &name);
static int parseDirectionName(const std::string &name);
-static std::vector<ItemDB::Stat> extraStats;
-
-void ItemDB::setStatsList(const std::vector<ItemDB::Stat> &stats)
-{
- extraStats = stats;
-}
-
static ItemDbTypeT itemTypeFromString(const std::string &name)
{
const size_t sz = sizeof(itemTypeMap) / sizeof(itemTypeMap[0]);
@@ -519,6 +513,7 @@ void ItemDB::loadXmlFile(const std::string &fileName,
std::string effect;
readFields(effect, node, requiredFields);
readFields(effect, node, addFields);
+ const std::vector<Stat> &extraStats = StatDb::getExtraStats();
FOR_EACH (std::vector<Stat>::const_iterator, it, extraStats)
{
std::string value = XML::getProperty(
diff --git a/src/resources/db/itemdb.h b/src/resources/db/itemdb.h
index cc94145ab..3a992b90c 100644
--- a/src/resources/db/itemdb.h
+++ b/src/resources/db/itemdb.h
@@ -33,11 +33,6 @@
class ItemInfo;
-namespace ItemDB
-{
- struct Stat;
-}
-
/**
* Item information database.
*/
@@ -77,8 +72,6 @@ namespace ItemDB
#endif
int getTagId(const std::string &tagName) A_WARN_UNUSED;
-
- void setStatsList(const std::vector<Stat> &stats);
} // namespace ItemDB
#endif // RESOURCES_DB_ITEMDB_H
diff --git a/src/resources/db/statdb.cpp b/src/resources/db/statdb.cpp
new file mode 100644
index 000000000..2fc2d592c
--- /dev/null
+++ b/src/resources/db/statdb.cpp
@@ -0,0 +1,97 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2016 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/statdb.h"
+
+#include "configuration.h"
+
+#include "utils/checkutils.h"
+#include "utils/dtor.h"
+
+#include "resources/beingcommon.h"
+
+#include "resources/item/itemfieldtype.h"
+
+#include "debug.h"
+
+namespace
+{
+ bool mLoaded = false;
+ static std::vector<ItemDB::Stat> extraStats;
+} // namespace
+
+void StatDb::setStatsList(const std::vector<ItemDB::Stat> &stats)
+{
+ extraStats = stats;
+}
+
+const std::vector<ItemDB::Stat> &StatDb::getExtraStats()
+{
+ return extraStats;
+}
+
+void StatDb::load()
+{
+ if (mLoaded)
+ unload();
+
+ logger->log1("Initializing stat database...");
+
+ loadXmlFile(paths.getStringValue("statFile"), SkipError_false);
+ loadXmlFile(paths.getStringValue("statPatchFile"), SkipError_true);
+ loadXmlDir("statPatchDir", loadXmlFile);
+ mLoaded = true;
+}
+
+void StatDb::loadXmlFile(const std::string &fileName,
+ const SkipError skipError)
+{
+ XML::Document doc(fileName,
+ UseResman_true,
+ skipError);
+ const XmlNodePtrConst rootNode = doc.rootNode();
+
+ if (!rootNode || !xmlNameEqual(rootNode, "stats"))
+ {
+ logger->log("StatDb: Error while loading %s!",
+ fileName.c_str());
+ return;
+ }
+
+ for_each_xml_child_node(node, rootNode)
+ {
+ if (xmlNameEqual(node, "include"))
+ {
+ const std::string name = XML::getProperty(node, "name", "");
+ if (!name.empty())
+ loadXmlFile(name, skipError);
+ continue;
+ }
+
+
+ }
+}
+
+void StatDb::unload()
+{
+ logger->log1("Unloading stat database...");
+
+ mLoaded = false;
+}
diff --git a/src/resources/db/statdb.h b/src/resources/db/statdb.h
new file mode 100644
index 000000000..860235439
--- /dev/null
+++ b/src/resources/db/statdb.h
@@ -0,0 +1,47 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2016 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_STATDB_H
+#define RESOURCES_DB_STATDB_H
+
+#include "enums/simpletypes/skiperror.h"
+
+#include "resources/db/itemdbstat.h"
+
+#include <string>
+#include <vector>
+
+#include "localconsts.h"
+
+namespace StatDb
+{
+ void load();
+
+ void unload();
+
+ void loadXmlFile(const std::string &fileName,
+ const SkipError skipError);
+
+ void setStatsList(const std::vector<ItemDB::Stat> &stats);
+
+ const std::vector<ItemDB::Stat> &getExtraStats();
+} // namespace StatDb
+
+#endif // RESOURCES_DB_STATDB_H