OpenSceneGraph/examples/osgphotoalbum/ImageReaderWriter.h

89 lines
3.0 KiB
C
Raw Normal View History

2006-07-18 23:21:48 +08:00
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
*
* This application is open source and may be redistributed and/or modified under
* the terms of the GNU Public License (GPL) version 1.0 or
* (at your option) any later version.
*
* 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 IMAGEREADERWRITER_H
#define IMAGEREADERWRITER_H
#include <osgDB/ReadFile>
#include <osgDB/WriteFile>
#include <osgDB/ImageOptions>
#include <OpenThreads/ScopedLock>
#include <osgDB/ReentrantMutex>
#include "PhotoArchive.h"
#define SERIALIZER() OpenThreads::ScopedLock<osgDB::ReentrantMutex> lock(_serializerMutex)
class ImageReaderWriter : public osgDB::ReaderWriter
{
public:
ImageReaderWriter();
2004-10-26 18:31:52 +08:00
virtual const char* className() const { return "ImageReader"; }
2003-12-24 07:55:06 +08:00
void addPhotoArchive(PhotoArchive* archive) { _photoArchiveList.push_back(archive); }
std::string insertReference(const std::string& fileName, unsigned int res, float width, float height, bool backPage)
{
SERIALIZER();
2004-11-24 07:45:41 +08:00
return const_cast<ImageReaderWriter*>(this)->local_insertReference(fileName, res, width, height, backPage);
}
virtual ReadResult readNode(const std::string& fileName, const Options* options) const
{
SERIALIZER();
2004-11-24 07:45:41 +08:00
return const_cast<ImageReaderWriter*>(this)->local_readNode(fileName, options);
}
protected:
std::string local_insertReference(const std::string& fileName, unsigned int res, float width, float height, bool backPage);
ReadResult local_readNode(const std::string& fileName, const Options*);
mutable osgDB::ReentrantMutex _serializerMutex;
struct DataReference
{
DataReference();
DataReference(const std::string& fileName, unsigned int res, float width, float height,bool backPage);
DataReference(const DataReference& rhs);
std::string _fileName;
unsigned int _resolutionX;
unsigned int _resolutionY;
osg::Vec3 _center;
osg::Vec3 _maximumWidth;
osg::Vec3 _maximumHeight;
unsigned int _numPointsAcross;
unsigned int _numPointsUp;
bool _backPage;
};
osg::Image* readImage_Archive(DataReference& dr, float& s,float& t);
osg::Image* readImage_DynamicSampling(DataReference& dr, float& s,float& t);
2003-12-24 07:55:06 +08:00
typedef std::map< std::string,DataReference > DataReferenceMap;
typedef std::vector< osg::ref_ptr<PhotoArchive> > PhotoArchiveList;
DataReferenceMap _dataReferences;
2003-12-24 07:55:06 +08:00
PhotoArchiveList _photoArchiveList;
};
#endif