167 lines
4.5 KiB
C++
Executable File
167 lines
4.5 KiB
C++
Executable File
|
|
#ifndef _MAnimControl
|
|
#define _MAnimControl
|
|
//
|
|
// *****************************************************************************
|
|
//
|
|
// Copyright (C) 1997-2003 Alias|Wavefront Inc.
|
|
//
|
|
// These coded instructions, statements and computer programs contain
|
|
// unpublished information proprietary to Alias|Wavefront Inc. and are
|
|
// protected by Canadian and US federal copyright laws. They may not be
|
|
// disclosed to third parties or copied or duplicated, in whole or in part,
|
|
// without prior written consent of Alias|Wavefront Inc.
|
|
//
|
|
// Unpublished-rights reserved under the Copyright Laws of the United States.
|
|
//
|
|
// *****************************************************************************
|
|
//
|
|
// CLASS: MAnimControl
|
|
//
|
|
// *****************************************************************************
|
|
//
|
|
// CLASS DESCRIPTION (MAnimControl)
|
|
//
|
|
// This class provide access to the values that control how an animation is
|
|
// played. This includes the minimum and maximum frames included in the
|
|
// playback, whether the playback loops, and whether the animation runs
|
|
// in all views, or only the active view, etc.
|
|
//
|
|
// Methods also exist that mirror the functionality of the controls found
|
|
// on the time slider in the UI to start and stop the playback.
|
|
//
|
|
// *****************************************************************************
|
|
|
|
#if defined __cplusplus
|
|
|
|
// *****************************************************************************
|
|
|
|
// INCLUDED HEADER FILES
|
|
|
|
|
|
#include <maya/MStatus.h>
|
|
#include <maya/MTime.h>
|
|
#include <maya/MTypes.h>
|
|
#include <maya/MFnAnimCurve.h>
|
|
|
|
// *****************************************************************************
|
|
|
|
// DECLARATIONS
|
|
|
|
// *****************************************************************************
|
|
|
|
// CLASS DECLARATION (MAnimControl)
|
|
|
|
/// Control over animation playback and values (OpenMayaAnim)
|
|
/**
|
|
Retrieve and set animation parameters and control playback
|
|
*/
|
|
#ifdef _WIN32
|
|
#pragma warning(disable: 4522)
|
|
#endif // _WIN32
|
|
|
|
class OPENMAYAANIM_EXPORT MAnimControl
|
|
{
|
|
public:
|
|
///
|
|
enum PlaybackMode {
|
|
/// Play the animation once then stop
|
|
kPlaybackOnce,
|
|
/// Play the animation continuously
|
|
kPlaybackLoop,
|
|
/// Play the animation forwards, then backwards continuously
|
|
kPlaybackOscillate
|
|
};
|
|
|
|
///
|
|
enum PlaybackViewMode {
|
|
/// The animation plays back in all views
|
|
kPlaybackViewAll,
|
|
/// The animation plays back in only the active view
|
|
kPlaybackViewActive
|
|
};
|
|
|
|
|
|
///
|
|
MAnimControl();
|
|
///
|
|
virtual ~MAnimControl();
|
|
///
|
|
static MAnimControl::PlaybackMode playbackMode();
|
|
///
|
|
static MStatus setPlaybackMode( PlaybackMode
|
|
newMode );
|
|
///
|
|
static MAnimControl::PlaybackViewMode viewMode();
|
|
///
|
|
static MStatus setViewMode( PlaybackViewMode
|
|
newMode );
|
|
///
|
|
static double playbackBy();
|
|
///
|
|
static MStatus setPlaybackBy( const double& );
|
|
///
|
|
static MTime minTime();
|
|
///
|
|
static MTime maxTime();
|
|
///
|
|
static MStatus setMinTime( MTime newMinTime );
|
|
///
|
|
static MStatus setMaxTime( MTime newMaxTime );
|
|
///
|
|
static MStatus setMinMaxTime( MTime min,
|
|
MTime max );
|
|
///
|
|
static MTime currentTime();
|
|
///
|
|
static MStatus setCurrentTime( const MTime&
|
|
newTime );
|
|
///
|
|
static double playbackSpeed();
|
|
///
|
|
static MStatus setPlaybackSpeed( double speed );
|
|
///
|
|
static MStatus playForward();
|
|
///
|
|
static MStatus playBackward();
|
|
///
|
|
static bool isPlaying();
|
|
///
|
|
static MStatus stop();
|
|
///
|
|
static bool autoKeyMode ();
|
|
///
|
|
static MStatus setAutoKeyMode ( bool mode );
|
|
///
|
|
static MFnAnimCurve::TangentType globalInTangentType (
|
|
MStatus * ReturnStatus = NULL );
|
|
///
|
|
static MStatus setGlobalInTangentType (const MFnAnimCurve::TangentType
|
|
&tangentType );
|
|
///
|
|
static MFnAnimCurve::TangentType globalOutTangentType (
|
|
MStatus * ReturnStatus = NULL );
|
|
///
|
|
static MStatus setGlobalOutTangentType (const MFnAnimCurve::TangentType
|
|
&tangentType );
|
|
///
|
|
static bool weightedTangents( MStatus * ReturnStatus = NULL );
|
|
///
|
|
static MStatus setWeightedTangents( bool weightState );
|
|
|
|
protected:
|
|
// No protected members
|
|
|
|
private:
|
|
// No private members
|
|
|
|
};
|
|
|
|
#ifdef _WIN32
|
|
#pragma warning(default: 4522)
|
|
#endif // _WIN32
|
|
|
|
// *****************************************************************************
|
|
#endif /* __cplusplus */
|
|
#endif /* _MAnimControl */
|