1 /*---------------------------------------------------------------------------*\
5 * Copyright (C) 2000-2006 by the OpenSG Forum *
9 * contact: dirk@opensg.org, gerrit.voss@vossg.org, jbehr@zgdv.de *
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 #ifndef _OSGLOGICOPCHUNK_H_
40 #define _OSGLOGICOPCHUNK_H_
45 #include "OSGLogicOpChunkBase.h"
49 /*! \brief LogicOpChunk class. See \ref
50 PageStateLogicOpChunk for a description.
51 \ingroup GrpStateOpenGLObj
52 \ingroup GrpLibOSGState
56 class OSG_STATE_DLLMAPPING LogicOpChunk
: public LogicOpChunkBase
58 /*========================== PUBLIC =================================*/
61 typedef LogicOpChunkBase Inherited
;
62 typedef LogicOpChunk Self
;
64 /*---------------------------------------------------------------------*/
65 /*! \name Chunk Class Access */
68 virtual const StateChunkClass
*getClass(void) const;
71 /*---------------------------------------------------------------------*/
72 /*! \name Static Chunk Class Access */
75 static UInt32
getStaticClassId(void);
76 static const StateChunkClass
* getStaticClass (void);
79 /*---------------------------------------------------------------------*/
83 virtual void changed(ConstFieldMaskArg whichField
,
88 /*---------------------------------------------------------------------*/
92 virtual void dump( UInt32 uiIndent
= 0,
93 const BitVector bvFlags
= 0) const;
96 /*---------------------------------------------------------------------*/
97 /*! \name State Commands */
100 virtual void activate (DrawEnv
*action
,
103 virtual void changeFrom(DrawEnv
*action
,
107 virtual void deactivate(DrawEnv
*action
,
111 /*---------------------------------------------------------------------*/
112 /*! \name Comparison */
115 virtual Real32
switchCost(StateChunk
*chunk
);
117 virtual bool operator < (const StateChunk
&other
) const;
119 virtual bool operator == (const StateChunk
&other
) const;
120 virtual bool operator != (const StateChunk
&other
) const;
122 /*========================= PROTECTED ===============================*/
125 // Variables should all be in LogicOpChunkBase.
127 /*---------------------------------------------------------------------*/
128 /*! \name Constructors */
132 LogicOpChunk(const LogicOpChunk
&source
);
135 /*---------------------------------------------------------------------*/
136 /*! \name Destructors */
139 virtual ~LogicOpChunk(void);
142 /*---------------------------------------------------------------------*/
146 static void initMethod(InitPhase ePhase
);
149 /*========================== PRIVATE ================================*/
153 friend class FieldContainer
;
154 friend class LogicOpChunkBase
;
156 // class. Used for indexing in State
157 static StateChunkClass _class
;
159 // prohibit default functions (move to 'public' if you need one)
160 void operator =(const LogicOpChunk
&source
);
163 typedef LogicOpChunk
*LogicOpChunkP
;
167 #include "OSGLogicOpChunkBase.inl"
168 #include "OSGLogicOpChunk.inl"
170 #endif /* _OSGLOGICOPCHUNK_H_ */