00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054 #ifndef _OSGDVRISOSURFACEBASE_H_
00055 #define _OSGDVRISOSURFACEBASE_H_
00056 #ifdef __sgi
00057 #pragma once
00058 #endif
00059
00060
00061 #include <OSGConfig.h>
00062 #include <OSGSystemDef.h>
00063
00064 #include <OSGBaseTypes.h>
00065 #include <OSGRefPtr.h>
00066 #include <OSGCoredNodePtr.h>
00067
00068 #include <OSGAttachment.h>
00069
00070 #include <OSGReal32Fields.h>
00071 #include <OSGReal32Fields.h>
00072 #include <OSGReal32Fields.h>
00073 #include <OSGUInt32Fields.h>
00074 #include <OSGBoolFields.h>
00075
00076 #include <OSGDVRIsoSurfaceFields.h>
00077
00078 OSG_BEGIN_NAMESPACE
00079
00080 class DVRIsoSurface;
00081 class BinaryDataHandler;
00082
00084
00085 class OSG_SYSTEMLIB_DLLMAPPING DVRIsoSurfaceBase : public Attachment
00086 {
00087 private:
00088
00089 typedef Attachment Inherited;
00090
00091
00092 public:
00093
00094 typedef DVRIsoSurfacePtr Ptr;
00095
00096 enum
00097 {
00098 IsoValueFieldId = Inherited::NextFieldId,
00099 IsoThicknessFieldId = IsoValueFieldId + 1,
00100 IsoOpacityFieldId = IsoThicknessFieldId + 1,
00101 AlphaModeFieldId = IsoOpacityFieldId + 1,
00102 SpecularLightingFieldId = AlphaModeFieldId + 1,
00103 NextFieldId = SpecularLightingFieldId + 1
00104 };
00105
00106 static const OSG::BitVector IsoValueFieldMask;
00107 static const OSG::BitVector IsoThicknessFieldMask;
00108 static const OSG::BitVector IsoOpacityFieldMask;
00109 static const OSG::BitVector AlphaModeFieldMask;
00110 static const OSG::BitVector SpecularLightingFieldMask;
00111
00112
00113 static const OSG::BitVector MTInfluenceMask;
00114
00115
00119 static FieldContainerType &getClassType (void);
00120 static UInt32 getClassTypeId (void);
00121
00123
00127 virtual FieldContainerType &getType (void);
00128 virtual const FieldContainerType &getType (void) const;
00129
00130 virtual UInt32 getContainerSize(void) const;
00131
00133
00137 SFReal32 *getSFIsoValue (void);
00138 SFReal32 *getSFIsoThickness (void);
00139 SFReal32 *getSFIsoOpacity (void);
00140 SFUInt32 *getSFAlphaMode (void);
00141 SFBool *getSFSpecularLighting(void);
00142
00143 Real32 &getIsoValue (void);
00144 const Real32 &getIsoValue (void) const;
00145 Real32 &getIsoThickness (void);
00146 const Real32 &getIsoThickness (void) const;
00147 Real32 &getIsoOpacity (void);
00148 const Real32 &getIsoOpacity (void) const;
00149 UInt32 &getAlphaMode (void);
00150 const UInt32 &getAlphaMode (void) const;
00151 bool &getSpecularLighting(void);
00152 const bool &getSpecularLighting(void) const;
00153
00155
00159 void setIsoValue ( const Real32 &value );
00160 void setIsoThickness ( const Real32 &value );
00161 void setIsoOpacity ( const Real32 &value );
00162 void setAlphaMode ( const UInt32 &value );
00163 void setSpecularLighting( const bool &value );
00164
00166
00171
00175 virtual UInt32 getBinSize (const BitVector &whichField);
00176 virtual void copyToBin ( BinaryDataHandler &pMem,
00177 const BitVector &whichField);
00178 virtual void copyFromBin( BinaryDataHandler &pMem,
00179 const BitVector &whichField);
00180
00181
00183
00187 static DVRIsoSurfacePtr create (void);
00188 static DVRIsoSurfacePtr createEmpty (void);
00189
00192
00196 virtual FieldContainerPtr shallowCopy (void) const;
00197
00199
00200 protected:
00201
00202
00206 SFReal32 _sfIsoValue;
00207 SFReal32 _sfIsoThickness;
00208 SFReal32 _sfIsoOpacity;
00209 SFUInt32 _sfAlphaMode;
00210 SFBool _sfSpecularLighting;
00211
00213
00217 DVRIsoSurfaceBase(void);
00218 DVRIsoSurfaceBase(const DVRIsoSurfaceBase &source);
00219
00221
00225 virtual ~DVRIsoSurfaceBase(void);
00226
00228
00232 #if !defined(OSG_FIXED_MFIELDSYNC)
00233 void executeSyncImpl( DVRIsoSurfaceBase *pOther,
00234 const BitVector &whichField);
00235
00236 virtual void executeSync( FieldContainer &other,
00237 const BitVector &whichField);
00238 #else
00239 void executeSyncImpl( DVRIsoSurfaceBase *pOther,
00240 const BitVector &whichField,
00241 const SyncInfo &sInfo );
00242
00243 virtual void executeSync( FieldContainer &other,
00244 const BitVector &whichField,
00245 const SyncInfo &sInfo);
00246
00247 virtual void execBeginEdit (const BitVector &whichField,
00248 UInt32 uiAspect,
00249 UInt32 uiContainerSize);
00250
00251 void execBeginEditImpl (const BitVector &whichField,
00252 UInt32 uiAspect,
00253 UInt32 uiContainerSize);
00254
00255 virtual void onDestroyAspect(UInt32 uiId, UInt32 uiAspect);
00256 #endif
00257
00259
00260 private:
00261
00262 friend class FieldContainer;
00263
00264 static FieldDescription *_desc[];
00265 static FieldContainerType _type;
00266
00267
00268
00269 void operator =(const DVRIsoSurfaceBase &source);
00270 };
00271
00272
00273
00274
00275
00276
00277 typedef DVRIsoSurfaceBase *DVRIsoSurfaceBaseP;
00278
00279 typedef osgIF<DVRIsoSurfaceBase::isNodeCore,
00280 CoredNodePtr<DVRIsoSurface>,
00281 FieldContainer::attempt_to_create_CoredNodePtr_on_non_NodeCore_FC
00282 >::_IRet DVRIsoSurfaceNodePtr;
00283
00284 typedef RefPtr<DVRIsoSurfacePtr> DVRIsoSurfaceRefPtr;
00285
00286 OSG_END_NAMESPACE
00287
00288 #define OSGDVRISOSURFACEBASE_HEADER_CVSID "@(#)$Id: FCBaseTemplate_h.h,v 1.40 2005/07/20 00:10:14 vossg Exp $"
00289
00290 #endif