2002-07-17 04:07:32 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2002 Robert Osfield
|
2001-10-04 23:12:57 +08:00
|
|
|
//Distributed under the terms of the GNU Library General Public License (LGPL)
|
|
|
|
//as published by the Free Software Foundation.
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
#ifndef OSGDB_OUTPUT
|
|
|
|
#define OSGDB_OUTPUT 1
|
|
|
|
|
|
|
|
#include <osg/Object>
|
|
|
|
|
|
|
|
#include <osgDB/Export>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
namespace osgDB {
|
|
|
|
|
|
|
|
/** ofstream wrapper class for adding support for indenting.
|
|
|
|
Used in output of .osg ASCII files to improve their readability.*/
|
2001-12-15 05:49:04 +08:00
|
|
|
class OSGDB_EXPORT Output : public std::ofstream
|
2001-09-20 05:08:56 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Output();
|
|
|
|
Output(const char* name);
|
|
|
|
|
|
|
|
virtual ~Output();
|
|
|
|
|
|
|
|
void open(const char *name);
|
2002-01-21 00:24:54 +08:00
|
|
|
|
|
|
|
// comment out temporarily to avoid compilation problems, RO Jan 2002.
|
|
|
|
// void open(const char *name,int mode);
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
Output& indent();
|
|
|
|
|
|
|
|
inline void setIndentStep(int step) { _indentStep = step; }
|
2002-09-02 20:31:35 +08:00
|
|
|
inline int getIndentStep() const { return _indentStep; }
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
inline void setIndent(int indent) { _indent = indent; }
|
2002-09-02 20:31:35 +08:00
|
|
|
inline int getIndent() const { return _indent; }
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
inline void setNumIndicesPerLine(int num) { _numIndicesPerLine = num; }
|
2002-09-02 20:31:35 +08:00
|
|
|
inline int getNumIndicesPerLine() const { return _numIndicesPerLine; }
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
void moveIn();
|
|
|
|
void moveOut();
|
|
|
|
|
|
|
|
virtual bool writeObject(const osg::Object& obj);
|
|
|
|
|
|
|
|
bool getUniqueIDForObject(const osg::Object* obj,std::string& uniqueID);
|
|
|
|
bool createUniqueIDForObject(const osg::Object* obj,std::string& uniqueID);
|
|
|
|
bool registerUniqueIDForObject(const osg::Object* obj,std::string& uniqueID);
|
|
|
|
|
|
|
|
enum PathNameHint
|
|
|
|
{
|
|
|
|
AS_IS,
|
|
|
|
FULL_PATH,
|
|
|
|
RELATIVE_PATH,
|
|
|
|
FILENAME_ONLY
|
|
|
|
};
|
|
|
|
|
|
|
|
inline void setPathNameHint(const PathNameHint pnh) { _pathNameHint = pnh; }
|
|
|
|
inline const PathNameHint getPathNameHint() const { return _pathNameHint; }
|
|
|
|
|
|
|
|
virtual const std::string getFileNameForOutput(const std::string& filename) const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// prevent copy construction and assignment.
|
2001-12-15 07:18:28 +08:00
|
|
|
Output(const Output&);
|
|
|
|
Output& operator = (const Output&);
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
virtual void init();
|
|
|
|
|
|
|
|
int _indent;
|
|
|
|
int _indentStep;
|
|
|
|
|
|
|
|
int _numIndicesPerLine;
|
|
|
|
|
|
|
|
typedef std::map<const osg::Object*,std::string> UniqueIDToLabelMapping;
|
|
|
|
UniqueIDToLabelMapping _objectToUniqueIDMap;
|
|
|
|
|
|
|
|
std::string _filename;
|
|
|
|
|
|
|
|
PathNameHint _pathNameHint;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
bool writeArrayBlock(Output& fw,T* start,T* finish)
|
|
|
|
{
|
2001-12-15 07:18:28 +08:00
|
|
|
fw.indent() << "{" << std::endl;
|
2001-09-20 05:08:56 +08:00
|
|
|
fw.moveIn();
|
|
|
|
int numIndicesThisLine = 0;
|
|
|
|
for(T* itr=start;itr!=finish;++itr)
|
|
|
|
{
|
|
|
|
if (numIndicesThisLine>=fw.getNumIndicesPerLine())
|
|
|
|
{
|
2001-12-15 07:18:28 +08:00
|
|
|
fw << std::endl;
|
2001-09-20 05:08:56 +08:00
|
|
|
numIndicesThisLine = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (numIndicesThisLine==0) fw.indent();
|
|
|
|
else fw << " ";
|
|
|
|
|
|
|
|
fw << *itr;
|
|
|
|
|
|
|
|
++numIndicesThisLine;
|
|
|
|
|
|
|
|
}
|
2001-12-15 07:18:28 +08:00
|
|
|
fw << std::endl;
|
2001-09-20 05:08:56 +08:00
|
|
|
fw.moveOut();
|
2001-12-15 07:18:28 +08:00
|
|
|
fw.indent() << "}" << std::endl;
|
2001-09-20 05:08:56 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
#endif // __SG_OUTPUT_H
|