1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/*=========================================================================
Program: ParaView
Module: vtkPVCompositeKeyFrame.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkPVCompositeKeyFrame
* @brief composite keyframe.
*
* There are many different types of keyframes such as
* vtkPVSinusoidKeyFrame, vtkPVRampKeyFrame etc.
* This is keyframe that has all different types of keyframes
* as internal objects and provides API to choose one of them as the
* active type. This is helpful in GUIs that allow for switching the
* type of keyframe on the fly without much effort from the GUI.
*/
#ifndef vtkPVCompositeKeyFrame_h
#define vtkPVCompositeKeyFrame_h
#include "vtkPVKeyFrame.h"
class vtkPVBooleanKeyFrame;
class vtkPVSinusoidKeyFrame;
class vtkPVExponentialKeyFrame;
class vtkPVRampKeyFrame;
class VTKPVANIMATION_EXPORT vtkPVCompositeKeyFrame : public vtkPVKeyFrame
{
public:
static vtkPVCompositeKeyFrame* New();
vtkTypeMacro(vtkPVCompositeKeyFrame, vtkPVKeyFrame);
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
enum
{
NONE = 0,
BOOLEAN = 1,
RAMP = 2,
EXPONENTIAL = 3,
SINUSOID = 4
};
//@{
/**
* Overridden to pass on to the internal keyframe proxies.
*/
virtual void RemoveAllKeyValues() VTK_OVERRIDE;
virtual void SetKeyTime(double time) VTK_OVERRIDE;
virtual void SetKeyValue(double val) VTK_OVERRIDE { this->Superclass::SetKeyValue(val); }
virtual void SetKeyValue(unsigned int index, double val) VTK_OVERRIDE;
virtual void SetNumberOfKeyValues(unsigned int num) VTK_OVERRIDE;
//@}
//@{
/**
* Passed on to the ExponentialKeyFrame.
*/
void SetBase(double val);
void SetStartPower(double val);
void SetEndPower(double val);
//@}
//@{
/**
* Passed on to the SinusoidKeyFrame.
*/
void SetPhase(double val);
void SetFrequency(double val);
void SetOffset(double val);
//@}
//@{
/**
* Get/Set the type of keyframe to be used as the active type.
* Default is RAMP.
*/
vtkSetClampMacro(Type, int, NONE, SINUSOID);
vtkGetMacro(Type, int);
const char* GetTypeAsString() { return this->GetTypeAsString(this->Type); }
static const char* GetTypeAsString(int);
static int GetTypeFromString(const char* string);
//@}
/**
* This method will do the actual interpolation.
* currenttime is normalized to the time range between
* this key frame and the next key frame.
*/
virtual void UpdateValue(
double currenttime, vtkPVAnimationCue* cue, vtkPVKeyFrame* next) VTK_OVERRIDE;
protected:
vtkPVCompositeKeyFrame();
~vtkPVCompositeKeyFrame();
int Type;
vtkPVBooleanKeyFrame* BooleanKeyFrame;
vtkPVRampKeyFrame* RampKeyFrame;
vtkPVExponentialKeyFrame* ExponentialKeyFrame;
vtkPVSinusoidKeyFrame* SinusoidKeyFrame;
private:
vtkPVCompositeKeyFrame(const vtkPVCompositeKeyFrame&) VTK_DELETE_FUNCTION;
void operator=(const vtkPVCompositeKeyFrame&) VTK_DELETE_FUNCTION;
};
#endif
|