CANCapture Scripting
List of all members
asIObjectType Class Referenceabstract

The interface for an object type.

Public Member Functions

Miscellaneous
virtual asIScriptEngineGetEngine () const =0
 Returns a pointer to the script engine. More...
 
virtual const char * GetConfigGroup () const =0
 Returns the config group in which the type was registered. More...
 
Type info
virtual const char * GetName () const =0
 Returns a temporary pointer to the name of the datatype. More...
 
virtual asIObjectTypeGetBaseType () const =0
 Returns the object type that this type derives from. More...
 
virtual asDWORD GetFlags () const =0
 Returns the object type flags. More...
 
virtual asUINT GetSize () const =0
 Returns the size of the object type. More...
 
Interfaces
virtual int GetInterfaceCount () const =0
 Returns the number of interfaces implemented. More...
 
virtual asIObjectTypeGetInterface (asUINT index) const =0
 Returns a temporary pointer to the specified interface or null if none are found. More...
 
Factories
virtual int GetFactoryCount () const =0
 Returns the number of factory functions for the object type. More...
 
virtual int GetFactoryIdByIndex (int index) const =0
 Returns the factory id by index. More...
 
virtual int GetFactoryIdByDecl (const char *decl) const =0
 Returns the factory id by declaration. More...
 
Methods
virtual int GetMethodCount () const =0
 Returns the number of methods for the object type. More...
 
virtual int GetMethodIdByIndex (int index) const =0
 Returns the method id by index. More...
 
virtual int GetMethodIdByName (const char *name) const =0
 Returns the method id by name. More...
 
virtual int GetMethodIdByDecl (const char *decl) const =0
 Returns the method id by declaration. More...
 
virtual asIScriptFunctionGetMethodDescriptorByIndex (int index) const =0
 Returns the function descriptor for the script method. More...
 
Properties
virtual int GetPropertyCount () const =0
 Returns the number of properties that the object contains. More...
 
virtual int GetPropertyTypeId (asUINT prop) const =0
 Returns the type id of the property referenced by prop. More...
 
virtual const char * GetPropertyName (asUINT prop) const =0
 Returns the name of the property referenced by prop. More...
 
virtual int GetPropertyOffset (asUINT prop) const =0
 Returns the offset of the property in the memory layout. More...
 
Behaviours
virtual int GetBehaviourCount () const =0
 Returns the number of behaviours. More...
 
virtual int GetBehaviourByIndex (asUINT index, asEBehaviours *outBehaviour) const =0
 Returns the function id and type of the behaviour. More...
 
Deprecated
virtual asIObjectTypeGetSubType () const =0
 
virtual bool IsInterface () const =0
 

Member Function Documentation

virtual asIObjectType* asIObjectType::GetBaseType ( ) const
pure virtual
Returns
A pointer to the object type that this type derives from.

This method will only return a pointer in case of script classes that derives from another script class.

virtual int asIObjectType::GetBehaviourByIndex ( asUINT  index,
asEBehaviours outBehaviour 
) const
pure virtual
Parameters
[in]indexThe index of the behaviour.
[out]outBehaviourReceives the type of the behaviour.
Returns
The function id of the behaviour.
Return values
asINVALID_ARGThe index is too large.
virtual int asIObjectType::GetBehaviourCount ( ) const
pure virtual
Returns
The number of behaviours for this type.
virtual const char* asIObjectType::GetConfigGroup ( ) const
pure virtual
Returns
The name of the config group, or null if not set.
virtual asIScriptEngine* asIObjectType::GetEngine ( ) const
pure virtual
Returns
A pointer to the engine.
virtual int asIObjectType::GetFactoryCount ( ) const
pure virtual
Returns
A negative value on error, or the number of factory functions for this object.
virtual int asIObjectType::GetFactoryIdByDecl ( const char *  decl) const
pure virtual
Parameters
[in]declThe factory signature.
Returns
A negative value on error, or the factory id.
Return values
asNO_FUNCTIONDidn't find any matching functions.
asINVALID_DECLARATIONdecl is not a valid declaration.
asERRORThe module for the type was not built successfully.

