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
|
/*=========================================================================
Program: ParaView
Module: vtkTimestepsAnimationPlayer.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 "vtkTimestepsAnimationPlayer.h"
#include "vtkCommand.h"
#include "vtkObjectFactory.h"
#include <set>
class vtkTimestepsAnimationPlayerSetOfDouble : public std::set<double> {};
vtkStandardNewMacro(vtkTimestepsAnimationPlayer);
//-----------------------------------------------------------------------------
vtkTimestepsAnimationPlayer::vtkTimestepsAnimationPlayer()
{
this->TimeSteps = new vtkTimestepsAnimationPlayerSetOfDouble;
this->FramesPerTimestep = 1;
}
//-----------------------------------------------------------------------------
vtkTimestepsAnimationPlayer::~vtkTimestepsAnimationPlayer()
{
delete this->TimeSteps;
}
//-----------------------------------------------------------------------------
void vtkTimestepsAnimationPlayer::AddTimeStep(double time)
{
this->TimeSteps->insert(time);
}
//-----------------------------------------------------------------------------
void vtkTimestepsAnimationPlayer::RemoveTimeStep(double time)
{
vtkTimestepsAnimationPlayerSetOfDouble::iterator iter =
this->TimeSteps->find(time);
if (iter != this->TimeSteps->end())
{
this->TimeSteps->erase(iter);
}
}
//-----------------------------------------------------------------------------
void vtkTimestepsAnimationPlayer::RemoveAllTimeSteps()
{
this->TimeSteps->clear();
}
//-----------------------------------------------------------------------------
unsigned int vtkTimestepsAnimationPlayer::GetNumberOfTimeSteps()
{
return static_cast<unsigned int>(this->TimeSteps->size());
}
//-----------------------------------------------------------------------------
void vtkTimestepsAnimationPlayer::StartLoop(double , double, double* playbackWindow)
{
this->PlaybackWindow[0] = playbackWindow[0];
this->PlaybackWindow[1] = playbackWindow[1];
this->Count = 0;
}
//-----------------------------------------------------------------------------
double vtkTimestepsAnimationPlayer::GetNextTime(double currentime)
{
this->Count++;
if (this->Count < this->FramesPerTimestep)
{
return currentime;
}
this->Count = 0;
vtkTimestepsAnimationPlayerSetOfDouble::iterator iter =
this->TimeSteps->upper_bound(currentime);
if (iter == this->TimeSteps->end() || currentime >= this->PlaybackWindow[1])
{
return VTK_DOUBLE_MAX;
}
return (*iter);
}
//-----------------------------------------------------------------------------
double vtkTimestepsAnimationPlayer::GetNextTimeStep(double timestep)
{
vtkTimestepsAnimationPlayerSetOfDouble::iterator iter =
this->TimeSteps->upper_bound(timestep);
if (iter == this->TimeSteps->end())
{
return timestep;
}
return (*iter);
}
//-----------------------------------------------------------------------------
double vtkTimestepsAnimationPlayer::GetPreviousTimeStep(double timestep)
{
double value = timestep;
vtkTimestepsAnimationPlayerSetOfDouble::iterator iter = this->TimeSteps->begin();
for (;iter != this->TimeSteps->end(); ++iter)
{
if ((*iter) >= timestep)
{
return value;
}
value = (*iter);
}
return value;
}
//-----------------------------------------------------------------------------
void vtkTimestepsAnimationPlayer::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "FramesPerTimestep: " << this->FramesPerTimestep << endl;
}
|