|  | 
|  | Controller (const SharedPtr< ControllerValue< T > > &src, const SharedPtr< ControllerValue< T > > &dest, const SharedPtr< ControllerFunction< T > > &func) | 
|  | Usual constructor. 
 | 
|  | 
| virtual | ~Controller () | 
|  | Default d-tor. 
 | 
|  | 
| const SharedPtr< ControllerValue< T > > & | getDestination (void) const | 
|  | Gets the output controller value. 
 | 
|  | 
| bool | getEnabled (void) const | 
|  | Returns true if this controller is currently enabled. 
 | 
|  | 
| const SharedPtr< ControllerFunction< T > > & | getFunction (void) const | 
|  | Returns a pointer to the function object used by this controller. 
 | 
|  | 
| const SharedPtr< ControllerValue< T > > & | getSource (void) const | 
|  | Gets the input controller value. 
 | 
|  | 
| void | operator delete (void *ptr) | 
|  | 
| void | operator delete (void *ptr, const char *, int, const char *) | 
|  | 
| void | operator delete (void *ptr, void *) | 
|  | 
| void | operator delete[] (void *ptr) | 
|  | 
| void | operator delete[] (void *ptr, const char *, int, const char *) | 
|  | 
| void * | operator new (size_t sz) | 
|  | 
| 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 *ptr) | 
|  | placement operator new 
 | 
|  | 
| void * | operator new[] (size_t sz) | 
|  | 
| void * | operator new[] (size_t sz, const char *file, int line, const char *func) | 
|  | array operator new, with debug line info 
 | 
|  | 
| void | setDestination (const SharedPtr< ControllerValue< T > > &dest) | 
|  | Sets the output controller value. 
 | 
|  | 
| void | setEnabled (bool enabled) | 
|  | Sets whether this controller is enabled. 
 | 
|  | 
| void | setFunction (const SharedPtr< ControllerFunction< T > > &func) | 
|  | Sets the function object to be used by this controller. 
 | 
|  | 
| void | setSource (const SharedPtr< ControllerValue< T > > &src) | 
|  | Sets the input controller value. 
 | 
|  | 
| void | update (void) | 
|  | Tells this controller to map it's input controller value to it's output controller value, via the controller function. 
 | 
|  | 
template<
typename T>
class Ogre::Controller< T >
Instances of this class 'control' the value of another object in the system. 
- The Controller is an intentionally abstract concept - it can generate values based on input and a function, which can either be one of the standard ones supplied, or a function can be 'plugged in' for custom behaviour - see the ControllerFunction class for details. Both the input and output values are via ControllerValue objects, meaning that any value can be both input and output of the controller. 
- Whilst this is very flexible, it can be a little bit confusing so to make it simpler the most often used controller setups are available by calling methods on the ControllerManager object. 
- See also
- ControllerFunction