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
|
|
|
|
2002-01-29 20:55:23 +08:00
|
|
|
#ifndef OSGDB_WRITEFILE
|
|
|
|
#define OSGDB_WRITEFILE 1
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
#include <osg/Image>
|
2003-10-29 19:11:17 +08:00
|
|
|
#include <osg/Shape>
|
2001-09-20 05:08:56 +08:00
|
|
|
#include <osg/Node>
|
|
|
|
|
|
|
|
#include <osgDB/Export>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace osgDB {
|
|
|
|
|
|
|
|
/** Write an osg::Object to file.
|
2001-09-28 20:36:40 +08:00
|
|
|
* Return true on success,
|
2001-09-20 05:08:56 +08:00
|
|
|
* return false on failure.
|
|
|
|
* The osgDB::Registry is used to load the appropriate ReaderWriter plugin
|
|
|
|
* for the filename extension, and this plugin then handles the request
|
|
|
|
* to write the specified file.*/
|
|
|
|
|
2002-12-05 20:43:08 +08:00
|
|
|
extern OSGDB_EXPORT bool writeObjectFile(const osg::Object& object, const std::string& filename);
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
/** Write an osg::Image to file.
|
2001-09-28 20:36:40 +08:00
|
|
|
* Return true on success,
|
2001-09-20 05:08:56 +08:00
|
|
|
* return false on failure.
|
|
|
|
* The osgDB::Registry is used to load the appropriate ReaderWriter plugin
|
|
|
|
* for the filename extension, and this plugin then handles the request
|
|
|
|
* to write the specified file.*/
|
2002-12-05 20:43:08 +08:00
|
|
|
extern OSGDB_EXPORT bool writeImageFile(const osg::Image& image, const std::string& filename);
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2003-10-29 19:11:17 +08:00
|
|
|
/** Write an osg::HeightField to file.
|
|
|
|
* Return true on success,
|
|
|
|
* return false on failure.
|
|
|
|
* The osgDB::Registry is used to load the appropriate ReaderWriter plugin
|
|
|
|
* for the filename extension, and this plugin then handles the request
|
|
|
|
* to write the specified file.*/
|
|
|
|
extern OSGDB_EXPORT bool writeHeightFieldFile(const osg::HeightField& hf, const std::string& filename);
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
/** Write an osg::Node to file.
|
2001-09-28 20:36:40 +08:00
|
|
|
* Return true on success,
|
2001-09-20 05:08:56 +08:00
|
|
|
* return false on failure.
|
|
|
|
* The osgDB::Registry is used to load the appropriate ReaderWriter plugin
|
|
|
|
* for the filename extension, and this plugin then handles the request
|
|
|
|
* to write the specified file.*/
|
2002-12-05 20:43:08 +08:00
|
|
|
extern OSGDB_EXPORT bool writeNodeFile(const osg::Node& node, const std::string& filename);
|
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
|