imrAdvancedTranslation Class Reference

#include <imrAdvancedTranslation.h>

+ Inheritance diagram for imrAdvancedTranslation:

Public Types

enum  miParam_type {
  miTYPE_BOOLEAN = 0, miTYPE_INTEGER, miTYPE_SCALAR, miTYPE_STRING,
  miTYPE_COLOR, miTYPE_VECTOR, miTYPE_TRANSFORM, miTYPE_SHADER,
  miTYPE_SCALAR_TEX, miTYPE_COLOR_TEX, miTYPE_VECTOR_TEX, miTYPE_LIGHT,
  miTYPE_STRUCT, miTYPE_ARRAY, miTYPE_TEX, miTYPE_MATERIAL,
  miTYPE_GEOMETRY, miTYPE_LIGHTPROFILE, miTYPE_DATA, miNTYPES
}
 
enum  miBoolean { miFALSE = 0, miTRUE = 1 }
 

Public Member Functions

virtual miBoolean mi_api_parameter_name (char *)=0
 
virtual miBoolean mi_api_parameter_value (miParam_type, void *, int *, int *)=0
 
virtual miBoolean mi_api_parameter_push (miBoolean)=0
 
virtual miBoolean mi_api_parameter_pop (void)=0
 
virtual miBoolean mi_api_new_array_element (void)=0
 
virtual char * _mi_mem_strdup (const char *)=0
 
virtual void _mi_mem_release (void *)=0
 
virtual void_mi_mem_allocate (int)=0
 
- Public Member Functions inherited from imrTranslation
virtual void CalculateSceneBoundingBox (TimeValue t, INode *nodeForSpace, Box3 &sceneBox, Interval &valid)=0
 Calculates and returns the bounding box of every object to be rendered, in the object space of a given node. More...
 
- Public Member Functions inherited from InterfaceServer
virtual UtilExport ~InterfaceServer ()
 Destructor. More...
 
virtual UtilExport BaseInterfaceGetInterface (Interface_ID id)
 

Additional Inherited Members

- Static Public Member Functions inherited from MaxHeapOperators
static UtilExport voidoperator new (size_t size)
 Standard new operator used to allocate objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, const std::nothrow_t &e)
 Standard new operator used to allocate objects if there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new (size_t size, const char *filename, int line)
 New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, int block_type, const char *filename, int line)
 New operator used to allocate objects that takes the type of memory, filename and line number where the new was called If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, const std::nothrow_t &e, const char *filename, int line)
 New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new (size_t size, unsigned long flags)
 New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, const std::nothrow_t &e, unsigned long flags)
 New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new[] (size_t size)
 New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new[] (size_t size, const std::nothrow_t &e)
 New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new[] (size_t size, const char *filename, int line)
 New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new[] (size_t size, int block_type, const char *filename, int line)
 New operator used to allocate arrays of objects. More...
 
static UtilExport voidoperator new[] (size_t size, const std::nothrow_t &e, const char *filename, int line)
 New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new[] (size_t size, unsigned long flags)
 New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new[] (size_t size, const std::nothrow_t &e, unsigned long flags)
 New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
 
static UtilExport void operator delete (void *ptr)
 Standard delete operator used to deallocate an object If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, const std::nothrow_t &e)
 Standard delete operator used to deallocate an object If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete (void *ptr, const char *filename, int line)
 Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, int block_type, const char *filename, int line)
 Delete operator used to deallocate an object that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, const std::nothrow_t &e, const char *filename, int line)
 Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete (void *ptr, unsigned long flags)
 Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, const std::nothrow_t &e, unsigned long flags)
 Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete[] (void *ptr)
 Standard delete operator used to deallocate an array of objects If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, const std::nothrow_t &e)
 Standard delete operator used to deallocate an array of objects If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete[] (void *ptr, const char *filename, int line)
 Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, int block_type, const char *filename, int line)
 Delete operator used to deallocate an array of objects that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, const std::nothrow_t &e, const char *filename, int line)
 Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete[] (void *ptr, unsigned long flags)
 Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, const std::nothrow_t &e, unsigned long flags)
 Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, void *placement_ptr)
 Placement new operator. More...
 
static UtilExport void operator delete (void *ptr, void *placement_ptr)
 Placement delete operator. More...
 

Member Enumeration Documentation

Enumerator
miTYPE_BOOLEAN 
miTYPE_INTEGER 
miTYPE_SCALAR 
miTYPE_STRING 
miTYPE_COLOR 
miTYPE_VECTOR 
miTYPE_TRANSFORM 
miTYPE_SHADER 
miTYPE_SCALAR_TEX 
miTYPE_COLOR_TEX 
miTYPE_VECTOR_TEX 
miTYPE_LIGHT 
miTYPE_STRUCT 
miTYPE_ARRAY 
miTYPE_TEX 
miTYPE_MATERIAL 
miTYPE_GEOMETRY 
miTYPE_LIGHTPROFILE 
miTYPE_DATA 
miNTYPES 
38  {
39  miTYPE_BOOLEAN = 0, /* simple types: used for */
40  miTYPE_INTEGER, /* returns and parameters */
46  miTYPE_SHADER, /* complex types: used for */
47  miTYPE_SCALAR_TEX, /* parameters only */
53  miTYPE_TEX,
54  miTYPE_MATERIAL, /* phenomenon types */
56  miTYPE_LIGHTPROFILE, /* light profiles as args */
57  miTYPE_DATA, /* free-form user data */
58  miNTYPES
59  };
Definition: imrAdvancedTranslation.h:39
Definition: imrAdvancedTranslation.h:47
Definition: imrAdvancedTranslation.h:42
Definition: imrAdvancedTranslation.h:53
Definition: imrAdvancedTranslation.h:54
Definition: imrAdvancedTranslation.h:56
Definition: imrAdvancedTranslation.h:45
Definition: imrAdvancedTranslation.h:52
Definition: imrAdvancedTranslation.h:40
Definition: imrAdvancedTranslation.h:51
Definition: imrAdvancedTranslation.h:49
Definition: imrAdvancedTranslation.h:50
Definition: imrAdvancedTranslation.h:44
Definition: imrAdvancedTranslation.h:58
Definition: imrAdvancedTranslation.h:46
Definition: imrAdvancedTranslation.h:41
Definition: imrAdvancedTranslation.h:55
Definition: imrAdvancedTranslation.h:43
Definition: imrAdvancedTranslation.h:48
Definition: imrAdvancedTranslation.h:57
enum miBoolean
Enumerator
miFALSE 
miTRUE 
62  {
63  miFALSE = 0,
64  miTRUE = 1
65  };
Definition: imrAdvancedTranslation.h:64
Definition: imrAdvancedTranslation.h:63

Member Function Documentation

virtual miBoolean mi_api_parameter_name ( char *  )
pure virtual
virtual miBoolean mi_api_parameter_value ( miParam_type  ,
void ,
int ,
int  
)
pure virtual
virtual miBoolean mi_api_parameter_push ( miBoolean  )
pure virtual
virtual miBoolean mi_api_parameter_pop ( void  )
pure virtual
virtual miBoolean mi_api_new_array_element ( void  )
pure virtual
virtual char* _mi_mem_strdup ( const char *  )
pure virtual
virtual void _mi_mem_release ( void )
pure virtual
virtual void* _mi_mem_allocate ( int  )
pure virtual