Added a bunch of files synched with 0.8.42
This commit is contained in:
94
src/osgPlugins/osg/Drawable.cpp
Normal file
94
src/osgPlugins/osg/Drawable.cpp
Normal file
@@ -0,0 +1,94 @@
|
||||
#include "osg/Drawable"
|
||||
|
||||
#include "osgDB/Registry"
|
||||
#include "osgDB/Input"
|
||||
#include "osgDB/Output"
|
||||
|
||||
using namespace osg;
|
||||
using namespace osgDB;
|
||||
|
||||
// forward declare functions to use later.
|
||||
bool Drawable_readLocalData(Object& obj, Input& fr);
|
||||
bool Drawable_writeLocalData(const Object& obj, Output& fw);
|
||||
|
||||
// register the read and write functions with the osgDB::Registry.
|
||||
RegisterDotOsgWrapperProxy g_DrawableFuncProxy
|
||||
(
|
||||
/*new osg::Drawable*/NULL,
|
||||
"Drawable",
|
||||
"Object Drawable",
|
||||
&Drawable_readLocalData,
|
||||
&Drawable_writeLocalData
|
||||
);
|
||||
|
||||
bool Drawable_readLocalData(Object& obj, Input& fr)
|
||||
{
|
||||
bool iteratorAdvanced = false;
|
||||
|
||||
Drawable& drawable = static_cast<Drawable&>(obj);
|
||||
|
||||
static ref_ptr<StateSet> s_drawstate = new osg::StateSet;
|
||||
if (StateSet* readState = static_cast<StateSet*>(fr.readObjectOfType(*s_drawstate)))
|
||||
{
|
||||
drawable.setStateSet(readState);
|
||||
iteratorAdvanced = true;
|
||||
}
|
||||
|
||||
if (fr[0].matchWord("supportsDisplayList"))
|
||||
{
|
||||
if (fr[1].matchWord("TRUE"))
|
||||
{
|
||||
drawable.setSupportsDisplayList(true);
|
||||
fr+=2;
|
||||
iteratorAdvanced = true;
|
||||
}
|
||||
else if (fr[1].matchWord("FALSE"))
|
||||
{
|
||||
drawable.setSupportsDisplayList(false);
|
||||
fr+=2;
|
||||
iteratorAdvanced = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (fr[0].matchWord("useDisplayList"))
|
||||
{
|
||||
if (fr[1].matchWord("TRUE"))
|
||||
{
|
||||
drawable.setUseDisplayList(true);
|
||||
fr+=2;
|
||||
iteratorAdvanced = true;
|
||||
}
|
||||
else if (fr[1].matchWord("FALSE"))
|
||||
{
|
||||
drawable.setUseDisplayList(false);
|
||||
fr+=2;
|
||||
iteratorAdvanced = true;
|
||||
}
|
||||
}
|
||||
|
||||
return iteratorAdvanced;
|
||||
}
|
||||
|
||||
|
||||
bool Drawable_writeLocalData(const Object& obj, Output& fw)
|
||||
{
|
||||
const Drawable& drawable = static_cast<const Drawable&>(obj);
|
||||
|
||||
if (drawable.getStateSet())
|
||||
{
|
||||
fw.writeObject(*drawable.getStateSet());
|
||||
}
|
||||
|
||||
if (!drawable.getSupportsDisplayList())
|
||||
{
|
||||
fw.indent()<<"supportsDisplayList ";
|
||||
if (drawable.getSupportsDisplayList()) fw << "TRUE" <<endl;
|
||||
else fw << "FALSE" <<endl;
|
||||
}
|
||||
|
||||
fw.indent()<<"useDisplayList ";
|
||||
if (drawable.getUseDisplayList()) fw << "TRUE" <<endl;
|
||||
else fw << "FALSE" <<endl;
|
||||
|
||||
return true;
|
||||
}
|
||||
Reference in New Issue
Block a user