OGRE
2.2.4
Object-Oriented Graphics Rendering Engine
|
Manages Overlay objects, parsing them from .overlay files and storing a lookup library of them. More...
#include <OgreOverlayManager.h>
Public Types | |
typedef map< String, OverlayElement * >::type | ElementMap |
typedef map< String, OverlayElementFactory * >::type | FactoryMap |
typedef map< String, Overlay * >::type | OverlayMap |
typedef MapIterator< OverlayMap > | OverlayMapIterator |
typedef MapIterator< ElementMap > | TemplateIterator |
Public Member Functions | |
OverlayManager () | |
virtual | ~OverlayManager () |
void | _queueOverlaysForRendering (RenderQueue *pQueue, Viewport *vp) |
Internal method for queueing the visible overlays for rendering. More... | |
void | _releaseManualHardwareResources () |
Notifies that hardware resources were lost. More... | |
void | _restoreManualHardwareResources () |
Notifies that hardware resources should be restored. More... | |
void | addOverlayElementFactory (OverlayElementFactory *elemFactory) |
Registers a new OverlayElementFactory with this manager. More... | |
OverlayElement * | cloneOverlayElementFromTemplate (const String &templateName, const String &instanceName) |
Overlay * | create (const String &name) |
Create a new Overlay. More... | |
OverlayElement * | createOverlayElement (const String &typeName, const String &instanceName, bool isTemplate=false) |
Creates a new OverlayElement of the type requested. More... | |
OverlayElement * | createOverlayElementFromFactory (const String &typeName, const String &instanceName) |
OverlayElement * | createOverlayElementFromTemplate (const String &templateName, const String &typeName, const String &instanceName, bool isTemplate=false) |
void | destroy (const String &name) |
Destroys an existing overlay by name. More... | |
void | destroy (Overlay *overlay) |
Destroys an existing overlay. More... | |
void | destroyAll (void) |
Destroys all existing overlays. More... | |
void | destroyAllOverlayElements (bool isTemplate=false) |
Destroys all the OverlayElement created so far. More... | |
void | destroyOverlayElement (const String &instanceName, bool isTemplate=false) |
Destroys a OverlayElement. More... | |
void | destroyOverlayElement (OverlayElement *pInstance, bool isTemplate=false) |
Destroys a OverlayElement. More... | |
Overlay * | getByName (const String &name) |
Retrieve an Overlay by name. More... | |
Real | getLoadingOrder (void) const |
Gets the relative loading order of scripts of this type. More... | |
OverlayElement * | getOverlayElement (const String &name, bool isTemplate=false) |
Gets a reference to an existing element. More... | |
const FactoryMap & | getOverlayElementFactoryMap () const |
Get const access to the list of registered OverlayElement factories. More... | |
OverlayMapIterator | getOverlayIterator (void) |
const StringVector & | getScriptPatterns (void) const |
Gets the file patterns which should be used to find scripts for this class. More... | |
TemplateIterator | getTemplateIterator () |
Returns an iterator over all templates in this manager. More... | |
Real | getViewportAspectRatio (void) const |
int | getViewportHeight (void) const |
Gets the height of the destination viewport in pixels. More... | |
OrientationMode | getViewportOrientationMode (void) const |
Gets the orientation mode of the destination viewport. More... | |
int | getViewportWidth (void) const |
Gets the width of the destination viewport in pixels. More... | |
bool | hasOverlayElement (const String &name, bool isTemplate=false) |
Tests if an element exists. More... | |
bool | isTemplate (String strName) const |
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 | parseScript (DataStreamPtr &stream, const String &groupName) |
Parse a script file. More... | |
Static Public Member Functions | |
static OverlayManager & | getSingleton (void) |
Override standard Singleton retrieval. More... | |
static OverlayManager * | getSingletonPtr (void) |
Override standard Singleton retrieval. More... | |
Public Attributes | |
uint8 | mDefaultRenderQueueId |
Manages Overlay objects, parsing them from .overlay files and storing a lookup library of them.
Also manages the creation of OverlayContainers and OverlayElements, used for non-interactive 2D elements such as HUDs.
typedef map<String, OverlayElement*>::type Ogre::v1::OverlayManager::ElementMap |
typedef map<String, OverlayElementFactory*>::type Ogre::v1::OverlayManager::FactoryMap |
typedef map<String, Overlay*>::type Ogre::v1::OverlayManager::OverlayMap |
Ogre::v1::OverlayManager::OverlayManager | ( | ) |
|
virtual |
void Ogre::v1::OverlayManager::_queueOverlaysForRendering | ( | RenderQueue * | pQueue, |
Viewport * | vp | ||
) |
Internal method for queueing the visible overlays for rendering.
void Ogre::v1::OverlayManager::_releaseManualHardwareResources | ( | ) |
Notifies that hardware resources were lost.
void Ogre::v1::OverlayManager::_restoreManualHardwareResources | ( | ) |
Notifies that hardware resources should be restored.
void Ogre::v1::OverlayManager::addOverlayElementFactory | ( | OverlayElementFactory * | elemFactory | ) |
Registers a new OverlayElementFactory with this manager.
OverlayElement* Ogre::v1::OverlayManager::cloneOverlayElementFromTemplate | ( | const String & | templateName, |
const String & | instanceName | ||
) |
OverlayElement* Ogre::v1::OverlayManager::createOverlayElement | ( | const String & | typeName, |
const String & | instanceName, | ||
bool | isTemplate = false |
||
) |
Creates a new OverlayElement of the type requested.
typeName | The type of element to create. |
instanceName | The name to give the new instance. |
OverlayElement* Ogre::v1::OverlayManager::createOverlayElementFromFactory | ( | const String & | typeName, |
const String & | instanceName | ||
) |
OverlayElement* Ogre::v1::OverlayManager::createOverlayElementFromTemplate | ( | const String & | templateName, |
const String & | typeName, | ||
const String & | instanceName, | ||
bool | isTemplate = false |
||
) |
void Ogre::v1::OverlayManager::destroy | ( | const String & | name | ) |
Destroys an existing overlay by name.
void Ogre::v1::OverlayManager::destroy | ( | Overlay * | overlay | ) |
Destroys an existing overlay.
void Ogre::v1::OverlayManager::destroyAll | ( | void | ) |
Destroys all existing overlays.
void Ogre::v1::OverlayManager::destroyAllOverlayElements | ( | bool | isTemplate = false | ) |
Destroys all the OverlayElement created so far.
void Ogre::v1::OverlayManager::destroyOverlayElement | ( | const String & | instanceName, |
bool | isTemplate = false |
||
) |
Destroys a OverlayElement.
void Ogre::v1::OverlayManager::destroyOverlayElement | ( | OverlayElement * | pInstance, |
bool | isTemplate = false |
||
) |
Destroys a OverlayElement.
|
virtual |
Gets the relative loading order of scripts of this type.
Implements Ogre::ScriptLoader.
OverlayElement* Ogre::v1::OverlayManager::getOverlayElement | ( | const String & | name, |
bool | isTemplate = false |
||
) |
Gets a reference to an existing element.
|
inline |
Get const access to the list of registered OverlayElement factories.
OverlayMapIterator Ogre::v1::OverlayManager::getOverlayIterator | ( | void | ) |
|
virtual |
Gets the file patterns which should be used to find scripts for this class.
Implements Ogre::ScriptLoader.
|
static |
Override standard Singleton retrieval.
|
static |
Override standard Singleton retrieval.
|
inline |
Returns an iterator over all templates in this manager.
Real Ogre::v1::OverlayManager::getViewportAspectRatio | ( | void | ) | const |
int Ogre::v1::OverlayManager::getViewportHeight | ( | void | ) | const |
Gets the height of the destination viewport in pixels.
OrientationMode Ogre::v1::OverlayManager::getViewportOrientationMode | ( | void | ) | const |
Gets the orientation mode of the destination viewport.
int Ogre::v1::OverlayManager::getViewportWidth | ( | void | ) | const |
Gets the width of the destination viewport in pixels.
bool Ogre::v1::OverlayManager::hasOverlayElement | ( | const String & | name, |
bool | isTemplate = false |
||
) |
Tests if an element exists.
|
inline |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
operator new, with debug line info
|
inlineinherited |
|
inlineinherited |
placement operator new
|
inlineinherited |
array operator new, with debug line info
|
inlineinherited |
|
virtual |
Parse a script file.
stream | Weak reference to a data stream which is the source of the script |
groupName | The name of a resource group which should be used if any resources are created during the parse of this script. |
Implements Ogre::ScriptLoader.
uint8 Ogre::v1::OverlayManager::mDefaultRenderQueueId |