OGRE  1.9
Object-Oriented Graphics Rendering Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
OgreExternalTextureSource.h
Go to the documentation of this file.
1 /*
2 -----------------------------------------------------------------------------
3 This source file is part of OGRE
4  (Object-oriented Graphics Rendering Engine)
5 For the latest info, see http://www.ogre3d.org/
6 
7 Copyright (c) 2000-2014 Torus Knot Software Ltd
8 
9 Permission is hereby granted, free of charge, to any person obtaining a copy
10 of this software and associated documentation files (the "Software"), to deal
11 in the Software without restriction, including without limitation the rights
12 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 copies of the Software, and to permit persons to whom the Software is
14 furnished to do so, subject to the following conditions:
15 
16 The above copyright notice and this permission notice shall be included in
17 all copies or substantial portions of the Software.
18 
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 THE SOFTWARE.
26 -----------------------------------------------------------------------------
27 */
28 #ifndef _OgreExternalTextureSource_H
29 #define _OgreExternalTextureSource_H
30 
31 /***************************************************************************
32 OgreExternalTextureSource.h -
33  Base class that texture plugins need to derive from. This provides the hooks
34  necessary for a plugin developer to easily extend the functionality of dynamic textures.
35  It makes creation/destruction of dynamic textures more streamlined. While the plugin
36  will need to talk with Ogre for the actual modification of textures, this class allows
37  easy integration with Ogre apps. Material script files can be used to aid in the
38  creation of dynamic textures. Functionality can be added that is not defined here
39  through the use of the base dictionary. For an example of how to use this class and the
40  string interface see ffmpegVideoPlugIn.
41 
42 -------------------
43 date : Jan 1 2004
44 email : pjcast@yahoo.com
45 ***************************************************************************/
46 
47 #include "OgreStringInterface.h"
49 #include "OgreHeaderPrefix.h"
50 
51 namespace Ogre
52 {
61  {
65  };
66 
75  {
76  public:
81 
82  //------------------------------------------------------------------------------//
83  /* Command objects for specifying some base features */
84  /* Any Plugins wishing to add more specific params to "ExternalTextureSourcePlugins"*/
85  /* dictionary, feel free to do so, that's why this is here */
87  {
88  public:
89  String doGet(const void* target) const;
90  void doSet(void* target, const String& val);
91  };
93  {
94  public:
95  String doGet(const void* target) const;
96  void doSet(void* target, const String& val);
97  };
99  {
100  public:
101  String doGet(const void* target) const;
102  void doSet(void* target, const String& val);
103  };
105  {
106  public:
107  String doGet(const void* target) const;
108  void doSet(void* target, const String& val);
109  };
110  //--------------------------------------------------------//
111  //Base Functions that work with Command String Interface... Or can be called
112  //manually to create video through code
113 
115  void setInputName( String sIN ) { mInputFileName = sIN; }
117  const String& getInputName( ) const { return mInputFileName; }
119  void setFPS( int iFPS ) { mFramesPerSecond = iFPS; }
121  int getFPS( ) const { return mFramesPerSecond; }
123  void setPlayMode( eTexturePlayMode eMode ) { mMode = eMode; }
125  eTexturePlayMode getPlayMode() const { return mMode; }
126 
128  void setTextureTecPassStateLevel( int t, int p, int s )
129  { mTechniqueLevel = t;mPassLevel = p;mStateLevel = s; }
131  void getTextureTecPassStateLevel( int& t, int& p, int& s ) const
132  {t = mTechniqueLevel; p = mPassLevel; s = mStateLevel;}
133 
135  void addBaseParams();
136 
138  const String& getPluginStringName( void ) const { return mPluginName; }
140  const String& getDictionaryStringName( void ) const { return mDictionaryName; }
141 
142  //Pure virtual functions that plugins must Override
144  virtual bool initialise() = 0;
146  virtual void shutDown() = 0;
147 
152  virtual void createDefinedTexture( const String& sMaterialName,
157  virtual void destroyAdvancedTexture( const String& sTextureName,
159 
160  protected:
165 
166 
169 
170  //------ Vars used for setting/getting dictionary stuff -----------//
172 
174 
176 
177  int mFramesPerSecond,
179  mPassLevel,
180  mStateLevel;
181  //------------------------------------------------------------------//
182 
183  protected:
187  };
190 }
191 
192 #include "OgreHeaderSuffix.h"
193 
194 #endif
static CmdInputFileName msCmdInputFile
eTexturePlayMode getPlayMode() const
Gets currently set play mode.
#define _OgreExport
Definition: OgrePlatform.h:260
void setFPS(int iFPS)
Sets the frames per second - plugin may or may not use this.
IMPORTANT: Plugins must override default dictionary name! Base class that texture plugins derive from...
String mPluginName
Command for setting the technique, pass, & state level.
void setInputName(String sIN)
Sets an input file name - if needed by plugin.
static CmdTecPassState msCmdTecPassState
Command for setting play mode.
static String DEFAULT_RESOURCE_GROUP_NAME
Default resource group name.
static CmdFPS msCmdFramesPerSecond
Command for setting input file name.
Video starts playing as soon as possible.
virtual ~ExternalTextureSource()
Virtual destructor.
Class defining the common interface which classes can use to present a reflection-style, self-defining parameter set to callers.
const String & getDictionaryStringName(void) const
Returns dictionary name.
const String & getInputName() const
Gets currently set input file name.
#define _OgrePrivate
Definition: OgrePlatform.h:261
const String & getPluginStringName(void) const
Returns the string name of this Plugin (as set by the Plugin)
static CmdPlayMode msCmdPlayMode
Command for setting frames per second.
String mDictionaryName
The string name of the dictionary name - each plugin must override default name.
eTexturePlayMode
Enum for type of texture play mode.
void getTextureTecPassStateLevel(int &t, int &p, int &s) const
Get currently selected Texture attribs.
void setPlayMode(eTexturePlayMode eMode)
Sets a play mode.
void setTextureTecPassStateLevel(int t, int p, int s)
Used for attaching texture to Technique, State, and texture unit layer.
_StringBase String
int getFPS() const
Gets currently set frames per second.
Abstract class which is command object which gets/sets parameters.