class MTypeId

Jump to documentation

Manage Maya Object type identifiers. (OpenMaya) (OpenMaya.py)

public members:

MTypeId ()
~MTypeId ()
MTypeId ( unsigned int id )
MTypeId ( unsigned int prefix, unsigned int id )
MTypeId ( const MTypeId & src )
MTypeId & operator= ( const MTypeId & rhs )
bool operator== ( const MTypeId & rhs ) const
bool operator!= ( const MTypeId & rhs ) const
unsigned int id ( MStatus * ReturnStatus = NULL ) const

Documentation

Create, copy, and query Maya Object type identifiers.
Description

In Maya, both intrinsic and user-defined Maya Objects are registered and recognized by their type identifier or type id. The basis of the type id system is a tag which is used at run-time to determine how to create and destroy Maya Objects, and how they are to be input/output from/to files. These tag-based identifiers are implemented by the class MTypeId.

Use the MTypeId class to create, copy and query Maya Object type identifiers.

It is very important to note that these ids are written into the Maya binary file format. So, once an id is assigned to a node or data type it can never be changed while any existing Maya file contains an instance of that node or data type. If a change is made, such files will become unreadable.

Thus, even though we provide a range of reserved ids that you can use for internal plug-ins, Alias highly recommends that you obtain a globally unique id range (see below) and use ids from this range for all your plug-ins, even internal ones. This can prevent significant headaches later if the plans for your plug-ins change.

There are 2 forms of the constructor for this class that can be used depending on whether the plug-in id is internal or globally unique.

For plug-ins that will forever be internal to your site use the constructor that takes a single unsigned int parameter. The numeric range 0 - 0x7ffff (524288 ids) has been reserved for such plug-ins.

The example plug-ins provided by Alias in the plug-in development kit will use ids in the range 0x80000 - 0xfffff (524288 ids). If you customize one of these example plug-ins, you should change the id to avoid future conflicts.

Plug-ins that are intended to be shared between sites will need to have a globally unique id. The Alias Support department will provide such id's in blocks of 256. You will be assigned one or more 24-bit prefixes. Once this has been obtained, used the MTypeId constructor that takes 2 unsigned int parameters. The prefix goes in the first parameter, and you are responsible for managing the allocation of the 256 ids that go into the second parameter.

Functions

MTypeId:: MTypeId ()

Description

Default constructor. Creates an undefined type id.

MTypeId:: MTypeId ( unsigned int id )

Description

Class constructor for ids used in internal plug-ins. The parameter to this constructor must be a number in the range 0 - 0x7ffff.

Arguments

  • id the numeric id tag

MTypeId:: MTypeId ( unsigned int prefix, unsigned int id )

Description

Class constructor for ids used in plug-ins that are globally unique. The prefix parameter will be obtained from Alias and is guaranteed to be globally unique. The id parameter can have a valid range of 0 - 255. Thus each globally unique prefix provides a customer managed namespace of 256 ids.

This constructor masks off the low order 8 bits of the prefix parameter and and high order 24 bits of the id parameter so it is essential to ensure that the provided parameters are in their valid numeric ranges.

Arguments

  • prefix a 24 bit integer - the low order 8 bits are ignored
  • id an 8 bit integer - the high order 24 bits are ignored

MTypeId:: MTypeId ( const MTypeId & src )

Description

Copy constructor.

Arguments

  • src the MTypeId to copy.

MTypeId:: ~MTypeId ()

Description

Class destructor.

unsigned int MTypeId:: id ( MStatus * ReturnStatus ) const

Description

Return the 32 bit id tag contained in the MTypeId instance

Arguments

  • ReturnStatus MS::kSuccess if success, otherwise MS::kFailure

Return Value

  • the 32-bit id tag contained in this MTypeId instance.

MTypeId & MTypeId:: operator= ( const MTypeId & rhs )

Description

Assignment operator. Allows assignment between MTypeIds.

bool MTypeId:: operator== ( const MTypeId & rhs ) const

Description

Equivalence operator. Returns true of the two MTypeId hold the same 32-bit binary tag.

bool MTypeId:: operator!= ( const MTypeId & rhs ) const

Description

Inequality operator. Returns true of the two MTypeId hold different 32-bit binary tags.

This class has no child classes.


Autodesk® Maya® 2008 © 1997-2007 Autodesk, Inc. All rights reserved. doc++ Copyright