#include <OgreExternalTextureSource.h>
Inheritance diagram for Ogre::ExternalTextureSource:
Public Member Functions | |
ExternalTextureSource () | |
Constructor. | |
virtual | ~ExternalTextureSource () |
Virtual destructor. | |
void | setInputName (String sIN) |
Sets an input file name - if needed by plugin. | |
const String & | getInputName () const |
Gets currently set input file name. | |
void | setFPS (int iFPS) |
Sets the frames per second - plugin may or may not use this. | |
const int | getFPS () const |
Gets currently set frames per second. | |
void | setPlayMode (eTexturePlayMode eMode) |
Sets a play mode. | |
eTexturePlayMode | getPlayMode () const |
Gets currently set play mode. | |
void | setTextureTecPassStateLevel (int t, int p, int s) |
Used for attaching texture to Technique, State, and texture unit layer. | |
void | getTextureTecPassStateLevel (int &t, int &p, int &s) const |
Get currently selected Textute attribs. | |
void | addBaseParams () |
Call from derived classes to ensure the dictionary is setup. | |
const String & | getPlugInStringName (void) const |
Returns the string name of this PlugIn (as set by the PlugIn). | |
const String & | getDictionaryStringName (void) const |
Returns dictionary name. | |
virtual bool | initialise ()=0 |
Call this function from manager to init system. | |
virtual void | shutDown ()=0 |
Shuts down PlugIn. | |
virtual void | createDefinedTexture (const String &sMaterialName, const String &groupName=ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME)=0 |
Creates a texture into an already defined material or one that is created new (it's up to plugin to use a material or create one) Before calling, ensure that needed params have been defined via the stringInterface or regular methods. | |
virtual void | destroyAdvancedTexture (const String &sTextureName, const String &groupName=ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME)=0 |
What this destroys is dependent on the plugin... | |
ParamDictionary * | getParamDictionary (void) |
Retrieves the parameter dictionary for this class. | |
const ParamDictionary * | getParamDictionary (void) const |
const ParameterList & | getParameters (void) const |
Retrieves a list of parameters valid for this object. | |
virtual bool | setParameter (const String &name, const String &value) |
Generic parameter setting method. | |
virtual void | setParameterList (const NameValuePairList ¶mList) |
Generic multiple parameter setting method. | |
virtual String | getParameter (const String &name) const |
Generic parameter retrieval method. | |
virtual void | copyParametersTo (StringInterface *dest) const |
Method for copying this object's parameters to another object. | |
Static Public Member Functions | |
void | cleanupDictionary () |
Cleans up the static 'msDictionary' required to reset Ogre, otherwise the containers are left with invalid pointers, which will lead to a crash as soon as one of the ResourceManager implementers (e.g. | |
Protected Member Functions | |
bool | createParamDictionary (const String &className) |
Internal method for creating a parameter dictionary for the class, if it does not already exist. | |
Protected Attributes | |
String | mPlugInName |
Command for setting the tecnique, pass, & state level String Name of this PlugIn. | |
eTexturePlayMode | mMode |
String | mInputFileName |
bool | mUpdateEveryFrame |
int | mFramesPerSecond |
int | mTechniqueLevel |
int | mPassLevel |
int | mStateLevel |
String | mDictionaryName |
The string name of the dictionary name - each plugin must override default name. | |
String | mParamDictName |
Class name for this instance to be used as a lookup (must be initialised by subclasses). | |
Static Protected Attributes | |
CmdInputFileName | msCmdInputFile |
CmdFPS | msCmdFramesPerSecond |
Command for setting input file name. | |
CmdPlayMode | msCmdPlayMode |
Command for setting frames per second. | |
CmdTecPassState | msCmdTecPassState |
Command for setting play mode. | |
ParamDictionaryMap | msDictionary |
Dictionary of parameters. |
Any specific requirements that the plugin needs to have defined before texture/material creation must be define using the stringinterface before calling create defined texture... or it will fail, though, it is up to the plugin to report errors to the log file, or raise an exception if need be.
Definition at line 64 of file OgreExternalTextureSource.h.
|
Constructor.
|
|
Virtual destructor.
Definition at line 70 of file OgreExternalTextureSource.h. |
|
Call from derived classes to ensure the dictionary is setup.
|
|
Cleans up the static 'msDictionary' required to reset Ogre, otherwise the containers are left with invalid pointers, which will lead to a crash as soon as one of the ResourceManager implementers (e.g. MaterialManager) initializes. |
|
Method for copying this object's parameters to another object.
Definition at line 296 of file OgreStringInterface.h. References Ogre::ParamDictionary::mParamDefs, and Ogre::StringInterface::setParameter(). |
|
Creates a texture into an already defined material or one that is created new (it's up to plugin to use a material or create one) Before calling, ensure that needed params have been defined via the stringInterface or regular methods.
|
|
Internal method for creating a parameter dictionary for the class, if it does not already exist.
Definition at line 172 of file OgreStringInterface.h. References Ogre::String. |
|
What this destroys is dependent on the plugin... See specific plugin doc to know what is all destroyed (normally, plugins will destroy only what they created, or used directly - ie. just texture unit) |
|
Returns dictionary name.
Definition at line 130 of file OgreExternalTextureSource.h. References Ogre::String. |
|
Gets currently set frames per second.
Definition at line 111 of file OgreExternalTextureSource.h. |
|
Gets currently set input file name.
Definition at line 107 of file OgreExternalTextureSource.h. References Ogre::String. |
|
Definition at line 209 of file OgreStringInterface.h. |
|
Retrieves the parameter dictionary for this class.
Definition at line 196 of file OgreStringInterface.h. |
|
Generic parameter retrieval method.
Definition at line 265 of file OgreStringInterface.h. References Ogre::ParamCommand::doGet(), Ogre::ParamDictionary::getParamCommand(), and Ogre::String. |
|
Retrieves a list of parameters valid for this object.
|
|
Gets currently set play mode.
Definition at line 115 of file OgreExternalTextureSource.h. References Ogre::eTexturePlayMode. |
|
Returns the string name of this PlugIn (as set by the PlugIn).
Definition at line 128 of file OgreExternalTextureSource.h. References Ogre::String. |
|
Get currently selected Textute attribs.
Definition at line 121 of file OgreExternalTextureSource.h. |
|
Call this function from manager to init system.
|
|
Sets the frames per second - plugin may or may not use this.
Definition at line 109 of file OgreExternalTextureSource.h. |
|
Sets an input file name - if needed by plugin.
Definition at line 105 of file OgreExternalTextureSource.h. References Ogre::String. |
|
Generic parameter setting method.
Referenced by Ogre::StringInterface::copyParametersTo(). |
|
Generic multiple parameter setting method.
|
|
Sets a play mode.
Definition at line 113 of file OgreExternalTextureSource.h. |
|
Used for attaching texture to Technique, State, and texture unit layer.
Definition at line 118 of file OgreExternalTextureSource.h. |
|
Shuts down PlugIn.
|
|
The string name of the dictionary name - each plugin must override default name.
Definition at line 176 of file OgreExternalTextureSource.h. |
|
Definition at line 167 of file OgreExternalTextureSource.h. |
|
Definition at line 163 of file OgreExternalTextureSource.h. |
|
Definition at line 161 of file OgreExternalTextureSource.h. |
|
Class name for this instance to be used as a lookup (must be initialised by subclasses).
Definition at line 160 of file OgreStringInterface.h. |
|
Definition at line 167 of file OgreExternalTextureSource.h. |
|
Command for setting the tecnique, pass, & state level String Name of this PlugIn.
Definition at line 158 of file OgreExternalTextureSource.h. |
|
Command for setting input file name.
Definition at line 152 of file OgreExternalTextureSource.h. |
|
Definition at line 151 of file OgreExternalTextureSource.h. |
|
Command for setting frames per second.
Definition at line 153 of file OgreExternalTextureSource.h. |
|
Command for setting play mode.
Definition at line 154 of file OgreExternalTextureSource.h. |
|
Dictionary of parameters.
Definition at line 157 of file OgreStringInterface.h. |
|
Definition at line 167 of file OgreExternalTextureSource.h. |
|
Definition at line 167 of file OgreExternalTextureSource.h. |
|
Definition at line 165 of file OgreExternalTextureSource.h. |
Copyright © 2000-2005 by The OGRE Team
This work is licensed under a Creative Commons Attribution-ShareAlike 2.5 License.
Last modified Sun Mar 12 14:38:51 2006