| [5624] | 1 | /* | 
|---|
|  | 2 | *   ORXONOX - the hottest 3D action shooter ever to exist | 
|---|
|  | 3 | *                    > www.orxonox.net < | 
|---|
|  | 4 | * | 
|---|
|  | 5 | * | 
|---|
|  | 6 | *   License notice: | 
|---|
|  | 7 | * | 
|---|
|  | 8 | *   This program is free software; you can redistribute it and/or | 
|---|
|  | 9 | *   modify it under the terms of the GNU General Public License | 
|---|
|  | 10 | *   as published by the Free Software Foundation; either version 2 | 
|---|
|  | 11 | *   of the License, or (at your option) any later version. | 
|---|
|  | 12 | * | 
|---|
|  | 13 | *   This program is distributed in the hope that it will be useful, | 
|---|
|  | 14 | *   but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
|  | 15 | *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
|  | 16 | *   GNU General Public License for more details. | 
|---|
|  | 17 | * | 
|---|
|  | 18 | *   You should have received a copy of the GNU General Public License | 
|---|
|  | 19 | *   along with this program; if not, write to the Free Software | 
|---|
|  | 20 | *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
|---|
|  | 21 | * | 
|---|
|  | 22 | *   Author: | 
|---|
|  | 23 | *      Reto Grieder | 
|---|
|  | 24 | *   Co-authors: | 
|---|
|  | 25 | *      ... | 
|---|
|  | 26 | * | 
|---|
|  | 27 | */ | 
|---|
|  | 28 |  | 
|---|
|  | 29 | #include "ResourceLocation.h" | 
|---|
|  | 30 |  | 
|---|
|  | 31 | #include <OgreResourceGroupManager.h> | 
|---|
| [5652] | 32 | #include <boost/filesystem.hpp> | 
|---|
|  | 33 |  | 
|---|
| [5624] | 34 | #include "util/Exception.h" | 
|---|
| [5652] | 35 | #include "core/Core.h" | 
|---|
| [5624] | 36 | #include "core/CoreIncludes.h" | 
|---|
| [5652] | 37 | #include "core/XMLFile.h" | 
|---|
| [5624] | 38 | #include "core/XMLPort.h" | 
|---|
|  | 39 |  | 
|---|
|  | 40 | namespace orxonox | 
|---|
|  | 41 | { | 
|---|
| [5652] | 42 | CreateFactory(ResourceLocation); | 
|---|
|  | 43 |  | 
|---|
| [5624] | 44 | ResourceLocation::ResourceLocation(BaseObject* creator) | 
|---|
|  | 45 | : BaseObject(creator) | 
|---|
|  | 46 | { | 
|---|
|  | 47 | RegisterObject(ResourceLocation); | 
|---|
|  | 48 |  | 
|---|
|  | 49 | // Default values | 
|---|
|  | 50 | archiveType_ = "FileSystem"; | 
|---|
| [5652] | 51 | bRecursive_  = true; | 
|---|
| [5624] | 52 | } | 
|---|
|  | 53 |  | 
|---|
|  | 54 | ResourceLocation::~ResourceLocation() | 
|---|
|  | 55 | { | 
|---|
|  | 56 | } | 
|---|
|  | 57 |  | 
|---|
|  | 58 | void ResourceLocation::XMLPort(Element& xmlElement, XMLPort::Mode mode) | 
|---|
|  | 59 | { | 
|---|
|  | 60 | XMLPortParam(ResourceLocation, "path",        setPath,        getPath,        xmlElement, mode); | 
|---|
|  | 61 | XMLPortParam(ResourceLocation, "archiveType", setArchiveType, getArchiveType, xmlElement, mode); | 
|---|
|  | 62 | XMLPortParam(ResourceLocation, "recursive",   setRecursive,   getRecursive,   xmlElement, mode); | 
|---|
|  | 63 | if (path_.empty()) | 
|---|
|  | 64 | ThrowException(AbortLoading, "ResourceLocation: No path given."); | 
|---|
|  | 65 | } | 
|---|
|  | 66 |  | 
|---|
|  | 67 | void ResourceLocation::load(const std::string& resourceGroup) | 
|---|
|  | 68 | { | 
|---|
|  | 69 | if (path_.empty()) | 
|---|
|  | 70 | ThrowException(InitialisationFailed, "ResourceLocation: Trying to add one without the path being set"); | 
|---|
| [5652] | 71 |  | 
|---|
|  | 72 | // Find the path | 
|---|
|  | 73 | boost::filesystem::path path; | 
|---|
|  | 74 | if (boost::filesystem::exists(Core::getDataPath() / this->getPath())) | 
|---|
|  | 75 | path = Core::getDataPath() / this->getPath(); | 
|---|
|  | 76 | else if (Core::isDevelopmentRun() && boost::filesystem::exists(Core::getExternalDataPath() / this->getPath())) | 
|---|
|  | 77 | path = Core::getExternalDataPath() / this->getPath(); | 
|---|
|  | 78 | else | 
|---|
|  | 79 | { | 
|---|
|  | 80 | COUT(2) << "Warning: ResourceLocation '" << this->getPath() << "' does not seem to exist" << std::endl; | 
|---|
|  | 81 | return; | 
|---|
|  | 82 | } | 
|---|
|  | 83 |  | 
|---|
| [5624] | 84 | // Add it to the Ogre paths | 
|---|
|  | 85 | Ogre::ResourceGroupManager::getSingleton().addResourceLocation( | 
|---|
| [5652] | 86 | path.string(), this->getArchiveType(), resourceGroup, this->getRecursive()); | 
|---|
| [5624] | 87 | resourceGroup_ = resourceGroup; | 
|---|
|  | 88 | } | 
|---|
|  | 89 |  | 
|---|
|  | 90 | void ResourceLocation::unload() | 
|---|
|  | 91 | { | 
|---|
|  | 92 | // Remove from Ogre paths | 
|---|
|  | 93 | resourceGroup_.erase(); | 
|---|
|  | 94 | try | 
|---|
|  | 95 | { | 
|---|
|  | 96 | Ogre::ResourceGroupManager::getSingleton().removeResourceLocation( | 
|---|
|  | 97 | this->getPath(), this->getResourceGroup()); | 
|---|
|  | 98 | } | 
|---|
|  | 99 | catch (const std::exception& ex) | 
|---|
|  | 100 | { | 
|---|
|  | 101 | COUT(1) << "Removing of a ResourceLocation failed: " << ex.what() << std::endl; | 
|---|
|  | 102 | } | 
|---|
|  | 103 | } | 
|---|
|  | 104 | } | 
|---|