Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/libraries/tools/ResourceLocation.cc @ 5747

Last change on this file since 5747 was 5747, checked in by rgrieder, 15 years ago

Added Exception::handleMessage() (copy from Game::getExceptionMessage) function that returns the exception message (if retrievable) when catching with "…"
and adjusted some exception handlers.

  • Property svn:eol-style set to native
File size: 3.4 KB
Line 
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>
32#include <boost/filesystem.hpp>
33
34#include "util/Exception.h"
35#include "core/Core.h"
36#include "core/CoreIncludes.h"
37#include "core/XMLFile.h"
38#include "core/XMLPort.h"
39
40namespace orxonox
41{
42    CreateFactory(ResourceLocation);
43
44    ResourceLocation::ResourceLocation(BaseObject* creator)
45        : BaseObject(creator)
46    {
47        RegisterObject(ResourceLocation);
48
49        // Default values
50        archiveType_ = "FileSystem";
51        bRecursive_  = true;
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");
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
84        // Add it to the Ogre paths
85        Ogre::ResourceGroupManager::getSingleton().addResourceLocation(
86            path.string(), this->getArchiveType(), resourceGroup, this->getRecursive());
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 (...)
100        {
101            COUT(1) << "Removing of a ResourceLocation failed: " << Exception::handleMessage() << std::endl;
102        }
103    }
104}
Note: See TracBrowser for help on using the repository browser.