2003-01-22 00:45:36 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 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.
|
|
|
|
*/
|
2001-10-04 23:12:57 +08:00
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
#ifndef OSGDB_READERWRITER
|
|
|
|
#define OSGDB_READERWRITER 1
|
|
|
|
|
|
|
|
#include <osg/Referenced>
|
|
|
|
#include <osg/Image>
|
|
|
|
#include <osg/Node>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace osgDB {
|
|
|
|
|
|
|
|
|
|
|
|
/** pure virtual base class for reading and writing of non native formats. */
|
|
|
|
class OSGDB_EXPORT ReaderWriter : public osg::Referenced
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~ReaderWriter() {}
|
|
|
|
virtual const char* className() = 0;
|
|
|
|
virtual bool acceptsExtension(const std::string& /*extension*/) { return false; }
|
|
|
|
|
2001-10-15 01:54:25 +08:00
|
|
|
class Options : public osg::Referenced
|
|
|
|
{
|
|
|
|
public:
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-10-15 01:54:25 +08:00
|
|
|
Options() {}
|
|
|
|
Options(const std::string& str):_str(str) {}
|
|
|
|
|
|
|
|
void setOptionString(const std::string& str) { _str = str; }
|
|
|
|
const std::string& getOptionString() const { return _str; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual ~Options() {}
|
|
|
|
|
|
|
|
std::string _str;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-10-30 22:20:37 +08:00
|
|
|
class ReadResult
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2001-11-14 22:09:07 +08:00
|
|
|
enum ReadStatus
|
2001-10-30 22:20:37 +08:00
|
|
|
{
|
|
|
|
FILE_NOT_HANDLED,
|
|
|
|
FILE_LOADED,
|
|
|
|
ERROR_IN_READING_FILE
|
|
|
|
};
|
|
|
|
|
2001-11-14 22:09:07 +08:00
|
|
|
ReadResult(ReadStatus status=FILE_NOT_HANDLED):_status(status) {}
|
2001-10-30 22:20:37 +08:00
|
|
|
ReadResult(const std::string& m):_status(ERROR_IN_READING_FILE),_message(m) {}
|
|
|
|
ReadResult(osg::Object* obj):_status(FILE_LOADED),_object(obj) {}
|
|
|
|
|
|
|
|
ReadResult(const ReadResult& rr):_status(rr._status),_message(rr._message),_object(rr._object) {}
|
|
|
|
ReadResult& operator = (const ReadResult& rr) { if (this==&rr) return *this; _status=rr._status; _message=rr._message;_object=rr._object; return *this; }
|
|
|
|
|
|
|
|
osg::Object* getObject() { return _object.get(); }
|
|
|
|
osg::Image* getImage() { return dynamic_cast<osg::Image*>(_object.get()); }
|
|
|
|
osg::Node* getNode() { return dynamic_cast<osg::Node*>(_object.get()); }
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
bool validObject() { return _object.valid(); }
|
|
|
|
bool validImage() { return getImage()!=0; }
|
|
|
|
bool validNode() { return getNode()!=0; }
|
2001-10-30 22:20:37 +08:00
|
|
|
|
2002-03-20 22:03:30 +08:00
|
|
|
osg::Object* takeObject() { osg::Object* obj = _object.get(); if (obj) { obj->ref(); _object=NULL; obj->unref_nodelete(); } return obj; }
|
|
|
|
osg::Image* takeImage() { osg::Image* image=dynamic_cast<osg::Image*>(_object.get()); if (image) { image->ref(); _object=NULL; image->unref_nodelete(); } return image; }
|
|
|
|
osg::Node* takeNode() { osg::Node* node=dynamic_cast<osg::Node*>(_object.get()); if (node) { node->ref(); _object=NULL; node->unref_nodelete(); } return node; }
|
2001-10-30 22:20:37 +08:00
|
|
|
|
|
|
|
const std::string& message() const { return _message; }
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
ReadStatus status() const { return _status; }
|
|
|
|
bool success() const { return _status==FILE_LOADED; }
|
|
|
|
bool error() const { return _status==ERROR_IN_READING_FILE; }
|
|
|
|
bool notHandled() const { return _status==FILE_NOT_HANDLED; }
|
2001-10-30 22:20:37 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2001-11-14 22:09:07 +08:00
|
|
|
ReadStatus _status;
|
2001-10-30 22:20:37 +08:00
|
|
|
std::string _message;
|
|
|
|
osg::ref_ptr<osg::Object> _object;
|
|
|
|
};
|
|
|
|
|
|
|
|
class WriteResult
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2001-11-14 22:09:07 +08:00
|
|
|
enum WriteStatus
|
2001-10-30 22:20:37 +08:00
|
|
|
{
|
|
|
|
FILE_NOT_HANDLED,
|
|
|
|
FILE_SAVED,
|
|
|
|
ERROR_IN_WRITING_FILE
|
|
|
|
};
|
|
|
|
|
2001-11-14 22:09:07 +08:00
|
|
|
WriteResult(WriteStatus status=FILE_NOT_HANDLED):_status(status) {}
|
2001-10-30 22:20:37 +08:00
|
|
|
WriteResult(const std::string& m):_status(ERROR_IN_WRITING_FILE),_message(m) {}
|
|
|
|
|
|
|
|
WriteResult(const WriteResult& rr):_status(rr._status),_message(rr._message) {}
|
|
|
|
WriteResult& operator = (const WriteResult& rr) { if (this==&rr) return *this; _status=rr._status; _message=rr._message; return *this; }
|
|
|
|
|
|
|
|
const std::string& message() const { return _message; }
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
WriteStatus status() const { return _status; }
|
|
|
|
bool success() const { return _status==FILE_SAVED; }
|
|
|
|
bool error() const { return _status==ERROR_IN_WRITING_FILE; }
|
|
|
|
bool notHandled() const { return _status==FILE_NOT_HANDLED; }
|
2001-10-30 22:20:37 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2001-11-14 22:09:07 +08:00
|
|
|
WriteStatus _status;
|
2001-10-30 22:20:37 +08:00
|
|
|
std::string _message;
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual ReadResult readObject(const std::string& /*fileName*/,const Options* =NULL) { return ReadResult(ReadResult::FILE_NOT_HANDLED); }
|
|
|
|
virtual ReadResult readImage(const std::string& /*fileName*/,const Options* =NULL) { return ReadResult(ReadResult::FILE_NOT_HANDLED); }
|
|
|
|
virtual ReadResult readNode(const std::string& /*fileName*/,const Options* =NULL) { return ReadResult(ReadResult::FILE_NOT_HANDLED); }
|
2001-10-15 01:54:25 +08:00
|
|
|
|
2001-10-30 22:20:37 +08:00
|
|
|
virtual WriteResult writeObject(const osg::Object& /*obj*/,const std::string& /*fileName*/,const Options* =NULL) {return WriteResult(WriteResult::FILE_NOT_HANDLED); }
|
|
|
|
virtual WriteResult writeImage(const osg::Image& /*image*/,const std::string& /*fileName*/,const Options* =NULL) {return WriteResult(WriteResult::FILE_NOT_HANDLED); }
|
|
|
|
virtual WriteResult writeNode(const osg::Node& /*node*/,const std::string& /*fileName*/,const Options* =NULL) { return WriteResult(WriteResult::FILE_NOT_HANDLED); }
|
2001-09-20 05:08:56 +08:00
|
|
|
};
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
#endif // OSG_READERWRITER
|