#include <maya/MIOStream.h>
#include <stdio.h>
#include <stdlib.h>
#include <maya/MPxToolCommand.h>
#include <maya/MFnPlugin.h>
#include <maya/MArgList.h>
#include <maya/MGlobal.h>
#include <maya/MItSelectionList.h>
#include <maya/MPoint.h>
#include <maya/MVector.h>
#include <maya/MDagPath.h>
#include <maya/MFnTransform.h>
#include <maya/MItCurveCV.h>
#include <maya/MItSurfaceCV.h>
#include <maya/MItMeshVertex.h>
#include <maya/MPxSelectionContext.h>
#include <maya/MPxContextCommand.h>
#include <maya/M3dView.h>
#include <maya/MFnCamera.h>
#define CHECKRESULT(stat,msg) \
if ( MS::kSuccess != stat ) { \
cerr << msg << endl; \
}
#define kVectorEpsilon 1.0e-3
#define MOVENAME "moveToolCmd"
#define DOIT 0
#define UNDOIT 1
#define REDOIT 2
{
public:
moveCmd();
~moveCmd() override;
public:
static void* creator();
void setVector( double x, double y, double z);
private:
};
moveCmd::moveCmd( )
{
setCommandString( MOVENAME );
}
moveCmd::~moveCmd()
{}
void* moveCmd::creator()
{
return new moveCmd;
}
bool moveCmd::isUndoable() const
{
return true;
}
void moveCmd::setVector( double x, double y, double z)
{
delta.x = x;
delta.y = y;
delta.z = z;
}
{
command.
addArg( commandString() );
}
{
unsigned i = 0;
{
case 1:
break;
case 2:
break;
case 3:
break;
case 0:
default:
break;
}
delta = vector;
return action( DOIT );
}
{
return action( UNDOIT );
}
{
return action( REDOIT );
}
MStatus moveCmd::action(
int flag )
{
switch( flag )
{
case UNDOIT:
break;
case REDOIT:
break;
case DOIT:
break;
default:
break;
}
if ( MS::kSuccess == stat ) {
for ( ; !iter.isDone(); iter.next() )
{
iter.getDagPath( mdagPath, mComponent );
if ( MS::kSuccess == stat ) {
stat = transFn.translateBy( vector, spc );
CHECKRESULT(stat,"Error doing translate on transform");
continue;
}
if ( MS::kSuccess == stat ) {
for ( ; !cvFn.isDone(); cvFn.next() ) {
stat = cvFn.translateBy( vector, spc );
CHECKRESULT(stat,"Error setting CV");
}
cvFn.updateCurve();
}
if ( MS::kSuccess == stat ) {
for ( ; !sCvFn.isDone(); sCvFn.nextRow() ) {
for ( ; !sCvFn.isRowDone(); sCvFn.next() ) {
stat = sCvFn.translateBy( vector, spc );
CHECKRESULT(stat,"Error setting CV");
}
}
sCvFn.updateSurface();
}
if ( MS::kSuccess == stat ) {
for ( ; !vtxFn.isDone(); vtxFn.next() ) {
stat = vtxFn.translateBy( vector, spc );
CHECKRESULT(stat,"Error setting Vertex");
}
vtxFn.updateSurface();
}
}
}
else {
cerr << "Error creating selection list iterator" << endl;
}
return MS::kSuccess;
}
#define MOVEHELPSTR "drag to move selected object"
#define MOVETITLESTR "moveTool"
#define TOP 0
#define FRONT 1
#define SIDE 2
#define PERSP 3
{
public:
moveContext();
private:
int currWin;
short startPos_x, endPos_x, start_x, last_x;
short startPos_y, endPos_y, start_y, last_y;
moveCmd * cmd;
};
moveContext::moveContext()
{
setTitleString( str );
}
void moveContext::toolOnSetup(
MEvent & )
{
setHelpString( str );
}
{
printf("- VP2.0 version doRelease() called.\n");
return stat;
}
{
printf("- VP2.0 version doDrag() called.\n");
return stat;
}
{
printf("- VP2.0 version doHold() called.\n");
}
{
printf("- VP2.0 version doPress() called.\n");
return stat;
}
{
if ( !isSelecting() ) {
event.getPosition( startPos_x, startPos_y );
stat = view.getCamera( camera );
if ( stat != MS::kSuccess ) {
cerr << "Error: M3dView::getCamera" << endl;
return stat;
}
MVector upDir = fnCamera.upDirection( spc );
MVector rightDir = fnCamera.rightDirection( spc );
if ( fnCamera.isOrtho() ) {
currWin = TOP;
currWin = FRONT;
} else {
currWin = SIDE;
}
}
else {
currWin = PERSP;
}
cmd = (moveCmd*)newToolCommand();
cmd->setVector( 0.0, 0.0, 0.0 );
}
return stat;
}
{
if ( !isSelecting() ) {
event.getPosition( endPos_x, endPos_y );
view.viewToWorld( startPos_x, startPos_y, startW, vec );
view.viewToWorld( endPos_x, endPos_y, endW, vec );
downButton = event.mouseButton();
cmd->undoIt();
switch( currWin )
{
case TOP:
switch ( downButton )
{
cmd->setVector( endW.
x - startW.
x, 0.0, 0.0 );
break;
default:
cmd->setVector( endW.
x - startW.
x, 0.0,
break;
}
break;
case FRONT:
switch ( downButton )
{
cmd->setVector( endW.
x - startW.
x, 0.0, 0.0 );
break;
default:
cmd->setVector( endW.
x - startW.
x,
endW.
y - startW.
y, 0.0 );
break;
}
break;
case SIDE:
switch ( downButton )
{
cmd->setVector( 0.0, 0.0, endW.
z - startW.
z );
break;
default:
cmd->setVector( 0.0, endW.
y - startW.
y,
break;
}
break;
case PERSP:
break;
}
stat = cmd->redoIt();
view.refresh( true );
}
return stat;
}
{
if ( !isSelecting() ) {
event.getPosition( endPos_x, endPos_y );
if ( abs(startPos_x - endPos_x) < 2 && abs(startPos_y - endPos_y) < 2 ) {
delete cmd;
view.refresh( true );
}
else {
stat = cmd->finalize();
view.refresh( true );
}
}
return stat;
}
{
return setHelpString( str );
}
#define CREATE_CTX_NAME "moveToolContext"
{
public:
moveContextCommand() {};
public:
static void* creator();
};
{
return new moveContext();
}
void * moveContextCommand::creator()
{
return new moveContextCommand;
}
{
MFnPlugin plugin( obj, PLUGIN_COMPANY,
"3.0",
"Any" );
status = plugin.registerContextCommand( CREATE_CTX_NAME,
&moveContextCommand::creator,
MOVENAME, &moveCmd::creator );
if (!status) {
status.
perror(
"registerContextCommand");
return status;
}
return status;
}
{
status = plugin.deregisterContextCommand( CREATE_CTX_NAME, MOVENAME );
if (!status) {
status.
perror(
"deregisterContextCommand");
return status;
}
return status;
}