mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-05-02 02:29:21 +02:00
58 lines
1.8 KiB
C++
58 lines
1.8 KiB
C++
/**
|
|
* Tibia GIMUD Server - a free and open-source MMORPG server emulator
|
|
* Copyright (C) 2019 Sabrehaven and Mark Samman <mark.samman@gmail.com>
|
|
*
|
|
* 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
|
|
* (at your option) 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, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#include "otpch.h"
|
|
|
|
#include "groups.h"
|
|
|
|
#include "pugicast.h"
|
|
#include "tools.h"
|
|
|
|
bool Groups::load()
|
|
{
|
|
pugi::xml_document doc;
|
|
pugi::xml_parse_result result = doc.load_file("data/XML/groups.xml");
|
|
if (!result) {
|
|
printXMLError("Error - Groups::load", "data/XML/groups.xml", result);
|
|
return false;
|
|
}
|
|
|
|
for (auto groupNode : doc.child("groups").children()) {
|
|
Group group;
|
|
group.id = pugi::cast<uint32_t>(groupNode.attribute("id").value());
|
|
group.name = groupNode.attribute("name").as_string();
|
|
group.flags = pugi::cast<uint64_t>(groupNode.attribute("flags").value());
|
|
group.access = groupNode.attribute("access").as_bool();
|
|
group.maxDepotItems = pugi::cast<uint32_t>(groupNode.attribute("maxdepotitems").value());
|
|
group.maxVipEntries = pugi::cast<uint32_t>(groupNode.attribute("maxvipentries").value());
|
|
groups.push_back(group);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
Group* Groups::getGroup(uint16_t id)
|
|
{
|
|
for (Group& group : groups) {
|
|
if (group.id == id) {
|
|
return &group;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|