Files
OpenSceneGraph/src/osgPlugins/osg/ClipNode.cpp
2008-12-19 15:29:59 +00:00

80 lines
1.9 KiB
C++

#include "osg/ClipNode"
#include "osgDB/Registry"
#include "osgDB/Input"
#include "osgDB/Output"
using namespace osg;
using namespace osgDB;
// forward declare functions to use later.
bool ClipNode_readLocalData(Object& obj, Input& fr);
bool ClipNode_writeLocalData(const Object& obj, Output& fw);
// register the read and write functions with the osgDB::Registry.
REGISTER_DOTOSGWRAPPER(ClipNode)
(
new osg::ClipNode,
"ClipNode",
"Object Node ClipNode Group",
&ClipNode_readLocalData,
&ClipNode_writeLocalData
);
bool ClipNode_readLocalData(Object& obj, Input& fr)
{
bool iteratorAdvanced = false;
ClipNode& clipnode = static_cast<ClipNode&>(obj);
if (fr[0].matchWord("referenceFrame"))
{
if (fr[1].matchWord("ABSOLUTE"))
{
clipnode.setReferenceFrame(ClipNode::ABSOLUTE_RF);
fr += 2;
iteratorAdvanced = true;
}
if (fr[1].matchWord("RELATIVE"))
{
clipnode.setReferenceFrame(ClipNode::RELATIVE_RF);
fr += 2;
iteratorAdvanced = true;
}
}
osg::ref_ptr<StateAttribute> sa=0;
while((sa=fr.readStateAttribute())!=0)
{
ClipPlane* clipplane = dynamic_cast<ClipPlane*>(sa.get());
if (clipplane) clipnode.addClipPlane(clipplane);
iteratorAdvanced = true;
}
return iteratorAdvanced;
}
bool ClipNode_writeLocalData(const Object& obj, Output& fw)
{
const ClipNode& clipnode = static_cast<const ClipNode&>(obj);
fw.indent() << "referenceFrame ";
switch (clipnode.getReferenceFrame())
{
case ClipNode::ABSOLUTE_RF:
fw << "ABSOLUTE\n";
break;
case ClipNode::RELATIVE_RF:
default:
fw << "RELATIVE\n";
};
for(unsigned int i=0;i<clipnode.getNumClipPlanes();++i)
{
fw.writeObject(*clipnode.getClipPlane(i));
}
return true;
}