| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- -----------------------------------------------------------------------------
- Copyright (c) 27.10.2013 Tobias Peters <tobias.peters@kreativeffekt.at>
- This file is part of Q-Gears
- Q-Gears 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, version 2.0 (GPLv2) of the License.
- Q-Gears 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.
- -----------------------------------------------------------------------------
- */
- #include "map/QGearsMapFileManager.h"
- template<> QGears::MapFileManager *Ogre::Singleton<QGears::MapFileManager>::msSingleton = NULL;
- namespace QGears
- {
- //--------------------------------------------------------------------------
- MapFileManager *MapFileManager::getSingletonPtr()
- {
- return msSingleton;
- }
-
- //--------------------------------------------------------------------------
- MapFileManager &MapFileManager::getSingleton()
- {
- assert( msSingleton );
- return(*msSingleton );
- }
- //--------------------------------------------------------------------------
- MapFileManager::MapFileManager()
- {
- mResourceType = MapFile::RESOURCE_TYPE;
-
- // low, because it will likely reference other resources
- mLoadOrder = 30.0f;
-
- // this is how we register the ResourceManager with OGRE
- Ogre::ResourceGroupManager::getSingleton()._registerResourceManager( mResourceType, this );
- }
-
- //--------------------------------------------------------------------------
- MapFileManager::~MapFileManager()
- {
- Ogre::ResourceGroupManager::getSingleton()._unregisterResourceManager( mResourceType );
- }
- //--------------------------------------------------------------------------
- Ogre::Resource *MapFileManager::createImpl( const Ogre::String &name
- , Ogre::ResourceHandle handle, const Ogre::String &group, bool isManual
- , Ogre::ManualResourceLoader *loader
- , const Ogre::NameValuePairList *createParams )
- {
- return new MapFile( this, name, handle, group, isManual, loader );
- }
-
- //--------------------------------------------------------------------------
- }
|