/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * 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. * * Author: * Reto Grieder * Co-authors: * ... * */ #include "ResourceLocation.h" #include #include #include #include "util/Exception.h" #include "core/CoreIncludes.h" #include "core/ApplicationPaths.h" #include "core/ConfigurablePaths.h" #include "core/XMLFile.h" #include "core/XMLPort.h" namespace orxonox { RegisterClass(ResourceLocation); ResourceLocation::ResourceLocation(Context* context) : BaseObject(context) { RegisterObject(ResourceLocation); // Default values archiveType_ = "FileSystem"; bRecursive_ = false; } void ResourceLocation::XMLPort(Element& xmlelement, XMLPort::Mode mode) { XMLPortParam(ResourceLocation, "path", setPath, getPath, xmlelement, mode); XMLPortParam(ResourceLocation, "archiveType", setArchiveType, getArchiveType, xmlelement, mode); XMLPortParam(ResourceLocation, "recursive", setRecursive, getRecursive, xmlelement, mode); if (path_.empty()) ThrowException(AbortLoading, "ResourceLocation: No path given."); } void ResourceLocation::load(const std::string& resourceGroup) { if (path_.empty()) ThrowException(InitialisationFailed, "ResourceLocation: Trying to add one without the path being set"); // Find the path namespace bf = boost::filesystem; bf::path path; if (bf::exists(ConfigurablePaths::getDataPath() / this->getPath())) path = ConfigurablePaths::getDataPath() / this->getPath(); else if (ApplicationPaths::buildDirectoryRun() && bf::exists(ConfigurablePaths::getExternalDataPath() / this->getPath())) path = ConfigurablePaths::getExternalDataPath() / this->getPath(); else { orxout(internal_warning) << "ResourceLocation '" << this->getPath() << "' does not seem to exist" << endl; return; } // Add it to the Ogre paths Ogre::ResourceGroupManager::getSingleton().addResourceLocation( path.string(), this->getArchiveType(), resourceGroup, this->getRecursive()); resourceGroup_ = resourceGroup; } void ResourceLocation::unload() { // Remove from Ogre paths resourceGroup_.clear(); try { Ogre::ResourceGroupManager::getSingleton().removeResourceLocation( this->getPath(), this->getResourceGroup()); } catch (const Ogre::Exception& ex) { orxout(internal_error) << "Removing of a ResourceLocation failed: " << ex.what() << endl; } } }