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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSG_IMAGESEQUENCE
|
|
|
|
#define OSG_IMAGESEQUENCE 1
|
|
|
|
|
|
|
|
#include <OpenThreads/Mutex>
|
|
|
|
#include <osg/ImageStream>
|
2008-07-22 05:00:57 +08:00
|
|
|
#include <osg/StateAttribute>
|
2008-07-21 17:46:53 +08:00
|
|
|
|
2008-07-21 18:57:06 +08:00
|
|
|
#include <list>
|
2008-07-21 17:46:53 +08:00
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Image Buffer class.
|
|
|
|
*/
|
|
|
|
class OSG_EXPORT ImageSequence : public ImageStream
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ImageSequence();
|
|
|
|
|
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy. */
|
2008-07-22 05:00:57 +08:00
|
|
|
ImageSequence(const ImageSequence& ImageSequence, const CopyOp& copyop=CopyOp::SHALLOW_COPY);
|
2008-07-21 17:46:53 +08:00
|
|
|
|
|
|
|
virtual Object* cloneType() const { return new ImageSequence(); }
|
|
|
|
virtual Object* clone(const CopyOp& copyop) const { return new ImageSequence(*this,copyop); }
|
|
|
|
virtual bool isSameKindAs(const Object* obj) const { return dynamic_cast<const ImageSequence*>(obj)!=0; }
|
|
|
|
virtual const char* libraryName() const { return "osg"; }
|
|
|
|
virtual const char* className() const { return "ImageSequence"; }
|
|
|
|
|
|
|
|
/** Return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs. */
|
|
|
|
virtual int compare(const Image& rhs) const;
|
|
|
|
|
|
|
|
virtual void setReferenceTime(double t) { _referenceTime = t; }
|
|
|
|
virtual double getReferenceTime() const { return _referenceTime; }
|
|
|
|
|
|
|
|
virtual void setTimeMultiplier(double tm) { _timeMultiplier = tm; }
|
|
|
|
virtual double getTimeMultiplier() const { return _timeMultiplier; }
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
typedef std::list< osg::ref_ptr<osg::Image> > Images;
|
|
|
|
typedef std::list< std::string > FileNames;
|
2008-07-21 17:46:53 +08:00
|
|
|
|
2008-07-23 00:44:49 +08:00
|
|
|
void setDuration(double duration);
|
2008-07-22 05:00:57 +08:00
|
|
|
double getDuration() const { return _duration; }
|
2008-07-23 04:20:16 +08:00
|
|
|
|
|
|
|
void setPreLoadTime(double preLoadTime) { _preLoadTime = preLoadTime; }
|
|
|
|
double getPreLoadTime() const { return _preLoadTime; }
|
2008-07-21 18:57:06 +08:00
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
void setPruneOldImages(bool prune) { _pruneOldImages = prune; }
|
|
|
|
bool getPruneOldImages() const { return _pruneOldImages; }
|
2008-07-21 17:46:53 +08:00
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
void addImageFile(const std::string& fileName);
|
2008-07-22 20:28:46 +08:00
|
|
|
|
|
|
|
FileNames& getFileNames() { return _fileNames; }
|
|
|
|
const FileNames& getFileNames() const { return _fileNames; }
|
2008-07-21 17:46:53 +08:00
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
void addImage(osg::Image* image);
|
2008-07-22 20:28:46 +08:00
|
|
|
|
|
|
|
Images& getImages() { return _images; }
|
|
|
|
const Images& getImages() const { return _images; }
|
|
|
|
|
2008-07-21 17:46:53 +08:00
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
virtual void update(NodeVisitor* nv);
|
|
|
|
|
|
|
|
struct OSG_EXPORT UpdateCallback : public osg::StateAttribute::Callback
|
|
|
|
{
|
|
|
|
virtual void operator () (osg::StateAttribute* attr, osg::NodeVisitor* nv);
|
|
|
|
};
|
2008-07-21 17:46:53 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual ~ImageSequence() {}
|
|
|
|
|
2008-07-22 01:28:22 +08:00
|
|
|
void setImageToChild(const osg::Image* image);
|
2008-07-23 00:44:49 +08:00
|
|
|
|
|
|
|
void computeTimePerImage();
|
2008-07-22 01:28:22 +08:00
|
|
|
|
|
|
|
double _referenceTime;
|
|
|
|
double _timeMultiplier;
|
2008-07-23 04:20:16 +08:00
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
double _duration;
|
2008-07-23 04:20:16 +08:00
|
|
|
double _preLoadTime;
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
bool _pruneOldImages;
|
2008-07-23 00:44:49 +08:00
|
|
|
|
|
|
|
double _timePerImage;
|
2008-07-23 04:20:16 +08:00
|
|
|
|
|
|
|
OpenThreads::Mutex _mutex;
|
|
|
|
FileNames _fileNames;
|
|
|
|
FileNames::iterator _fileNamesIterator;
|
|
|
|
double _fileNamesIteratorTime;
|
|
|
|
|
2008-07-22 05:00:57 +08:00
|
|
|
double _imageHeadTime;
|
|
|
|
Images _images;
|
|
|
|
Images::iterator _imageIterator;
|
2008-07-22 01:28:22 +08:00
|
|
|
double _imageIteratorTime;
|
2008-07-25 21:45:07 +08:00
|
|
|
|
|
|
|
typedef std::pair< std::string, osg::ref_ptr<osg::Image> > FileNameImagePair;
|
|
|
|
typedef std::list< FileNameImagePair > FileNameImageList;
|
|
|
|
|
|
|
|
FileNameImageList _filesRequested;
|
2008-07-24 03:04:46 +08:00
|
|
|
|
2008-07-21 17:46:53 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|