//- // ========================================================================== // Copyright (C) 1995 - 2005 Alias Systems Corp. and/or its licensors. All // rights reserved. // // The coded instructions, statements, computer programs, and/or related // material (collectively the "Data") in these files are provided by Alias // Systems Corp. ("Alias") and/or its licensors for the exclusive use of the // Customer (as defined in the Alias Software License Agreement that // accompanies this Alias software). Such Customer has the right to use, // modify, and incorporate the Data into other products and to distribute such // products for use by end-users. // // THE DATA IS PROVIDED "AS IS". ALIAS HEREBY DISCLAIMS ALL WARRANTIES // RELATING TO THE DATA, INCLUDING, WITHOUT LIMITATION, ANY AND ALL EXPRESS OR // IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. IN NO EVENT SHALL ALIAS BE LIABLE FOR ANY DAMAGES // WHATSOEVER, WHETHER DIRECT, INDIRECT, SPECIAL, OR PUNITIVE, WHETHER IN AN // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, OR IN EQUITY, // ARISING OUT OF ACCESS TO, USE OF, OR RELIANCE UPON THE DATA. // ========================================================================== //+ #include #include #include #include #include #include #include #include #include class referenceQuery : public MPxCommand { public: referenceQuery(); virtual ~referenceQuery(); MStatus doIt( const MArgList & ); bool isUndoable() const; static void *creator(); }; referenceQuery::referenceQuery() { } referenceQuery::~referenceQuery() { } void *referenceQuery::creator() { return new referenceQuery; } bool referenceQuery::isUndoable() const { return false; }; MStatus referenceQuery::doIt( const MArgList & ) { MStringArray referenceFiles; MFileIO::getReferences( referenceFiles ); // Print some useful information about the files referenced // in the main scene. // // Output format is as follows: // // Referenced File: filename1 // Connections Made // source -> destination // ... // // Connections Broken // source ->destination // ... // // Attributes Changed Since File Referenced // attribute1 // attribute2 // ... // for( unsigned i = 0; i < referenceFiles.length(); i++ ) { MStringArray connectionsMade; MFileIO::getReferenceConnectionsMade( referenceFiles[i], connectionsMade ); cout << "Referenced File: " << referenceFiles[i].asChar() << ":\n"; cout << " Connections Made:\n"; unsigned j; for( j = 0; j < connectionsMade.length(); j+=2 ) { cout << " "; cout << connectionsMade[j].asChar() << " -> "; if( j + 1 < connectionsMade.length() ) { cout << connectionsMade[j+1].asChar(); } cout << "\n" ; } cout << "\n"; MStringArray connectionsBroken; MFileIO::getReferenceConnectionsBroken( referenceFiles[i], connectionsBroken ); cout << " Connections Broken: \n"; for( j = 0; j < connectionsBroken.length(); j+=2 ) { cout << " "; cout << connectionsBroken[j].asChar() << " -> "; if( j + 1 < connectionsBroken.length() ) { cout << connectionsBroken[j+1].asChar(); } cout << "\n" ; } cout << "\n"; MStringArray referencedNodes; cout << " Attrs Changed Since File Open:\n"; MFileIO::getReferenceNodes( referenceFiles[i], referencedNodes ); for( j = 0; j < referencedNodes.length(); j++ ) { // For each node, call a MEL command to get its // attributes. Say we're only interested in scalars. // MString cmd( "listAttr -s -cfo " ); cmd = cmd + referencedNodes[j]; MSelectionList referencedPlugs; MStringArray referencedAttributes; MGlobal::executeCommand( cmd, referencedAttributes ); for( unsigned k = 0; k < referencedAttributes.length(); k++ ) { MString plugName( referencedNodes[j] ); plugName = plugName + "." + referencedAttributes[k]; cout << " " << plugName.asChar() << "\n"; } } cout << "\n"; } // End of output // cout << "=====================================\n"; return MS::kSuccess; } MStatus initializePlugin( MObject obj ) { MStatus status; MFnPlugin plugin( obj, "Alias", "4.0", "Any"); status = plugin.registerCommand( "referenceQuery", referenceQuery::creator ); if (!status) { status.perror("registerCommand"); return status; } return status; } MStatus uninitializePlugin( MObject obj ) { MStatus status; MFnPlugin plugin( obj ); status = plugin.deregisterCommand( "referenceQuery" ); if (!status) { status.perror("deregisterCommand"); } return status; }