Updated wrappers

This commit is contained in:
Robert Osfield 2007-08-12 13:30:00 +00:00
parent c2930e5ec1
commit 60a62b11df
2 changed files with 168 additions and 0 deletions

View File

@ -0,0 +1,142 @@
// ***************************************************************************
//
// Generated automatically by genwrapper.
// Please DO NOT EDIT this file!
//
// ***************************************************************************
#include <osgIntrospection/ReflectionMacros>
#include <osgIntrospection/TypedMethodInfo>
#include <osgIntrospection/StaticMethodInfo>
#include <osgIntrospection/Attributes>
#include <osg/CopyOp>
#include <osg/NodeVisitor>
#include <osg/Object>
#include <osg/Vec2>
#include <osgShadow/SoftShadowMap>
#include <osgUtil/CullVisitor>
// Must undefine IN and OUT macros defined in Windows headers
#ifdef IN
#undef IN
#endif
#ifdef OUT
#undef OUT
#endif
BEGIN_OBJECT_REFLECTOR(osgShadow::SoftShadowMap)
I_DeclaringFile("osgShadow/SoftShadowMap");
I_BaseType(osgShadow::ShadowTechnique);
I_Constructor0(____SoftShadowMap,
"",
"");
I_ConstructorWithDefaults2(IN, const osgShadow::SoftShadowMap &, es, , IN, const osg::CopyOp &, copyop, osg::CopyOp::SHALLOW_COPY,
____SoftShadowMap__C5_SoftShadowMap_R1__C5_osg_CopyOp_R1,
"",
"");
I_Method0(osg::Object *, cloneType,
Properties::VIRTUAL,
__osg_Object_P1__cloneType,
"Clone the type of an object, with Object* return type. ",
"Must be defined by derived classes. ");
I_Method1(osg::Object *, clone, IN, const osg::CopyOp &, copyop,
Properties::VIRTUAL,
__osg_Object_P1__clone__C5_osg_CopyOp_R1,
"Clone an object, with Object* return type. ",
"Must be defined by derived classes. ");
I_Method1(bool, isSameKindAs, IN, const osg::Object *, obj,
Properties::VIRTUAL,
__bool__isSameKindAs__C5_osg_Object_P1,
"",
"");
I_Method0(const char *, libraryName,
Properties::VIRTUAL,
__C5_char_P1__libraryName,
"return the name of the object's library. ",
"Must be defined by derived classes. The OpenSceneGraph convention is that the namespace of a library is the same as the library name. ");
I_Method0(const char *, className,
Properties::VIRTUAL,
__C5_char_P1__className,
"return the name of the object's class type. ",
"Must be defined by derived classes. ");
I_Method1(void, setTextureUnit, IN, unsigned int, unit,
Properties::NON_VIRTUAL,
__void__setTextureUnit__unsigned_int,
"Set the texture unit that the shadow texture will be applied on. ",
"");
I_Method0(unsigned int, getTextureUnit,
Properties::NON_VIRTUAL,
__unsigned_int__getTextureUnit,
"Get the texture unit that the shadow texture will be applied on. ",
"");
I_Method1(void, setAmbientBias, IN, const osg::Vec2 &, ambientBias,
Properties::NON_VIRTUAL,
__void__setAmbientBias__C5_osg_Vec2_R1,
"Set the values for the ambient bias the shader will use. ",
"");
I_Method1(void, setSoftnessWidth, IN, const float, softnesswidth,
Properties::NON_VIRTUAL,
__void__setSoftnessWidth__C5_float,
"Set the values for width of the soft penumbra the shader will use. ",
"Zero is for hard shadow (no penumbra). 0.01 is already very soft penumbra. Default is 0.005. ");
I_Method1(void, setJitteringScale, IN, const float, jitteringscale,
Properties::NON_VIRTUAL,
__void__setJitteringScale__C5_float,
"Set the values for jittering scale the shader will use. ",
"Zero is no jittering (i.e. see the banding in penumbra) High values (>64) cause 'pixelization' of the penumbra. Usually but not necessarily power of two number. Default is 32. ");
I_Method0(const osg::Vec2 &, getAmbientBias,
Properties::NON_VIRTUAL,
__C5_osg_Vec2_R1__getAmbientBias,
"Get the values that are used for the ambient bias in the shader. ",
"");
I_Method0(const float, getSoftnessWidth,
Properties::NON_VIRTUAL,
__C5_float__getSoftnessWidth,
"Get the value used for width of the soft penumbra in the shader. ",
"");
I_Method0(const float, getJitteringScale,
Properties::NON_VIRTUAL,
__C5_float__getJitteringScale,
"Get the value used for jittering scale in the shader. ",
"");
I_Method0(void, init,
Properties::VIRTUAL,
__void__init,
"initialize the ShadowedScene and local cached data structures. ",
"");
I_Method1(void, update, IN, osg::NodeVisitor &, nv,
Properties::VIRTUAL,
__void__update__osg_NodeVisitor_R1,
"run the update traversal of the ShadowedScene and update any loca chached data structures. ",
"");
I_Method1(void, cull, IN, osgUtil::CullVisitor &, cv,
Properties::VIRTUAL,
__void__cull__osgUtil_CullVisitor_R1,
"run the cull traversal of the ShadowedScene and set up the rendering for this ShadowTechnique. ",
"");
I_Method0(void, cleanSceneGraph,
Properties::VIRTUAL,
__void__cleanSceneGraph,
"Clean scene graph from any shadow technique specific nodes, state and drawables. ",
"");
I_ProtectedMethod1(void, initJittering, IN, osg::StateSet *, x,
Properties::NON_VIRTUAL,
Properties::NON_CONST,
__void__initJittering__osg_StateSet_P1,
"",
"");
I_SimpleProperty(const osg::Vec2 &, AmbientBias,
__C5_osg_Vec2_R1__getAmbientBias,
__void__setAmbientBias__C5_osg_Vec2_R1);
I_SimpleProperty(const float, JitteringScale,
__C5_float__getJitteringScale,
__void__setJitteringScale__C5_float);
I_SimpleProperty(const float, SoftnessWidth,
__C5_float__getSoftnessWidth,
__void__setSoftnessWidth__C5_float);
I_SimpleProperty(unsigned int, TextureUnit,
__unsigned_int__getTextureUnit,
__void__setTextureUnit__unsigned_int);
END_REFLECTOR

