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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/*=========================================================================
Program: ParaView
Module: vtkPVCameraCueManipulator.cxx
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.
=========================================================================*/
#include "vtkPVCameraCueManipulator.h"
#include "vtkCamera.h"
#include "vtkCameraInterpolator.h"
#include "vtkObjectFactory.h"
#include "vtkPVCameraAnimationCue.h"
#include "vtkPVCameraKeyFrame.h"
#include "vtkPVRenderView.h"
#include "vtkSMSourceProxy.h"
#include "vtkPVDataInformation.h"
#include "vtkVector.h"
#include "vtkVectorOperators.h"
vtkStandardNewMacro(vtkPVCameraCueManipulator);
//------------------------------------------------------------------------------
vtkPVCameraCueManipulator::vtkPVCameraCueManipulator()
{
this->Mode = PATH;
this->CameraInterpolator = vtkCameraInterpolator::New();
this->DataSourceProxy = 0;
}
//------------------------------------------------------------------------------
vtkPVCameraCueManipulator::~vtkPVCameraCueManipulator()
{
this->CameraInterpolator->Delete();
}
//------------------------------------------------------------------------------
void vtkPVCameraCueManipulator::Initialize(vtkPVAnimationCue* cue)
{
this->Superclass::Initialize(cue);
int nos = this->GetNumberOfKeyFrames();
this->CameraInterpolator->Initialize();
this->CameraInterpolator->SetInterpolationTypeToSpline();
if (nos < 2)
{
vtkErrorMacro("Too few keyframes to animate.");
return;
}
if (this->Mode == PATH || this->Mode == FOLLOW_DATA)
{
// No need to initialize this->CameraInterpolator in PATH or
// FOLLOW_DATA mode
return;
}
// Set up this->CameraInterpolator.
for(int i=0; i < nos; i++)
{
vtkPVCameraKeyFrame* kf;
kf = vtkPVCameraKeyFrame::SafeDownCast(this->GetKeyFrameAtIndex(i));
if (!kf)
{
vtkErrorMacro("All keyframes in a vtkPVCameraKeyFrame must be "
"vtkPVCameraKeyFrame");
continue;
}
this->CameraInterpolator->AddCamera(kf->GetKeyTime(), kf->GetCamera());
}
}
//------------------------------------------------------------------------------
void vtkPVCameraCueManipulator::Finalize(vtkPVAnimationCue* cue)
{
this->Superclass::Finalize(cue);
}
//------------------------------------------------------------------------------
void vtkPVCameraCueManipulator::UpdateValue(double currenttime,
vtkPVAnimationCue* cue)
{
vtkPVCameraAnimationCue* cameraCue =
vtkPVCameraAnimationCue::SafeDownCast(cue);
if (!cameraCue)
{
vtkErrorMacro("This manipulator only works with vtkPVCameraAnimationCue.");
return;
}
vtkCamera* animatedCamera = cameraCue->GetCamera();
if (!animatedCamera)
{
vtkErrorMacro("No camera to animate.");
return;
}
if (this->Mode == CAMERA)
{
vtkCamera* camera = vtkCamera::New();
this->CameraInterpolator->InterpolateCamera(currenttime, camera);
animatedCamera->SetPosition(camera->GetPosition());
animatedCamera->SetFocalPoint(camera->GetFocalPoint());
animatedCamera->SetViewUp(camera->GetViewUp());
animatedCamera->SetViewAngle(camera->GetViewAngle());
animatedCamera->SetParallelScale(camera->GetParallelScale());
camera->Delete();
cameraCue->GetView()->ResetCameraClippingRange();
}
else if(this->Mode == FOLLOW_DATA)
{
vtkSMSourceProxy *proxy = vtkSMSourceProxy::SafeDownCast(this->DataSourceProxy);
if (proxy)
{
// With changes in vtkSMAnimationScene when this cue "tick" is called,
// we no longer need to call UpdatePipeline(), the pipeline will already be updated.
// proxy->UpdatePipeline();
// get the data bounds
vtkPVDataInformation *info = proxy->GetDataInformation();
double bounds[6];
info->GetBounds(bounds);
// calculate the center of the data
vtkVector3d center((bounds[0] + bounds[1]) * 0.5,
(bounds[2] + bounds[3]) * 0.5,
(bounds[4] + bounds[5]) * 0.5);
// move the camera's position and focal point based on
// the data's position at the current time
vtkVector3d position;
cameraCue->GetCamera()->GetPosition(&position[0]);
vtkVector3d focalPoint;
cameraCue->GetCamera()->GetFocalPoint(&focalPoint[0]);
cameraCue->GetCamera()->SetFocalPoint(¢er[0]);
position = center + (position - focalPoint);
cameraCue->GetCamera()->SetPosition(&position[0]);
}
else
{
vtkWarningMacro("No Data Source for Follow-Data Animation");
}
}
else
{
this->Superclass::UpdateValue(currenttime, cue);
}
}
//------------------------------------------------------------------------------
void vtkPVCameraCueManipulator::SetDataSourceProxy(vtkSMProxy *dataSourceProxy)
{
if(dataSourceProxy != this->DataSourceProxy)
{
this->DataSourceProxy = dataSourceProxy;
}
}
//------------------------------------------------------------------------------
void vtkPVCameraCueManipulator::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "Mode:" << this->Mode << endl;
}
|