The factory function is named after the object type and returns a handle to the object. Example:

id = type->GetFactoryIdByDecl("object@ object(int arg1, int arg2)");
virtual int asIObjectType::GetFactoryIdByIndex ( int  index) const
pure virtual
Parameters
[in]indexThe index of the factory function.
Returns
A negative value on error, or the factory id.
Return values
asINVALID_ARGindex is out of bounds.
virtual asDWORD asIObjectType::GetFlags ( ) const
pure virtual
Returns
A bit mask with the flags from asEObjTypeFlags.

Script classes are identified by having the asOBJ_SCRIPT_OBJECT flag set. Interfaces are identified as a script class with a size of zero.

See Also
GetSize
virtual asIObjectType* asIObjectType::GetInterface ( asUINT  index) const
pure virtual
Parameters
[in]indexThe interface index.
Returns
A pointer to the interface type.
virtual int asIObjectType::GetInterfaceCount ( ) const
pure virtual
Returns
The number of interfaces implemented by this type.
virtual int asIObjectType::GetMethodCount ( ) const
pure virtual
Returns
A negative value on error, or the number of methods for this object.
virtual asIScriptFunction* asIObjectType::GetMethodDescriptorByIndex ( int  index) const
pure virtual
Parameters
[in]indexThe index of the method.
Returns
A pointer to the method description interface, or null if not found.
virtual int asIObjectType::GetMethodIdByDecl ( const char *  decl) const
pure virtual
Parameters
[in]declThe method signature.
Returns
A negative value on error, or the method id.
Return values
asMULTIPLE_FUNCTIONSFound multiple matching methods.
asNO_FUNCTIONDidn't find any matching method.
asINVALID_DECLARATIONdecl is not a valid declaration.
asERRORThe module for the type was not built successfully.

This method should be used to retrieve the ID of the script method for the object that you wish to execute. The ID is then sent to the context's Prepare method.

The method will find the script method with the exact same declaration.

virtual int asIObjectType::GetMethodIdByIndex ( int  index) const
pure virtual
Parameters
[in]indexThe index of the method.
Returns
A negative value on error, or the method id.
Return values
asINVALID_ARGindex is out of bounds.

This method should be used to retrieve the ID of the script method for the object that you wish to execute. The ID is then sent to the context's Prepare method.

virtual int asIObjectType::GetMethodIdByName ( const char *  name) const
pure virtual
Parameters
[in]nameThe name of the method.
Returns
A negative value on error, or the method id.
Return values
asMULTIPLE_FUNCTIONSFound multiple matching methods.
asNO_FUNCTIONDidn't find any matching method.

This method should be used to retrieve the ID of the script method for the object that you wish to execute. The ID is then sent to the context's Prepare method.

virtual const char* asIObjectType::GetName ( ) const
pure virtual
Returns
A null terminated string with the name of the object type.
virtual int asIObjectType::GetPropertyCount ( ) const
pure virtual
Returns
The number of member properties of the script object.
virtual const char* asIObjectType::GetPropertyName ( asUINT  prop) const
pure virtual
Parameters
[in]propThe property index.
Returns
A null terminated string with the property name.
virtual int asIObjectType::GetPropertyOffset ( asUINT  prop) const
pure virtual
Parameters
[in]propThe property index.
Returns
The offset of the property in the memory layout.
virtual int asIObjectType::GetPropertyTypeId ( asUINT  prop) const
pure virtual
Parameters
[in]propThe property index.
Returns
The type id of the member property, or a negative value on error.
Return values
asINVALID_ARGprop is too large
virtual asUINT asIObjectType::GetSize ( ) const
pure virtual
Returns
The number of bytes necessary to store instances of this type.

Application registered reference types doesn't store this information, as the script engine doesn't allocate memory for these itself.

virtual asIObjectType* asIObjectType::GetSubType ( ) const
pure virtual
Deprecated:
Since 2.16.0.
virtual bool asIObjectType::IsInterface ( ) const
pure virtual
Deprecated:
Since 2.16.0. Use (GetFlags() & asOBJ_SCRIPT_OBJECT) && (GetSize() == 0) instead.