View File

@ -57,6 +57,26 @@ BEGIN_OBJECT_REFLECTOR(osgUtil::LineSegmentIntersector)
__Intersection__getFirstIntersection,
"",
"");
I_Method1(void, setStart, IN, const osg::Vec3d &, start,
Properties::NON_VIRTUAL,
__void__setStart__C5_osg_Vec3d_R1,
"",
"");
I_Method0(const osg::Vec3d &, getStart,
Properties::NON_VIRTUAL,
__C5_osg_Vec3d_R1__getStart,
"",
"");
I_Method1(void, setEnd, IN, const osg::Vec3d &, end,
Properties::NON_VIRTUAL,
__void__setEnd__C5_osg_Vec3d_R1,
"",
"");
I_Method0(const osg::Vec3d &, setEnd,
Properties::NON_VIRTUAL,
__C5_osg_Vec3d_R1__setEnd,
"",
"");
I_Method1(osgUtil::Intersector *, clone, IN, osgUtil::IntersectionVisitor &, iv,
Properties::VIRTUAL,
__Intersector_P1__clone__osgUtil_IntersectionVisitor_R1,
@ -99,12 +119,18 @@ BEGIN_OBJECT_REFLECTOR(osgUtil::LineSegmentIntersector)
__bool__intersectAndClip__osg_Vec3d_R1__osg_Vec3d_R1__C5_osg_BoundingBox_R1,
"",
"");
I_SimpleProperty(const osg::Vec3d &, End,
0,
__void__setEnd__C5_osg_Vec3d_R1);
I_SimpleProperty(osgUtil::LineSegmentIntersector::Intersection, FirstIntersection,
__Intersection__getFirstIntersection,
0);
I_SimpleProperty(osgUtil::LineSegmentIntersector::Intersections &, Intersections,
__Intersections_R1__getIntersections,
0);
I_SimpleProperty(const osg::Vec3d &, Start,
__C5_osg_Vec3d_R1__getStart,
__void__setStart__C5_osg_Vec3d_R1);
END_REFLECTOR
TYPE_NAME_ALIAS(std::vector< unsigned int >, osgUtil::LineSegmentIntersector::Intersection::IndexList)