From 331d1d0989acccf5247d34561d0c962f7a64adc2 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 13 Sep 2016 19:27:47 +0300 Subject: Add basic support for networkdb. --- src/resources/db/networkdb.cpp | 65 ++++++++++++++++++++++++++++++++++++++++++ src/resources/db/networkdb.h | 48 +++++++++++++++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 src/resources/db/networkdb.cpp create mode 100644 src/resources/db/networkdb.h (limited to 'src/resources/db') diff --git a/src/resources/db/networkdb.cpp b/src/resources/db/networkdb.cpp new file mode 100644 index 000000000..afab56af3 --- /dev/null +++ b/src/resources/db/networkdb.cpp @@ -0,0 +1,65 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-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 . + */ + +#include "resources/db/networkdb.h" + +#include "configuration.h" + +#include "utils/xmlutils.h" + +#include "resources/beingcommon.h" + +#include "debug.h" + +namespace +{ + bool mLoaded = false; + NetworkInfos mInPackets; +} // namespace + +void NetworkDb::load() +{ + if (mLoaded) + unload(); + + loadXmlFile(paths.getStringValue("networkFile"), SkipError_false); + loadXmlFile(paths.getStringValue("networkPatchFile"), SkipError_true); + loadXmlDir("networkPatchDir", loadXmlFile); + mLoaded = true; +} + +void NetworkDb::loadXmlFile(const std::string &fileName, + const SkipError skipError) +{ + readXmlIntMap(fileName, + "network", + "inpackets", + "fakepacket", + "id", + "len", + mInPackets, + skipError); +} + +void NetworkDb::unload() +{ + mInPackets.clear(); + mLoaded = false; +} diff --git a/src/resources/db/networkdb.h b/src/resources/db/networkdb.h new file mode 100644 index 000000000..822925fa0 --- /dev/null +++ b/src/resources/db/networkdb.h @@ -0,0 +1,48 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-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 . + */ + +#ifndef RESOURCES_DB_NETWORKDB_H +#define RESOURCES_DB_NETWORKDB_H + +#include "enums/simpletypes/skiperror.h" + +#include +#include + +typedef std::map NetworkInfos; +typedef NetworkInfos::const_iterator NetworkInfosIter; + +namespace NetworkDb +{ + /** + * Loads the chars data. + */ + void load(); + + void loadXmlFile(const std::string &fileName, + const SkipError skipError); + + /** + * Clear the chars data + */ + void unload(); +} // namespace NetworkDb + +#endif // RESOURCES_DB_NETWORKDB_H -- cgit v1.2.3-60-g2f50