//////////////////////////////////////////////////////////////////////////////// // Scorched3D (c) 2000-2004 // // This file is part of Scorched3D. // // Scorched3D 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. // // Scorched3D 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 Scorched3D; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //////////////////////////////////////////////////////////////////////////////// #include #include #include ModInfo::ModInfo(const char *name) : name_(name) { } ModInfo::~ModInfo() { } bool ModInfo::parse(const char *fileName) { entries_.clear(); XMLFile file; if (!file.readFile(fileName)) { dialogMessage("ModInfo", formatString( "Failed to parse \"%s\":%s\n", fileName, file.getParserError())); return false; } if (!file.getRootNode()) { dialogMessage("ModInfo", formatString( "Failed to find mod info definition file \"%s\"", fileName)); return false; } std::string tmpicon, tmpgamefile; XMLNode *mainNode = 0; if (!file.getRootNode()->getNamedChild("main", mainNode)) return false; if (!mainNode->getNamedChild("description", description_)) return false; if (!mainNode->getNamedChild("icon", tmpicon)) return false; if (!mainNode->getNamedChild("url", url_)) return false; if (!mainNode->getNamedChild("protocolversion", protocolversion_)) return false; if (checkDataFile(tmpicon.c_str())) { icon_ = getDataFile(tmpicon.c_str()); } else { icon_ = getDataFile("data/windows/tank2.bmp"); } XMLNode *gameNode = 0; while (file.getRootNode()->getNamedChild("game", gameNode, false)) { MenuEntry entry; if (!gameNode->getNamedChild("description", entry.description)) return false; if (!gameNode->getNamedChild("icon", tmpicon)) return false; if (!gameNode->getNamedChild("gamefile", tmpgamefile)) return false; if (checkDataFile(tmpicon.c_str())) { entry.icon = getDataFile(tmpicon.c_str()); } else { entry.icon = getDataFile("data/windows/tank2.bmp"); } entry.gamefile = getDataFile(tmpgamefile.c_str()); if (!checkDataFile(tmpgamefile.c_str())) return false; if (!gameNode->failChildren()) return false; entries_.push_back(entry); } return file.getRootNode()->failChildren(); }