Public Member Functions | Static Public Member Functions | Static Protected Attributes | Private Member Functions | Private Attributes
Ogre::ScriptCompilerManager Class Reference

Manages threaded compilation of scripts. More...

#include <OgreScriptCompiler.h>

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

List of all members.

Public Member Functions

 ScriptCompilerManager ()
virtual ~ScriptCompilerManager ()
void addScriptPattern (const String &pattern)
 Adds a script extension that can be handled (e.g. *.material, *.pu, etc.)
void addTranslatorManager (ScriptTranslatorManager *man)
 Adds the given translator manager to the list of managers.
void clearTranslatorManagers ()
 Clears all translator managers.
ScriptCompilerListenergetListener ()
 Returns the currently set listener used for compiler instances.
Real getLoadingOrder (void) const
const StringVectorgetScriptPatterns (void) const
ScriptTranslatorgetTranslator (const AbstractNodePtr &node)
 Retrieves a ScriptTranslator from the supported managers.
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
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 parseScript (DataStreamPtr &stream, const String &groupName)
void removeTranslatorManager (ScriptTranslatorManager *man)
 Removes the given translator manager from the list of managers.
void setListener (ScriptCompilerListener *listener)
 Sets the listener used for compiler instances.

Static Public Member Functions

static ScriptCompilerManagergetSingleton (void)
 Override standard Singleton retrieval.
static ScriptCompilerManagergetSingletonPtr (void)
 Override standard Singleton retrieval.

Static Protected Attributes

static ScriptCompilerManagermsSingleton

Private Member Functions

 OGRE_THREAD_POINTER (ScriptCompiler, mScriptCompiler)

Private Attributes

ScriptTranslatorManagermBuiltinTranslatorManager
ScriptCompilerListenermListener
vector
< ScriptTranslatorManager * >
::type 
mManagers
StringVector mScriptPatterns
 OGRE_AUTO_MUTEX

Detailed Description

Manages threaded compilation of scripts.

This script loader forwards scripts compilations to a specific compiler instance.

Definition at line 384 of file OgreScriptCompiler.h.


Constructor & Destructor Documentation


Member Function Documentation

Adds a script extension that can be handled (e.g. *.material, *.pu, etc.)

Adds the given translator manager to the list of managers.

Clears all translator managers.

Returns the currently set listener used for compiler instances.

Gets the relative loading order of scripts of this type.

Remarks:
There are dependencies between some kinds of scripts, and to enforce this all implementors of this interface must define a loading order.
Returns:
A value representing the relative loading order of these scripts compared to other script users, where higher values load later.

Implements Ogre::ScriptLoader.

Gets the file patterns which should be used to find scripts for this class.

Remarks:
This method is called when a resource group is loaded if you use ResourceGroupManager::_registerScriptLoader.
Returns:
A list of file patterns, in the order they should be searched in.

Implements Ogre::ScriptLoader.

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< ScriptCompilerManager >.

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< ScriptCompilerManager >.

Retrieves a ScriptTranslator from the supported managers.

Ogre::ScriptCompilerManager::OGRE_THREAD_POINTER ( ScriptCompiler  ,
mScriptCompiler   
) [private]
template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr) [inherited]

Definition at line 96 of file OgreMemoryAllocatedObject.h.

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

Definition at line 102 of file OgreMemoryAllocatedObject.h.

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

Definition at line 108 of file OgreMemoryAllocatedObject.h.

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

Definition at line 113 of file OgreMemoryAllocatedObject.h.

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

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 
) [inherited]

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) [inherited]

Definition at line 73 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 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 
) [inherited]

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) [inherited]

Definition at line 91 of file OgreMemoryAllocatedObject.h.

void Ogre::ScriptCompilerManager::parseScript ( DataStreamPtr stream,
const String groupName 
) [virtual]

Parse a script file.

Parameters:
streamWeak reference to a data stream which is the source of the script
groupNameThe name of a resource group which should be used if any resources are created during the parse of this script.

Implements Ogre::ScriptLoader.

Removes the given translator manager from the list of managers.

Sets the listener used for compiler instances.


Member Data Documentation

Definition at line 399 of file OgreScriptCompiler.h.

Definition at line 393 of file OgreScriptCompiler.h.

Definition at line 396 of file OgreScriptCompiler.h.

Definition at line 390 of file OgreScriptCompiler.h.

Definition at line 75 of file OgreSingleton.h.

Definition at line 387 of file OgreScriptCompiler.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 Mon Jul 27 2020 13:41:36