Ogre::ExternalTextureSourceManager Class Reference
[Materials]

Singleton Class which handles the registering and control of texture plugins. More...

#include <OgreExternalTextureSourceManager.h>

Inheritance diagram for Ogre::ExternalTextureSourceManager:
Inheritance graph
[legend]

List of all members.

Public Member Functions

 ExternalTextureSourceManager ()
 Constructor.
 ~ExternalTextureSourceManager ()
 Destructor.
void setCurrentPlugIn (const String &sTexturePlugInType)
 Sets active plugin (ie.
ExternalTextureSourcegetCurrentPlugIn (void) const
 Returns currently selected plugin, may be null if none selected.
void destroyAdvancedTexture (const String &sTextureName, const String &groupName=ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME)
 Calls the destroy method of all registered plugins.
ExternalTextureSourcegetExternalTextureSource (const String &sTexturePlugInType)
 Returns the plugin which registered itself with a specific name (eg.
void setExternalTextureSource (const String &sTexturePlugInType, ExternalTextureSource *pTextureSystem)
 Called from plugin to register itself.
void * operator new (size_t sz, const char *file, int line, const char *func)
 operator new, with debug line info
void * operator new (size_t sz)
void * operator new (size_t sz, void *ptr)
 placement operator new
void * operator new[] (size_t sz, const char *file, int line, const char *func)
 array operator new, with debug line info
void * operator new[] (size_t sz)
void operator delete (void *ptr)
void operator delete (void *ptr, void *)
void operator delete (void *ptr, const char *, int, const char *)
void operator delete[] (void *ptr)
void operator delete[] (void *ptr, const char *, int, const char *)

Static Public Member Functions

static
ExternalTextureSourceManager
getSingleton (void)
 Override standard Singleton retrieval.
static
ExternalTextureSourceManager
getSingletonPtr (void)
 Override standard Singleton retrieval.

Protected Types

typedef map< String,
ExternalTextureSource * >
::type 
TextureSystemList

Protected Attributes

ExternalTextureSourcemCurrExternalTextureSource
TextureSystemList mTextureSystems

Static Protected Attributes

static
ExternalTextureSourceManager
msSingleton

Detailed Description

Singleton Class which handles the registering and control of texture plugins.

The plugins will be mostly controlled via a string interface.

Definition at line 53 of file OgreExternalTextureSourceManager.h.


Member Typedef Documentation

Definition at line 116 of file OgreExternalTextureSourceManager.h.


Constructor & Destructor Documentation

Ogre::ExternalTextureSourceManager::ExternalTextureSourceManager (  ) 

Constructor.

Ogre::ExternalTextureSourceManager::~ExternalTextureSourceManager (  ) 

Destructor.


Member Function Documentation

void Ogre::ExternalTextureSourceManager::destroyAdvancedTexture ( const String sTextureName,
const String groupName = ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME 
)

Calls the destroy method of all registered plugins.

.. Only the owner plugin should perform the destroy action.

ExternalTextureSource* Ogre::ExternalTextureSourceManager::getCurrentPlugIn ( void   )  const

Returns currently selected plugin, may be null if none selected.

Definition at line 65 of file OgreExternalTextureSourceManager.h.

ExternalTextureSource* Ogre::ExternalTextureSourceManager::getExternalTextureSource ( const String sTexturePlugInType  ) 

Returns the plugin which registered itself with a specific name (eg.

"video"), or null if specified plugin not found

static ExternalTextureSourceManager& Ogre::ExternalTextureSourceManager::getSingleton ( void   )  [static]

Override standard Singleton retrieval.

Remarks:
Why do we do this? Well, it's because the Singleton implementation is in a .h file, which means it gets compiled into anybody who includes it. This is needed for the Singleton template to work, but we actually only want it compiled into the implementation of the class based on the Singleton, not all of them. If we don't change this, we get link errors when trying to use the Singleton-based class from an outside dll.
This method just delegates to the template version anyway, but the implementation stays in this single compilation unit, preventing link errors.

Reimplemented from Ogre::Singleton< ExternalTextureSourceManager >.

static ExternalTextureSourceManager* Ogre::ExternalTextureSourceManager::getSingletonPtr ( void   )  [static]

Override standard Singleton retrieval.

Remarks:
Why do we do this? Well, it's because the Singleton implementation is in a .h file, which means it gets compiled into anybody who includes it. This is needed for the Singleton template to work, but we actually only want it compiled into the implementation of the class based on the Singleton, not all of them. If we don't change this, we get link errors when trying to use the Singleton-based class from an outside dll.
This method just delegates to the template version anyway, but the implementation stays in this single compilation unit, preventing link errors.

Reimplemented from Ogre::Singleton< ExternalTextureSourceManager >.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr,
const char *  ,
int  ,
const char *   
) [inherited]

Definition at line 107 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr,
void *   
) [inherited]

Definition at line 101 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr  )  [inherited]

Definition at line 95 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void *  ptr,
const char *  ,
int  ,
const char *   
) [inherited]

Definition at line 118 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void *  ptr  )  [inherited]

Definition at line 112 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
void *  ptr 
) [inherited]

placement operator new

Definition at line 78 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz  )  [inherited]

Definition at line 72 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
const char *  file,
int  line,
const char *  func 
) [inherited]

operator new, with debug line info

Definition at line 67 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz  )  [inherited]

Definition at line 90 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz,
const char *  file,
int  line,
const char *  func 
) [inherited]

array operator new, with debug line info

Definition at line 85 of file OgreMemoryAllocatedObject.h.

void Ogre::ExternalTextureSourceManager::setCurrentPlugIn ( const String sTexturePlugInType  ) 

Sets active plugin (ie.

"video", "effect", "generic", etc..)

void Ogre::ExternalTextureSourceManager::setExternalTextureSource ( const String sTexturePlugInType,
ExternalTextureSource pTextureSystem 
)

Called from plugin to register itself.


Member Data Documentation

Definition at line 113 of file OgreExternalTextureSourceManager.h.

Definition at line 75 of file OgreSingleton.h.

Definition at line 117 of file OgreExternalTextureSourceManager.h.


The documentation for this class was generated from the following file:

Copyright © 2012 Torus Knot Software Ltd
Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
Last modified Fri May 25 23:37:26 2012