OGRE  1.9
Object-Oriented Graphics Rendering Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Ogre::RenderSystemCapabilitiesManager Class Reference

Class for managing RenderSystemCapabilities database for Ogre. More...

#include <OgreRenderSystemCapabilitiesManager.h>

+ Inheritance diagram for Ogre::RenderSystemCapabilitiesManager:
+ Collaboration diagram for Ogre::RenderSystemCapabilitiesManager:

Public Member Functions

 RenderSystemCapabilitiesManager ()
 Default constructor. More...
 
virtual ~RenderSystemCapabilitiesManager ()
 Default destructor. More...
 
void _addRenderSystemCapabilities (const String &name, RenderSystemCapabilities *caps)
 Method used by RenderSystemCapabilitiesSerializer::parseScript. More...
 
const map< String,
RenderSystemCapabilities * >
::type & 
getCapabilities () const
 Access to the internal map of loaded capabilities. More...
 
RenderSystemCapabilitiesloadParsedCapabilities (const String &name)
 Returns a capability loaded with RenderSystemCapabilitiesManager::parseCapabilitiesFromArchive method. More...
 
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 *)
 
void * operator new (size_t sz, const char *file, int line, const char *func)
 operator new, with debug line info More...
 
void * operator new (size_t sz)
 
void * operator new (size_t sz, void *ptr)
 placement operator new More...
 
void * operator new[] (size_t sz, const char *file, int line, const char *func)
 array operator new, with debug line info More...
 
void * operator new[] (size_t sz)
 
void parseCapabilitiesFromArchive (const String &filename, const String &archiveType, bool recursive=true)
 

Static Public Member Functions

static
RenderSystemCapabilitiesManager
getSingleton (void)
 Override standard Singleton retrieval. More...
 
static
RenderSystemCapabilitiesManager
getSingletonPtr (void)
 Override standard Singleton retrieval. More...
 

Protected Types

typedef map< String,
RenderSystemCapabilities * >
::type 
CapabilitiesMap
 

Protected Attributes

CapabilitiesMap mCapabilitiesMap
 
const String mScriptPattern
 
RenderSystemCapabilitiesSerializermSerializer
 

Static Protected Attributes

static
RenderSystemCapabilitiesManager
msSingleton
 

Detailed Description

Class for managing RenderSystemCapabilities database for Ogre.

Remarks
This class behaves similarly to other ResourceManager, although .rendercaps are not resources. It contains and abstract a .rendercaps Serializer

Definition at line 52 of file OgreRenderSystemCapabilitiesManager.h.

Member Typedef Documentation

Constructor & Destructor Documentation

Ogre::RenderSystemCapabilitiesManager::RenderSystemCapabilitiesManager ( )

Default constructor.

virtual Ogre::RenderSystemCapabilitiesManager::~RenderSystemCapabilitiesManager ( )
virtual

Default destructor.

Member Function Documentation

void Ogre::RenderSystemCapabilitiesManager::_addRenderSystemCapabilities ( const String name,
RenderSystemCapabilities caps 
)
const map<String, RenderSystemCapabilities*>::type& Ogre::RenderSystemCapabilitiesManager::getCapabilities ( ) const

Access to the internal map of loaded capabilities.

static RenderSystemCapabilitiesManager& Ogre::RenderSystemCapabilitiesManager::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.
static RenderSystemCapabilitiesManager* Ogre::RenderSystemCapabilitiesManager::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.
RenderSystemCapabilities* Ogre::RenderSystemCapabilitiesManager::loadParsedCapabilities ( const String name)

Returns a capability loaded with RenderSystemCapabilitiesManager::parseCapabilitiesFromArchive method.

Returns
NULL if the name is invalid, a parsed RenderSystemCapabilities otherwise.
template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr)
inlineinherited

Definition at line 96 of file OgreMemoryAllocatedObject.h.

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

Definition at line 102 of file OgreMemoryAllocatedObject.h.

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

Definition at line 108 of file OgreMemoryAllocatedObject.h.

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

Definition at line 113 of file OgreMemoryAllocatedObject.h.

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

Definition at line 119 of file OgreMemoryAllocatedObject.h.

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

operator new, with debug line info

Definition at line 68 of file OgreMemoryAllocatedObject.h.

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

Definition at line 73 of file OgreMemoryAllocatedObject.h.

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

placement operator new

Definition at line 79 of file OgreMemoryAllocatedObject.h.

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

array operator new, with debug line info

Definition at line 86 of file OgreMemoryAllocatedObject.h.

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

Definition at line 91 of file OgreMemoryAllocatedObject.h.

void Ogre::RenderSystemCapabilitiesManager::parseCapabilitiesFromArchive ( const String filename,
const String archiveType,
bool  recursive = true 
)

Member Data Documentation

CapabilitiesMap Ogre::RenderSystemCapabilitiesManager::mCapabilitiesMap
protected

Definition at line 119 of file OgreRenderSystemCapabilitiesManager.h.

const String Ogre::RenderSystemCapabilitiesManager::mScriptPattern
protected

Definition at line 121 of file OgreRenderSystemCapabilitiesManager.h.

RenderSystemCapabilitiesSerializer* Ogre::RenderSystemCapabilitiesManager::mSerializer
protected

Definition at line 116 of file OgreRenderSystemCapabilitiesManager.h.

Definition at line 75 of file OgreSingleton.h.


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