C++ API Reference
|
Message base class. More...
#include <MMessage.h>
Public Types | |
enum | Action { kDefaultAction, kDoNotDoAction, kDoAction } |
Callback result action codes. More... | |
typedef void(* | MBasicFunction) (void *clientData) |
Pointer to a basic callback function. More... | |
typedef void(* | MElapsedTimeFunction) (float elapsedTime, float lastTime, void *clientData) |
Pointer to an elapsed time callback function. More... | |
typedef void(* | MCheckFunction) (bool *retCode, void *clientData) |
Pointer to callback function which returns a true/false result. More... | |
typedef void(* | MCheckFileFunction) (bool *retCode, MFileObject &file, void *clientData) |
Pointer to a callback function which takes a file object and returns a result. More... | |
typedef void(* | MCheckPlugFunction) (bool *retCode, MPlug &plug, void *clientData) |
Pointer to a callback function which takes a plug and returns a result. More... | |
typedef void(* | MComponentFunction) (MUintArray componentIds[], unsigned int count, void *clientData) |
Pointer to a callback function which takes an array of component ids. More... | |
typedef void(* | MNodeFunction) (MObject &node, void *clientData) |
Pointer to a callback function which takes a dependency node. More... | |
typedef void(* | MStringFunction) (const MString &str, void *clientData) |
Pointer to callback function which takes a string. More... | |
typedef void(* | MTwoStringFunction) (const MString &str1, const MString &str2, void *clientData) |
Pointer to a callback function which takes two strings. More... | |
typedef void(* | MThreeStringFunction) (const MString &str1, const MString &str2, const MString &str3, void *clientData) |
Pointer to a callback function which takes three strings. More... | |
typedef void(* | MStringIntBoolIntFunction) (const MString &str, unsigned int index, bool flag, unsigned int type, void *clientData) |
Pointer to callback function which takes a string, an index, a flag and a type. More... | |
typedef void(* | MStringIndexFunction) (const MString &, unsigned int index, void *clientData) |
Pointer to callback function which takes a string and index. More... | |
typedef void(* | MNodeStringBoolFunction) (MObject &node, const MString &, bool, void *clientData) |
Pointer to a callback function which takes a node, a string and a boolean. More... | |
typedef void(* | MStateFunction) (bool state, void *clientData) |
Pointer to a callback function which takes a boolean state. More... | |
typedef void(* | MTimeFunction) (MTime &time, void *clientData) |
Pointer to callback function which takes a time. More... | |
typedef void(* | MPlugFunction) (MPlug &srcPlug, MPlug &destPlug, bool made, void *clientData) |
Pointer to plug connection callback function. More... | |
typedef void(* | MNodePlugFunction) (MObject &node, MPlug &plug, void *clientData) |
Pointer to a callback function which takes a dependency node and a plug. More... | |
typedef void(* | MNodeStringFunction) (MObject &node, const MString &str, void *clientData) |
Pointer to a callback function which takes a dependency node and a string. More... | |
typedef void(* | MParentChildFunction) (MDagPath &child, MDagPath &parent, void *clientData) |
Pointer to to a callback function which takes two DAG nodes in a parent/child relationship. More... | |
typedef void(* | MModifierFunction) (MDGModifier &modifier, void *clientData) |
Pointer to a callback function which takes a DG modifier. More... | |
typedef void(* | MStringArrayFunction) (const MStringArray &strs, void *clientData) |
Pointer to a callback function which takes a string array. More... | |
typedef void(* | MNodeModifierFunction) (MObject &node, MDGModifier &modifier, void *clientData) |
Pointer to a callback function which takes a dependency node and a DG modifier. More... | |
typedef void(* | MObjArray) (MObjectArray &objects, void *clientData) |
Pointer to a callback function which takes an array of objects. More... | |
typedef void(* | MNodeObjArray) (MObject &node, MObjectArray &objects, void *clientData) |
Pointer to a callback function which takes a dependency node and an array of objects. More... | |
typedef void(* | MStringNode) (const MString &str, MObject &node, void *clientData) |
Pointer to a callback function which takes a string and a dependency node. More... | |
typedef void(* | MCameraLayerFunction) (MObject &cameraSetNode, unsigned int multiIndex, bool added, void *clientData) |
Pointer to a callback function which takes a dependency node, an unsigned integer, and a boolean value. More... | |
typedef void(* | MCameraLayerCameraFunction) (MObject &cameraSetNode, unsigned int multiIndex, MObject &oldCamera, MObject &newCamera, void *clientData) |
Pointer to a callback function which takes a dependency node, an unsigned integer, and two camera transform nodes. More... | |
typedef void(* | MConnFailFunction) (MPlug &srcPlug, MPlug &destPlug, const MString &srcPlugName, const MString &dstPlugName, void *clientData) |
Pointer to connection-failed callback function. More... | |
typedef void(* | MPlugsDGModFunction) (MPlugArray &plugs, MDGModifier &modifier, void *clientData) |
Pointer to a callback function which takes an array of MPlugs and an MDGModifier. More... | |
typedef void(* | MNodeUuidFunction) (MObject &node, const MUuid &uuid, void *clientData) |
Pointer to a callback function which takes a dependency node and a UUID. More... | |
typedef Action(* | MCheckNodeUuidFunction) (bool doAction, MObject &node, MUuid &uuid, void *clientData) |
Pointer to a callback function which takes a dependency node and a UUID, and returns a result. More... | |
typedef void(* | MObjectFileFunction) (const MObject &object, const MFileObject &file, void *clientData) |
Pointer to a callback function which takes an object and a file object. More... | |
typedef void(* | MCheckObjectFileFunction) (bool *retCode, const MObject &referenceNode, MFileObject &file, void *clientData) |
Pointer to a callback function which takes an object and a file object and returns a result. More... | |
typedef void(* | MRenderTileFunction) (int originX, int originY, int tileMaxX, int tileMaxY, const void *tileData) |
Pointer to a callback function which receives origin, size and image data. More... | |
Static Public Member Functions | |
static MStatus | removeCallback (MCallbackId id) |
Remove the specified callback from maya. More... | |
static MStatus | removeCallbacks (MCallbackIdArray &ids) |
Remove all of the specified callbacks from maya. More... | |
static MCallbackId | currentCallbackId (MStatus *ReturnStatus=NULL) |
Return the callback ID of the currently executing callback. More... | |
static MStatus | nodeCallbacks (MObject &node, MCallbackIdArray &ids) |
Returns a list of callback IDs associated registered to a given node. More... | |
static void | setRegisteringCallableScript () |
Mark this MMessage object as one that will be passed callbacks defined in script. | |
static bool | registeringCallableScript () |
Return true if this MMessage object has its callbacks defined in script. | |
static void | stopRegisteringCallableScript () |
Stop this MMessage object from being passed. More... | |
static const char * | className () |
Returns the name of this class. More... | |
static MStatus | removeCallbacks (MIntArray &ids) |
This method is obsolete. More... | |
static MStatus | nodeCallbacks (MObject &node, MIntArray &ids) |
This method is obsolete. More... | |
Friends | |
class | MRenderCallback |
Message base class.
This is the base class for message callbacks. This base class allows the user to remove a message callback. To register a callback, the user must use the addCallback methods in the message classes which inherit from this base class.
When a callback is added a number or id is returned. This id is used to keep track of the callback and is necessary for removing it. A callback id with the value 'NULL' represents an invalid callback. Use the removeCallback member function of this class for removing a callback.
It is the user's responsibility to keep track of the callback id's and remove all callbacks for a plug-in when it is unloaded.
Callbacks During File Read
Care must be taken when a callback executes while Maya is reading a scene file as the scene may be temporarily in an inconsistent state, which could give incorrect results.
For example, consider a scene which has two nodes, X and Y, with a connection from X.out to Y.in. A "node added" message (see MDGMessage::addNodeAddedCallback) will be sent out for Y as soon as it is added to the scene, but before the connection has been made to Y.in. If a callback were to read the value of Y.in at this point it would get the wrong result.
The difficulties are compounded by the fact that Maya's normal Dependency Graph evaluation and dirty propagation mechanisms are disabled during a file read. In our example above, retrieving the value of Y.in will mark the plug as clean. When the connection is from X.out is subsequently made, Y.in won't be marked dirty because dirty propagation is disabled. As a result, when the file read has completed and Maya draws the new scene, Y.in will not be re-evaluated which may produce an error in the draw.
For these reasons, callbacks should avoid querying or modifying the DG in any way during file read. They should not add or remove nodes, make or break connections, change parenting, set or retrieve plug values, etc. Even something as innocuous as a call to MFnDagNode::isIntermediateObject may cause problems since it queries the value of the node's intermediateObject plug. All such actions should be postponed until the file read has completed.
typedef void(* MBasicFunction) (void *clientData) |
Pointer to a basic callback function.
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MElapsedTimeFunction) (float elapsedTime, float lastTime, void *clientData) |
Pointer to an elapsed time callback function.
[in] | elapsedTime | The amount of time since the callback was last called. |
[in] | lastTime | The execution time at the previous call to this callback. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MCheckFunction) (bool *retCode, void *clientData) |
Pointer to callback function which returns a true/false result.
[in] | retCode | Result of the function. The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MCheckFileFunction) (bool *retCode, MFileObject &file, void *clientData) |
Pointer to a callback function which takes a file object and returns a result.
[in] | retCode | Result of the function. The meaning depends upon the specific message type for which the callback was registered. |
[in,out] | file | File object. The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MCheckPlugFunction) (bool *retCode, MPlug &plug, void *clientData) |
Pointer to a callback function which takes a plug and returns a result.
[in] | retCode | Result of the function. The meaning depends upon the specific message type for which the callback was registered. |
[in,out] | plug | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MComponentFunction) (MUintArray componentIds[], unsigned int count, void *clientData) |
Pointer to a callback function which takes an array of component ids.
[in] | componentIds | Array of component ids. |
[in] | count | Number of component ids in the array. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MNodeFunction) (MObject &node, void *clientData) |
Pointer to a callback function which takes a dependency node.
[in,out] | node | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MStringFunction) (const MString &str, void *clientData) |
Pointer to callback function which takes a string.
[in] | str | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
Pointer to a callback function which takes two strings.
[in] | str1 | Meaning depends upon the message for which the callback was registered. |
[in] | str2 | Meaning depends upon the message for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MThreeStringFunction) (const MString &str1, const MString &str2, const MString &str3, void *clientData) |
Pointer to a callback function which takes three strings.
[in] | str1 | Meaning depends upon the message for which the callback was registered. |
[in] | str2 | Meaning depends upon the message for which the callback was registered. |
[in] | str3 | Meaning depends upon the message for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MStringIntBoolIntFunction) (const MString &str, unsigned int index, bool flag, unsigned int type, void *clientData) |
Pointer to callback function which takes a string, an index, a flag and a type.
[in] | str | The meaning depends upon the specific message type for which the callback was registered. |
[in] | index | The meaning depends upon the specific message type for which the callback was registered. |
[in] | flag | The meaning depends upon the specific message type for which the callback was registered. |
[in] | type | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MStringIndexFunction) (const MString &, unsigned int index, void *clientData) |
Pointer to callback function which takes a string and index.
[in] | str | The meaning depends upon the specific message type for which the callback was registered. |
[in] | index | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
Pointer to a callback function which takes a node, a string and a boolean.
[in,out] | node | The meaning depends upon the specific message type for which the callback was registered. |
[in] | str | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MStateFunction) (bool state, void *clientData) |
Pointer to a callback function which takes a boolean state.
[in] | state | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MTimeFunction) (MTime &time, void *clientData) |
Pointer to callback function which takes a time.
[in,out] | time | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
Pointer to plug connection callback function.
[in,out] | srcPlug | Plug which is the source of the connection. |
[in,out] | destPlug | Plug which is the destination of the connection. |
[in] | made | True if the connection is being made, false if the connection is being broken. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
Pointer to a callback function which takes a dependency node and a plug.
[in,out] | node | The meaning depends upon the specific message type for which the callback was registered. |
[in,out] | plug | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
Pointer to a callback function which takes a dependency node and a string.
[in,out] | node | The meaning depends upon the specific message type for which the callback was registered. |
[in] | str | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
Pointer to to a callback function which takes two DAG nodes in a parent/child relationship.
[in,out] | child | Path to the child node. |
[in,out] | parent | Path to the parent node. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MModifierFunction) (MDGModifier &modifier, void *clientData) |
Pointer to a callback function which takes a DG modifier.
[in,out] | modifier | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MStringArrayFunction) (const MStringArray &strs, void *clientData) |
Pointer to a callback function which takes a string array.
[in] | strs | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MNodeModifierFunction) (MObject &node, MDGModifier &modifier, void *clientData) |
Pointer to a callback function which takes a dependency node and a DG modifier.
[in,out] | node | The meaning depends upon the specific message type for which the callback was registered. |
[in,out] | modifier | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MObjArray) (MObjectArray &objects, void *clientData) |
Pointer to a callback function which takes an array of objects.
[in,out] | objects | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MNodeObjArray) (MObject &node, MObjectArray &objects, void *clientData) |
Pointer to a callback function which takes a dependency node and an array of objects.
[in,out] | node | The meaning depends upon the specific message type for which the callback was registered. |
[in,out] | objects | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
Pointer to a callback function which takes a string and a dependency node.
[in] | str | The meaning depends upon the specific message type for which the callback was registered. |
[in,out] | node | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MCameraLayerFunction) (MObject &cameraSetNode, unsigned int multiIndex, bool added, void *clientData) |
Pointer to a callback function which takes a dependency node, an unsigned integer, and a boolean value.
[in] | node | The node should be a cameraSet node. |
[in] | unsigned | int The integer refers to a camera layer index in the given cameraSet node. |
[in] | bool | The value denotes whether the given camera layer has been added or removed. A value of true means the layer was added. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MCameraLayerCameraFunction) (MObject &cameraSetNode, unsigned int multiIndex, MObject &oldCamera, MObject &newCamera, void *clientData) |
Pointer to a callback function which takes a dependency node, an unsigned integer, and two camera transform nodes.
[in] | node | The node should be a cameraSet node. |
[in] | unsigned | int The integer refers to a camera layer index in the given cameraSet node. |
[in] | node | The node should be a camera transform previously assigned to the given camera layer. |
[in] | node | The node should be a camera transform newly assigned to the given camera layer. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MConnFailFunction) (MPlug &srcPlug, MPlug &destPlug, const MString &srcPlugName, const MString &dstPlugName, void *clientData) |
Pointer to connection-failed callback function.
[in,out] | srcPlug | Plug which was to be the source of the connection, or a null plug if the plug did not exist. |
[in,out] | destPlug | Plug which was to be the destination of the connection, or a null plug if the plug did not exist. |
[in] | srcPlugName | The plug name which was used to look up the source plug. |
[in] | dstPlugName | The plug name which was used to look up the destination plug. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MPlugsDGModFunction) (MPlugArray &plugs, MDGModifier &modifier, void *clientData) |
Pointer to a callback function which takes an array of MPlugs and an MDGModifier.
[in,out] | plugs | The meaning depends upon the specific message type for which the callback was registered. |
[in,out] | modifier | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
Pointer to a callback function which takes a dependency node and a UUID.
[in,out] | node | The meaning depends upon the specific message type for which the callback was registered. |
[in,out] | uuid | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef Action(* MCheckNodeUuidFunction) (bool doAction, MObject &node, MUuid &uuid, void *clientData) |
Pointer to a callback function which takes a dependency node and a UUID, and returns a result.
[in] | doAction | The default action to be taken by the function, if kDefaultAction is returned. The meaning depends upon the specific message type for which the callback was registered. |
[in,out] | node | The meaning depends upon the specific message type for which the callback was registered. |
[in,out] | uuid | The meaning depends upon the specific message type for which the callback was registered. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MObjectFileFunction) (const MObject &object, const MFileObject &file, void *clientData) |
Pointer to a callback function which takes an object and a file object.
[in] | referenceNode | The object (typically a DG node) to which the callback relates. |
[in] | file | The resolved file path of the referenced file. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MCheckObjectFileFunction) (bool *retCode, const MObject &referenceNode, MFileObject &file, void *clientData) |
Pointer to a callback function which takes an object and a file object and returns a result.
[in] | retCode | Result of the function. The meaning depends upon the specific message type for which the callback was registered. |
[in] | referenceNode | The object (typically a DG node) to which the callback relates. |
[in] | file | The resolved file path of the referenced file. |
[in] | clientData | Pointer to user-defined data supplied when the callback was registered. |
typedef void(* MRenderTileFunction) (int originX, int originY, int tileMaxX, int tileMaxY, const void *tileData) |
Pointer to a callback function which receives origin, size and image data.
[out] | originX | X coordinate of the tile's origin point relative to the final image. |
[out] | originY | Y coordinate of the tile's origin point relative to the final image. |
[out] | tileMaxX | X coordinate of the tile's end point relative to the final image. |
[out] | tileMaxY | Y coordinate of the tile's end point relative to the final image. |
[out] | tileData | the pixel data for the tile. |
enum Action |
|
static |
Remove the specified callback from maya.
This method must be called for all callbacks registered by a plug-in before that plug-in is unloaded.
[in] | id | identifier of callback to be removed |
|
static |
Remove all of the specified callbacks from maya.
This method must be called for all callbacks registered by a plug-in before that plug-in is unloaded.
[in] | idList | identifier list of callbacks to be removed |
|
static |
Return the callback ID of the currently executing callback.
If called outside of a callback, an invalid MCallbackId and failed status will be returned.
[in] | ReturnStatus | Status code |
|
static |
Returns a list of callback IDs associated registered to a given node.
[in] | node | Node to query for callbacks. |
[out] | ids | MCallbackId array to store the list of callback IDs. |
|
static |
Stop this MMessage object from being passed.
This could be due to a validation error as SWIG is automatically setting fRegisteringCallableScript to true prior to validating arguments.
|
static |
Returns the name of this class.
This method is obsolete.
This method is not available in Python.
[as of Maya 2019]
Remove all of the specified callbacks from maya.
This method must be called for all callbacks registered by a plug-in before that plug-in is unloaded.
[in] | idList | identifier of callback to be removed |
This method is obsolete.
This method is not available in Python.
[as of Maya 2019]
Returns a list of callback IDs associated registered to a given node.
[in] | node | Node to query for callbacks. |
[out] | ids | Integer array to store the list of callback IDs. |