2008-07-21 17:46:53 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2008-07-21 18:57:06 +08:00
|
|
|
#include <OpenThreads/ScopedLock>
|
2008-07-21 17:46:53 +08:00
|
|
|
#include <osg/ImageSequence>
|
2008-07-22 01:28:22 +08:00
|
|
|
#include <osg/Notify>
|
|
|
|
#include <osg/Camera>
|
2008-07-22 05:00:57 +08:00
|
|
|
#include <osg/NodeVisitor>
|
|
|
|
#include <osg/Texture2D>
|
2008-07-22 01:28:22 +08:00
|
|
|
|
|
|
|
#include <math.h>
|
2008-07-21 17:46:53 +08:00
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
void ImageSequence::UpdateCallback::operator () (osg::StateAttribute* attr, osg::NodeVisitor* nv)
|
|
|
|
{
|
|
|
|
const osg::FrameStamp* fs = nv!=0 ? nv->getFrameStamp() : 0;
|
|
|
|
osg::Texture2D* texture2D = dynamic_cast<osg::Texture2D*>(attr);
|
|
|
|
if (texture2D && texture2D->getImage() && fs)
|
|
|
|
{
|
|
|
|
texture2D->getImage()->update(nv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-21 17:46:53 +08:00
|
|
|
ImageSequence::ImageSequence()
|
|
|
|
{
|
2008-07-22 01:28:22 +08:00
|
|
|
_referenceTime = DBL_MAX;
|
2008-07-21 17:46:53 +08:00
|
|
|
_timeMultiplier = 1.0;
|
2008-07-22 05:00:57 +08:00
|
|
|
|
|
|
|
_duration = 1.0;
|
|
|
|
_pruneOldImages = false;
|
|
|
|
|
|
|
|
_imageIteratorTime = DBL_MAX;
|
|
|
|
_imageIterator = _images.end();
|
2008-07-21 17:46:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ImageSequence::ImageSequence(const ImageSequence& is,const CopyOp& copyop):
|
|
|
|
osg::ImageStream(is,copyop),
|
|
|
|
_referenceTime(is._referenceTime),
|
2008-07-22 05:00:57 +08:00
|
|
|
_timeMultiplier(is._timeMultiplier),
|
|
|
|
_duration(is._duration),
|
|
|
|
_pruneOldImages(is._pruneOldImages)
|
2008-07-21 17:46:53 +08:00
|
|
|
{
|
2008-07-22 05:00:57 +08:00
|
|
|
_imageIteratorTime = DBL_MAX;
|
|
|
|
_imageIterator = _images.end();
|
2008-07-21 17:46:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int ImageSequence::compare(const Image& rhs) const
|
|
|
|
{
|
|
|
|
return ImageStream::compare(rhs);
|
|
|
|
}
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
void ImageSequence::addImageFile(const std::string& fileName)
|
2008-07-21 17:46:53 +08:00
|
|
|
{
|
2008-07-21 18:57:06 +08:00
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex);
|
2008-07-22 05:00:57 +08:00
|
|
|
_fileNames.push_back(fileName);
|
2008-07-21 17:46:53 +08:00
|
|
|
}
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
void ImageSequence::addImage(osg::Image* image)
|
2008-07-21 17:46:53 +08:00
|
|
|
{
|
2008-07-21 18:57:06 +08:00
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex);
|
2008-07-22 05:00:57 +08:00
|
|
|
_images.push_back(image);
|
2008-07-22 01:28:22 +08:00
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
if (_imageIterator==_images.end())
|
2008-07-22 01:28:22 +08:00
|
|
|
{
|
2008-07-22 05:00:57 +08:00
|
|
|
_imageIterator = _images.begin();
|
2008-07-22 01:28:22 +08:00
|
|
|
_imageIteratorTime = _referenceTime;
|
2008-07-22 05:00:57 +08:00
|
|
|
setImageToChild(_imageIterator->get());
|
2008-07-22 01:28:22 +08:00
|
|
|
}
|
2008-07-21 17:46:53 +08:00
|
|
|
}
|
|
|
|
|
2008-07-22 01:28:22 +08:00
|
|
|
void ImageSequence::setImageToChild(const osg::Image* image)
|
|
|
|
{
|
2008-07-22 05:00:57 +08:00
|
|
|
// osg::notify(osg::NOTICE)<<"setImageToChild("<<image<<")"<<std::endl;
|
|
|
|
|
2008-07-22 01:28:22 +08:00
|
|
|
setImage(image->s(),image->t(),image->r(),
|
|
|
|
image->getInternalTextureFormat(),
|
|
|
|
image->getPixelFormat(),image->getDataType(),
|
|
|
|
const_cast<unsigned char*>(image->data()),
|
|
|
|
osg::Image::NO_DELETE,
|
|
|
|
image->getPacking());
|
|
|
|
}
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
void ImageSequence::update(osg::NodeVisitor* nv)
|
2008-07-21 17:46:53 +08:00
|
|
|
{
|
2008-07-21 18:57:06 +08:00
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex);
|
2008-07-22 05:00:57 +08:00
|
|
|
|
|
|
|
osg::NodeVisitor::ImageRequestHandler* irh = nv->getImageRequestHandler();
|
|
|
|
const osg::FrameStamp* fs = nv->getFrameStamp();
|
|
|
|
|
|
|
|
// osg::notify(osg::NOTICE)<<"ImageSequence::update("<<fs<<", "<<irh<<")"<<std::endl;
|
2008-07-22 01:28:22 +08:00
|
|
|
|
|
|
|
if (_referenceTime == DBL_MAX)
|
|
|
|
{
|
|
|
|
_referenceTime = fs->getSimulationTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_imageIteratorTime == DBL_MAX)
|
|
|
|
{
|
|
|
|
_imageIteratorTime = _referenceTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
double time = (fs->getSimulationTime() - _referenceTime)*_timeMultiplier;
|
2008-07-22 05:00:57 +08:00
|
|
|
double delta = _fileNames.empty() ?
|
|
|
|
_duration / _images.size() :
|
|
|
|
_duration / _fileNames.size();
|
|
|
|
|
|
|
|
Images::iterator previous_imageIterator = _imageIterator;
|
2008-07-22 01:28:22 +08:00
|
|
|
|
|
|
|
// osg::notify(osg::NOTICE)<<"time = "<<time<<std::endl;
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
if (_imageIterator!=_images.end())
|
2008-07-22 01:28:22 +08:00
|
|
|
{
|
|
|
|
// osg::notify(osg::NOTICE)<<" _imageIteratorTime = "<<_imageIteratorTime<<std::endl;
|
2008-07-22 05:00:57 +08:00
|
|
|
while(time > (_imageIteratorTime + delta))
|
2008-07-22 01:28:22 +08:00
|
|
|
{
|
2008-07-22 05:00:57 +08:00
|
|
|
_imageIteratorTime += delta;
|
2008-07-22 01:28:22 +08:00
|
|
|
// osg::notify(osg::NOTICE)<<" _imageIteratorTime = "<<_imageIteratorTime<<std::endl;
|
|
|
|
++_imageIterator;
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
if (_imageIterator ==_images.end())
|
2008-07-22 01:28:22 +08:00
|
|
|
{
|
|
|
|
// return iterator to begining of set.
|
2008-07-22 05:00:57 +08:00
|
|
|
_imageIterator = _images.begin();
|
2008-07-22 01:28:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
if (_imageIterator==_images.end())
|
2008-07-22 01:28:22 +08:00
|
|
|
{
|
2008-07-22 05:00:57 +08:00
|
|
|
_imageIterator = _images.begin();
|
2008-07-22 01:28:22 +08:00
|
|
|
}
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
if (_imageIterator!=_images.end() && previous_imageIterator != _imageIterator)
|
2008-07-22 01:28:22 +08:00
|
|
|
{
|
2008-07-22 05:00:57 +08:00
|
|
|
setImageToChild(_imageIterator->get());
|
2008-07-22 01:28:22 +08:00
|
|
|
}
|
2008-07-21 17:46:53 +08:00
|
|
|
}
|