/* ----------------------------------------------------------------------------- Copyright (c) 27.10.2013 Tobias Peters 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::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 ); } //-------------------------------------------------------------------------- }