#ifndef _MAnimCurveClipboard #define _MAnimCurveClipboard // //- // ========================================================================== // Copyright (C) Alias Systems, a division of Silicon Graphics Limited. // All rights reserved. These coded instructions, statements and computer // programs contain unpublished information proprietary to Alias Systems, // a division of Silicon Graphics Limited, which is protected by the // Canadian and US federal copyright law and may not be disclosed to third // parties or copied or duplicated, in whole or in part, without prior // written consent of Alias Systems, a division of Silicon Graphics Limited // ========================================================================== //+ // // CLASS: MAnimCurveClipboard // // ***************************************************************************** // // CLASS DESCRIPTION (MAnimCurveClipboard) // // The clipboard is a list of MAnimCurveClipboardItems (i.e. an // MAnimCurveClipboardItemArray). // // The items on the clipboard must be ordered. In the case where the // clipboard info represents animation of a hierarchy, the order in which // items appear in the clipboard is reliant on a depth-first-iteration from // the root or the hierarchy. This ordering, is essential to properly match // up hierarchies of objects // // As an example, consider that animation from the following hierarchy // is placed into the clipboard. (Dag Objects with "/" for sides // are animated, as in the Hypergraph) // ____ // / A / // /___/\_______ // |\_____ \__ // ____ _|__ _|__ // | B | / E / | F | // |___| /___/ |___| // | |\________ // ____ ____ _|__ // / C / / G / / H / // /___/ /___/ /___/ // | // ____ // / D / // /___/ // // In this example, the object labelled "C" has translate{X,Y,Z} animated, // while all the others only have one animated attribute (excluding objects // B and F, which have no animated attributes). // // Using notation where A(r,c,a) represents the animCurve driving object // "A", which is at row "r" in its subhierarchy, has "c" children, and // "a" animated attributes these items would appear in the clipboard in this // order (i.e. depth-first with each object's attributes explicitly indexed // before continuing down the heirarchy): // // A(0,3,0) , B(1,1,0) , C(2,1,0) , C(2,1,1) , C(2,1,2) , D(3,0,0) , // E(1,0,0) , F(1,2,0) , G(2,0,0) , H(2,0,0) // // For example C(2,1,2) would mean that the object C resides on the second // level of the subheirarchy and has one child. The last "2" is simply // used as an index to count the number of animated attributes on this // object. // // Multiple objects can be represented on the clipboard in this manner. In // the example above, if we had a separate second object with no children, // "J", it would appear at the end of the array as J(0,0,0). // // Note that although B and F contain no animation data themselves, they // must still be placed on the clipboard as placeholders to preserve the // heirarchy information. A placeholder object is defined by a NULL value // for the MAnimCurveClipboardItem's animCurve. // // There is a special clipboard that remains static. It can be accessed by // MAnimCurveClipboard::theAPIClipboard(). // // ***************************************************************************** #if defined __cplusplus // ***************************************************************************** // INCLUDED HEADER FILES #include #include #include // ***************************************************************************** // DECLARATIONS // ***************************************************************************** // CLASS DECLARATION (MAnimCurveClipboard) /// Control over the animation clipboard (OpenMayaAnim) /** This class provide access to the animation or API clipboard which are used to hold on to anim curves during cut/copy/paste operations. */ #ifdef _WIN32 #pragma warning(disable: 4522) #endif // _WIN32 class OPENMAYAANIM_EXPORT MAnimCurveClipboard { public: /// MAnimCurveClipboard(); /// ~MAnimCurveClipboard(); /// // For accessing the static API clipboard static MAnimCurveClipboard & theAPIClipboard(); /// MStatus set( const MAnimCurveClipboard &cb ); /// MStatus set( const MAnimCurveClipboardItemArray &clipboardItemArray ); /// MStatus set( const MAnimCurveClipboardItemArray &clipboardItemArray, const MTime &startTime, const MTime &endTime, const float &startUnitlessInput, const float &endUnitlessInput ); /// MStatus clear (); /// bool isEmpty( MStatus * ReturnStatus = NULL ) const; /// const MAnimCurveClipboardItemArray clipboardItems( MStatus * ReturnStatus = NULL) const; /// MTime startTime( MStatus * ReturnStatus = NULL ) const; /// MTime endTime( MStatus * ReturnStatus = NULL ) const; /// float startUnitlessInput( MStatus * ReturnStatus = NULL ) const; /// float endUnitlessInput( MStatus * ReturnStatus = NULL ) const; protected: // No protected members private: void * fClipboard; static MAnimCurveClipboard fsAPIClipboard; MAnimCurveClipboard& operator = (const MAnimCurveClipboard&) const; MAnimCurveClipboard& operator = (const MAnimCurveClipboard&); }; #ifdef _WIN32 #pragma warning(default: 4522) #endif // _WIN32 // ***************************************************************************** #endif /* __cplusplus */ #endif /* _MAnimCurveClipboard */