1 /*---------------------------------------------------------------------------*\
5 * Copyright (C) 2000-2013 by the OpenSG Forum *
9 * contact: dirk@opensg.org, gerrit.voss@vossg.org, carsten_neumann@gmx.net *
11 \*---------------------------------------------------------------------------*/
12 /*---------------------------------------------------------------------------*\
15 * This library is free software; you can redistribute it and/or modify it *
16 * under the terms of the GNU Library General Public License as published *
17 * by the Free Software Foundation, version 2. *
19 * This library is distributed in the hope that it will be useful, but *
20 * WITHOUT ANY WARRANTY; without even the implied warranty of *
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
22 * Library General Public License for more details. *
24 * You should have received a copy of the GNU Library General Public *
25 * License along with this library; if not, write to the Free Software *
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
28 \*---------------------------------------------------------------------------*/
29 /*---------------------------------------------------------------------------*\
37 \*---------------------------------------------------------------------------*/
39 /*****************************************************************************\
40 *****************************************************************************
42 ** This file is automatically generated. **
44 ** Any changes made to this file WILL be lost when it is **
45 ** regenerated, which can become necessary at any time. **
47 ** Do not change this file, changes should be done in the derived **
50 *****************************************************************************
51 \*****************************************************************************/
54 #ifndef _OSGMATERIALBASE_H_
55 #define _OSGMATERIALBASE_H_
61 #include "OSGConfig.h"
62 #include "OSGSystemDef.h"
64 //#include "OSGBaseTypes.h"
66 #include "OSGAttachment.h" // Parent
68 #include "OSGSysFields.h" // SortKey type
70 #include "OSGMaterialFields.h"
77 //! \brief Material Base Class.
79 class OSG_SYSTEM_DLLMAPPING MaterialBase
: public Attachment
83 typedef Attachment Inherited
;
84 typedef Attachment ParentContainer
;
86 typedef Inherited::TypeObject TypeObject
;
87 typedef TypeObject::InitPhase InitPhase
;
89 OSG_GEN_INTERNALPTR(Material
);
91 /*========================== PUBLIC =================================*/
97 SortKeyFieldId
= Inherited::NextFieldId
,
98 TransparencyModeFieldId
= SortKeyFieldId
+ 1,
99 NextFieldId
= TransparencyModeFieldId
+ 1
102 static const OSG::BitVector SortKeyFieldMask
=
103 (TypeTraits
<BitVector
>::One
<< SortKeyFieldId
);
104 static const OSG::BitVector TransparencyModeFieldMask
=
105 (TypeTraits
<BitVector
>::One
<< TransparencyModeFieldId
);
106 static const OSG::BitVector NextFieldMask
=
107 (TypeTraits
<BitVector
>::One
<< NextFieldId
);
109 typedef SFInt32 SFSortKeyType
;
110 typedef SFInt32 SFTransparencyModeType
;
112 /*---------------------------------------------------------------------*/
113 /*! \name Class Get */
116 static FieldContainerType
&getClassType (void);
117 static UInt32
getClassTypeId (void);
118 static UInt16
getClassGroupId(void);
121 /*---------------------------------------------------------------------*/
122 /*! \name FieldContainer Get */
125 virtual FieldContainerType
&getType (void);
126 virtual const FieldContainerType
&getType (void) const;
128 virtual UInt32
getContainerSize(void) const;
131 /*---------------------------------------------------------------------*/
132 /*! \name Field Get */
136 SFInt32
*editSFSortKey (void);
137 const SFInt32
*getSFSortKey (void) const;
139 SFInt32
*editSFTransparencyMode(void);
140 const SFInt32
*getSFTransparencyMode (void) const;
143 Int32
&editSortKey (void);
144 Int32
getSortKey (void) const;
146 Int32
&editTransparencyMode(void);
147 Int32
getTransparencyMode (void) const;
150 /*---------------------------------------------------------------------*/
151 /*! \name Field Set */
154 void setSortKey (const Int32 value
);
155 void setTransparencyMode(const Int32 value
);
158 /*---------------------------------------------------------------------*/
159 /*! \name Ptr MField Set */
163 /*---------------------------------------------------------------------*/
164 /*! \name Binary Access */
167 virtual SizeT
getBinSize (ConstFieldMaskArg whichField
);
168 virtual void copyToBin (BinaryDataHandler
&pMem
,
169 ConstFieldMaskArg whichField
);
170 virtual void copyFromBin(BinaryDataHandler
&pMem
,
171 ConstFieldMaskArg whichField
);
175 /*========================= PROTECTED ===============================*/
179 static TypeObject _type
;
181 static void classDescInserter(TypeObject
&oType
);
182 static const Char8
*getClassname (void );
184 /*---------------------------------------------------------------------*/
189 SFInt32 _sfTransparencyMode
;
192 /*---------------------------------------------------------------------*/
193 /*! \name Constructors */
197 MaterialBase(const MaterialBase
&source
);
200 /*---------------------------------------------------------------------*/
201 /*! \name Destructors */
204 virtual ~MaterialBase(void);
207 /*---------------------------------------------------------------------*/
208 /*! \name onCreate */
213 /*---------------------------------------------------------------------*/
214 /*! \name Generic Field Access */
217 GetFieldHandlePtr
getHandleSortKey (void) const;
218 EditFieldHandlePtr
editHandleSortKey (void);
219 GetFieldHandlePtr
getHandleTransparencyMode (void) const;
220 EditFieldHandlePtr
editHandleTransparencyMode(void);
223 /*---------------------------------------------------------------------*/
227 #ifdef OSG_MT_CPTR_ASPECT
228 virtual void execSyncV( FieldContainer
&oFrom
,
229 ConstFieldMaskArg whichField
,
230 AspectOffsetStore
&oOffsets
,
231 ConstFieldMaskArg syncMode
,
232 const UInt32 uiSyncInfo
);
234 void execSync ( MaterialBase
*pFrom
,
235 ConstFieldMaskArg whichField
,
236 AspectOffsetStore
&oOffsets
,
237 ConstFieldMaskArg syncMode
,
238 const UInt32 uiSyncInfo
);
242 /*---------------------------------------------------------------------*/
247 /*---------------------------------------------------------------------*/
248 /*! \name Aspect Create */
252 /*---------------------------------------------------------------------*/
256 /*---------------------------------------------------------------------*/
260 virtual void resolveLinks(void);
263 /*========================== PRIVATE ================================*/
266 /*---------------------------------------------------------------------*/
268 // prohibit default functions (move to 'public' if you need one)
269 void operator =(const MaterialBase
&source
);
272 typedef MaterialBase
*MaterialBaseP
;
276 #endif /* _OSGMATERIALBASE_H_ */