/** * Tibia GIMUD Server - a free and open-source MMORPG server emulator * Copyright (C) 2019 Sabrehaven and Mark Samman * * 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(groupNode.attribute("id").value()); group.name = groupNode.attribute("name").as_string(); group.flags = pugi::cast(groupNode.attribute("flags").value()); group.access = groupNode.attribute("access").as_bool(); group.maxDepotItems = pugi::cast(groupNode.attribute("maxdepotitems").value()); group.maxVipEntries = pugi::cast(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; }