#include <OSGGraphicStatisticsForeground.h>

The different parameters for all the displays are spread over a lot of fields. Thus it is stringly advised to use the addElement and removeElement convenience functions to add and remove elements, to ensure consistency.
The _sfLineWidth, _sfBackgroundColor, _sfBackgroundEnabled and _sfBorderEnabled Fields control the parameters used for all displays.
Definition at line 61 of file OSGGraphicStatisticsForeground.h.
typedef GraphicStatisticsForegroundBase osg::GraphicStatisticsForeground::Inherited [private] |
Reimplemented from osg::GraphicStatisticsForegroundBase.
Definition at line 65 of file OSGGraphicStatisticsForeground.h.
typedef GraphicStatisticsForegroundPtr osg::GraphicStatisticsForegroundBase::Ptr [inherited] |
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 105 of file OSGGraphicStatisticsForegroundBase.h.
Definition at line 70 of file OSGGraphicStatisticsForeground.h.
00070 { 00071 OSG_ANALOG = 0, 00072 OSG_BAR = 1, 00073 OSG_CHART = 2, 00074 OSG_LINE_CHART = 3, 00075 OSG_TEXT = 4 00076 };
| OSG_OVERFLOW_RESIZE | |
| OSG_UNDERFLOW_RESIZE | |
| OSG_RECIPROC | |
| OSG_SMOOTH | |
| OSG_ENABLE_POINTS | |
| OSG_MAX_TEXT | |
| OSG_MIN_TEXT |
Definition at line 78 of file OSGGraphicStatisticsForeground.h.
00078 { 00079 OSG_OVERFLOW_RESIZE = 1, 00080 OSG_UNDERFLOW_RESIZE = 2, 00081 OSG_RECIPROC = 4, 00082 OSG_SMOOTH = 8, 00083 OSG_ENABLE_POINTS = 16, 00084 OSG_MAX_TEXT = 32, 00085 OSG_MIN_TEXT = 64 00086 };
Definition at line 88 of file OSGGraphicStatisticsForeground.h.
00088 { 00089 OSG_LEFT = 0, 00090 OSG_RIGHT = 1, 00091 OSG_CENTER = 2 00092 };
Definition at line 94 of file OSGGraphicStatisticsForeground.h.
00094 { 00095 OSG_BOTTOM = 0, 00096 OSG_MIDDLE = 1, 00097 OSG_TOP = 2 00098 };
anonymous enum [inherited] |
Definition at line 107 of file OSGGraphicStatisticsForegroundBase.h.
00108 { 00109 DisplayTypeFieldId = Inherited::NextFieldId, 00110 SizeFieldId = DisplayTypeFieldId + 1, 00111 PosFieldId = SizeFieldId + 1, 00112 ColorMaxFieldId = PosFieldId + 1, 00113 ColorMinFieldId = ColorMaxFieldId + 1, 00114 ColorCurrentFieldId = ColorMinFieldId + 1, 00115 MinValueFieldId = ColorCurrentFieldId + 1, 00116 MaxValueFieldId = MinValueFieldId + 1, 00117 FlagsFieldId = MaxValueFieldId + 1, 00118 HistorySizeFieldId = FlagsFieldId + 1, 00119 DescriptionFieldId = HistorySizeFieldId + 1, 00120 LineWidthFieldId = DescriptionFieldId + 1, 00121 BackgroundColorFieldId = LineWidthFieldId + 1, 00122 TextEnabledFieldId = BackgroundColorFieldId + 1, 00123 BackgroundEnabledFieldId = TextEnabledFieldId + 1, 00124 BorderEnabledFieldId = BackgroundEnabledFieldId + 1, 00125 NextFieldId = BorderEnabledFieldId + 1 00126 };
anonymous enum [inherited] |
Definition at line 93 of file OSGStatisticsForegroundBase.h.
00094 { 00095 ElementIDsFieldId = Inherited::NextFieldId, 00096 CollectorFieldId = ElementIDsFieldId + 1, 00097 NextFieldId = CollectorFieldId + 1 00098 };
anonymous enum [inherited] |
Definition at line 92 of file OSGForegroundBase.h.
00093 { 00094 ActiveFieldId = Inherited::NextFieldId, 00095 NextFieldId = ActiveFieldId + 1 00096 };
anonymous enum [inherited] |
Definition at line 78 of file OSGAttachmentContainerImpl.h.
00079 { 00080 AttachmentsFieldId = Inherited::NextFieldId, 00081 NextFieldId = AttachmentsFieldId + 1 00082 };
anonymous enum [inherited] |
| GraphicStatisticsForeground::GraphicStatisticsForeground | ( | void | ) | [protected] |
| GraphicStatisticsForeground::GraphicStatisticsForeground | ( | const GraphicStatisticsForeground & | source | ) | [protected] |
Definition at line 85 of file OSGGraphicStatisticsForeground.cpp.
References _face, _texchunk, osg::addRefCP(), osg::addRefP(), and osg::NullFC.
00085 : 00086 Inherited(source), _face(source._face), _texchunk(source._texchunk) 00087 { 00088 if (_face != 0) 00089 addRefP(_face); 00090 if (_texchunk != NullFC) 00091 addRefCP(_texchunk); 00092 }
| GraphicStatisticsForeground::~GraphicStatisticsForeground | ( | void | ) | [protected, virtual] |
Definition at line 95 of file OSGGraphicStatisticsForeground.cpp.
References _face, _texchunk, osg::NullFC, osg::subRefCP(), and osg::subRefP().
00096 { 00097 if (_face != 0) 00098 subRefP(_face); 00099 if (_texchunk != NullFC) 00100 subRefCP(_texchunk); 00101 }
Reimplemented from osg::StatisticsForeground.
Definition at line 109 of file OSGGraphicStatisticsForeground.cpp.
References _history, _historyID, osg::GraphicStatisticsForegroundBase::getHistorySize(), osg::GraphicStatisticsForegroundBase::getMaxValue(), osg::GraphicStatisticsForegroundBase::getMinValue(), osg::GraphicStatisticsForegroundBase::HistorySizeFieldMask, and osg::MField< FieldTypeT, fieldNameSpace >::size().
00110 { 00111 UInt32 i, n = getHistorySize().size(); 00112 00113 /* Save the data */ 00114 if(whichField & HistorySizeFieldMask) 00115 { 00116 _historyID.resize(n, 0); 00117 _history.resize(n); 00118 for(i = 0; i < n; i++) 00119 { 00120 if(_history[i].size() == 0) 00121 { 00122 _history[i].resize(getHistorySize()[i], 00123 (getMaxValue()[i] - getMinValue()[i]) / 2.0f); 00124 } 00125 } 00126 } 00127 }
| void GraphicStatisticsForeground::dump | ( | UInt32 | uiIndent = 0, |
|
| const BitVector | bvFlags = 0 | |||
| ) | const [virtual] |
Reimplemented from osg::StatisticsForeground.
Definition at line 130 of file OSGGraphicStatisticsForeground.cpp.
References SLOG.
00131 { 00132 SLOG << "Dump GraphicStatisticsForeground NI" << std::endl; 00133 }
| void GraphicStatisticsForeground::draw | ( | DrawActionBase * | action, | |
| Viewport * | port | |||
| ) | [virtual] |
Implements osg::StatisticsForeground.
Definition at line 136 of file OSGGraphicStatisticsForeground.cpp.
References _face, calcPosAndSize(), drawAnalog(), drawBar(), drawChart(), drawLineChart(), drawText(), osg::ForegroundBase::getActive(), osg::StatisticsForegroundBase::getCollector(), osg::GraphicStatisticsForegroundBase::getDisplayType(), osg::StatCollector::getElem(), osg::StatisticsForegroundBase::getElementIDs(), osg::GraphicStatisticsForegroundBase::getLineWidth(), osg::Viewport::getPixelHeight(), osg::Viewport::getPixelWidth(), initText(), OSG_ANALOG, OSG_BAR, OSG_CHART, OSG_LINE_CHART, OSG_TEXT, and osg::MField< FieldTypeT, fieldNameSpace >::size().
00137 { 00138 if (getActive() == false) 00139 return; 00140 00141 // Check the height and width of the window 00142 if(port->getPixelWidth() < 1 || port->getPixelHeight() < 1) 00143 { 00144 return; 00145 } 00146 00147 // initialize the text texture 00148 if(_face == 0) 00149 { 00150 initText(); 00151 } 00152 00153 // Save the current OpenGL state 00154 // vvvvvvvvvvvvvvvvvvvvvvvvvvvvvv 00155 glPushAttrib(GL_ALL_ATTRIB_BITS); 00156 00157 glMatrixMode(GL_MODELVIEW); 00158 glPushMatrix(); 00159 glLoadIdentity(); 00160 00161 glMatrixMode(GL_PROJECTION); 00162 glPushMatrix(); 00163 glLoadIdentity(); 00164 00165 // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 00166 // Finished saving and setting the matrices 00167 // Enable Alpha Blending 00168 glAlphaFunc(GL_NOTEQUAL, 0); 00169 glEnable(GL_ALPHA_TEST); 00170 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); 00171 glEnable(GL_BLEND); 00172 00173 // Enable the scissor test 00174 glEnable(GL_SCISSOR_TEST); 00175 00176 // Initialize the viewport 00177 glOrtho(0.0, 1.0, 0.0, 1.0, -1.0, 1.0); 00178 00179 // set the standard line Width 00180 glLineWidth(getLineWidth()); 00181 00182 // Get the Collector 00183 StatCollector *col = &getCollector(); 00184 00185 // temp StatElem 00186 StatElem *el; 00187 00188 // ratio = height / width 00189 // Real32 ratio = ( (Real32)port->getPixelHeight()) / 00190 // ((Real32) port->getPixelWidth()); 00191 // temp Variables for the loop 00192 Vec2f pos; 00193 Vec2f size; 00194 00195 // Loop over all selected elements 00196 for(UInt32 i = 0; i < getElementIDs().size(); ++i) 00197 { 00198 // get the StatElem and check whether it exists 00199 el = col->getElem(getElementIDs()[i]); 00200 if(!el) 00201 { 00202 continue; 00203 } 00204 00205 glMatrixMode(GL_MODELVIEW); 00206 glPushMatrix(); 00207 00208 // calculate position and size 00209 calcPosAndSize(i, port, &pos, &size); 00210 glTranslatef(pos[0], pos[1], 0.0); 00211 glScalef(size[0], size[1], 1.0); 00212 00213 // calculate the pixel size of the display 00214 UInt32 pw = (UInt32) (port->getPixelWidth() * size[0]); 00215 UInt32 ph = (UInt32) (port->getPixelHeight() * size[1]); 00216 UInt32 px = (UInt32) (port->getPixelWidth() * pos[0]); 00217 UInt32 py = (UInt32) (port->getPixelHeight() * pos[1]); 00218 glScissor(px - 1, py - 1, pw + 2, ph + 2); 00219 00220 //std::cout << pos << std::endl; 00221 //std::cout << size << std::endl; 00222 //std::cout << px << "/" << py << "/" << pw << "/" << ph 00223 // << std::endl; 00224 // enable GL_POINT_SMOOTH 00225 glEnable(GL_POINT_SMOOTH); 00226 00227 //select the Method to use for drawing 00228 switch(getDisplayType()[i]) 00229 { 00230 case OSG_ANALOG: 00231 //draw an analog display 00232 drawAnalog(i, el, action, port); 00233 break; 00234 case OSG_BAR: 00235 //draw a bar display 00236 drawBar(i, el, action, port); 00237 break; 00238 case OSG_CHART: 00239 //draw a chart 00240 drawChart(i, el, action, port); 00241 break; 00242 case OSG_LINE_CHART: 00243 //draw a linechart 00244 drawLineChart(i, el, action, port); 00245 break; 00246 case OSG_TEXT: 00247 //draw a linechart 00248 drawText(i, el, action, port); 00249 break; 00250 00251 default: 00252 break; 00253 } //switch() 00254 00255 glMatrixMode(GL_MODELVIEW); 00256 glPopMatrix(); 00257 } //for() 00258 00259 //reset OpenGL matrices 00260 glMatrixMode(GL_PROJECTION); 00261 glPopMatrix(); 00262 glMatrixMode(GL_MODELVIEW); 00263 glPopMatrix(); 00264 00265 // Restore all OpenGL states 00266 glPopAttrib(); 00267 }
| void GraphicStatisticsForeground::addElement | ( | StatElemDescBase & | desc, | |
| UInt32 | displayType, | |||
| Vec2f | pos, | |||
| Vec2f | size, | |||
| Color4f | highColor, | |||
| Color4f | lowColor, | |||
| Color4f | currentColor, | |||
| Real32 | minValue = 0.0, |
|||
| Real32 | maxValue = 0.0, |
|||
| UInt32 | Flags = OSG_UNDERFLOW_RESIZE | OSG_OVERFLOW_RESIZE, |
|||
| UInt32 | historySize = 0, |
|||
| std::string | description = "" | |||
| ) |
Definition at line 272 of file OSGGraphicStatisticsForeground.cpp.
References osg::GraphicStatisticsForegroundBase::getColorCurrent(), osg::GraphicStatisticsForegroundBase::getColorMax(), osg::GraphicStatisticsForegroundBase::getColorMin(), osg::GraphicStatisticsForegroundBase::getDescription(), osg::GraphicStatisticsForegroundBase::getDisplayType(), osg::StatisticsForegroundBase::getElementIDs(), osg::GraphicStatisticsForegroundBase::getFlags(), osg::GraphicStatisticsForegroundBase::getHistorySize(), osg::StatElemDescBase::getID(), osg::GraphicStatisticsForegroundBase::getMaxValue(), osg::GraphicStatisticsForegroundBase::getMinValue(), osg::GraphicStatisticsForegroundBase::getPos(), osg::GraphicStatisticsForegroundBase::getSize(), and osg::MField< FieldTypeT, fieldNameSpace >::push_back().
00280 { 00281 /* get the ID of the StatElem to be added */ 00282 // Save the given Data 00283 getElementIDs().push_back(desc.getID()); 00284 getDisplayType().push_back(displayType); 00285 getPos().push_back(pos); 00286 getSize().push_back(size); 00287 getColorMax().push_back(highColor); 00288 getColorMin().push_back(lowColor); 00289 getColorCurrent().push_back(currentColor); 00290 getMinValue().push_back(minValue); 00291 getMaxValue().push_back(maxValue); 00292 getFlags().push_back(flags); 00293 getHistorySize().push_back(historySize ? historySize : 25); 00294 getDescription().push_back(description); 00295 00296 // changed() must be called (automatically) 00297 // to sync the _history/_historyID values 00298 }
| void GraphicStatisticsForeground::removeElement | ( | StatElemDescBase & | desc | ) |
Definition at line 303 of file OSGGraphicStatisticsForeground.cpp.
References _history, _historyID, osg::MField< FieldTypeT, fieldNameSpace >::erase(), osg::GraphicStatisticsForegroundBase::getColorCurrent(), osg::GraphicStatisticsForegroundBase::getColorMax(), osg::GraphicStatisticsForegroundBase::getColorMin(), osg::GraphicStatisticsForegroundBase::getDisplayType(), osg::StatisticsForegroundBase::getElementIDs(), osg::GraphicStatisticsForegroundBase::getFlags(), osg::GraphicStatisticsForegroundBase::getHistorySize(), osg::StatElemDescBase::getID(), osg::GraphicStatisticsForegroundBase::getMaxValue(), osg::GraphicStatisticsForegroundBase::getMinValue(), osg::GraphicStatisticsForegroundBase::getPos(), osg::GraphicStatisticsForegroundBase::getSize(), and osg::MField< FieldTypeT, fieldNameSpace >::size().
00304 { 00305 UInt32 id = desc.getID(); 00306 UInt32 i = 0, n = getElementIDs().size(); 00307 00308 for(i = 0; n; i++) 00309 { 00310 if(getElementIDs()[i] == id) 00311 break; 00312 } 00313 00314 /* Now i is the id of the Element in the MFields. */ 00315 if(i != n) 00316 { 00317 /* Erase these entries in the MFields */ 00318 getElementIDs().erase(getElementIDs().begin() + i); 00319 getDisplayType().erase(getDisplayType().begin() + i); 00320 getPos().erase(getPos().begin() + i); 00321 getSize().erase(getSize().begin() + i); 00322 getColorMax().erase(getColorMax().begin() + i); 00323 getColorMin().erase(getColorMin().begin() + i); 00324 getColorCurrent().erase(getColorCurrent().begin() + i); 00325 getMinValue().erase(getMinValue().begin() + i); 00326 getMaxValue().erase(getMaxValue().begin() + i); 00327 getFlags().erase(getFlags().begin() + i); 00328 getHistorySize().erase(getHistorySize().begin() + i); 00329 00330 _history.erase(_history.begin() + i); 00331 _historyID.erase(_historyID.begin() + i); 00332 } 00333 }
| void GraphicStatisticsForeground::drawAnalog | ( | UInt32 | elementID, | |
| StatElem * | el, | |||
| DrawActionBase * | base, | |||
| Viewport * | ||||
| ) | [protected] |
Definition at line 336 of file OSGGraphicStatisticsForeground.cpp.
References osg::TextLayoutParam::ALIGN_FIRST, osg::TextLayoutParam::ALIGN_MIDDLE, drawString(), osg::GraphicStatisticsForegroundBase::getBackgroundColor(), osg::GraphicStatisticsForegroundBase::getBackgroundEnabled(), osg::GraphicStatisticsForegroundBase::getBorderEnabled(), osg::GraphicStatisticsForegroundBase::getColorCurrent(), osg::GraphicStatisticsForegroundBase::getColorMax(), osg::GraphicStatisticsForegroundBase::getColorMin(), osg::GraphicStatisticsForegroundBase::getFlags(), osg::GraphicStatisticsForegroundBase::getMaxValue(), osg::GraphicStatisticsForegroundBase::getMinValue(), osg::GraphicStatisticsForegroundBase::getTextEnabled(), osg::StatElem::getValue(), OSG_SMOOTH, osg::Pi, processOnlyValue(), processValue(), and real2String().
Referenced by draw().
00338 { 00339 // helper Var 00340 Real32 xdist = 0.0; 00341 00342 // get the current value to be digitised 00343 Real32 value = Real32(el->getValue()); 00344 Real32 vsave = value; 00345 00346 //std::cout << "Analog value: " << value << std::endl; 00347 // process this value according to the flags 00348 processValue(value, elementID); 00349 processOnlyValue(vsave, elementID); 00350 00351 // calculate minimum value and maximun value 00352 Real32 minV = getMinValue()[elementID]; 00353 Real32 maxV = getMaxValue()[elementID]; 00354 00355 // get the colors 00356 Color4f minColor = getColorMin()[elementID]; 00357 Color4f currentColor = getColorCurrent()[elementID]; 00358 Color4f maxColor = getColorMax()[elementID]; 00359 00360 // xdist helps to calculate the real size[0] of the quadstrip and the colors 00361 xdist = (value - minV) / (maxV - minV); 00362 00363 // draw a filled circle with alpha value if expected 00364 Color3f c = getBackgroundColor(); 00365 Real32 angle = 0.0; 00366 if(getBackgroundEnabled()) 00367 { 00368 // filled circle drawn with a triangle_strip 00369 glMatrixMode(GL_MODELVIEW); 00370 glPushMatrix(); 00371 glTranslatef(0.5, 0.5, 0); 00372 glColor4f(c[0], c[1], c[2], 0.4); 00373 glBegin(GL_POLYGON); 00374 00375 // glVertex2f(0.0, 0.0); 00376 for(angle = 0.0; angle < 2 * Pi; angle += Pi / 24) 00377 { 00378 glVertex2f(0.5f * cos(angle), 0.5f * sin(angle)); 00379 } 00380 00381 glEnd(); 00382 glMatrixMode(GL_MODELVIEW); 00383 glPopMatrix(); 00384 } 00385 00386 // draw a Frame around the display 00387 if(getBorderEnabled()) 00388 { 00389 glColor4f(c[0], c[1], c[2], 0.8); 00390 00391 // non filled circle around the filled one 00392 angle = 0.0; 00393 glMatrixMode(GL_MODELVIEW); 00394 glPushMatrix(); 00395 glTranslatef(0.5, 0.5, 0); 00396 glBegin(GL_LINE_LOOP); 00397 00398 for(angle = 0.0; angle < 2 * Pi; angle += Pi / 24) 00399 { 00400 glVertex2f(0.5f * cos(angle), 0.5f * sin(angle)); 00401 } 00402 00403 glEnd(); 00404 glMatrixMode(GL_MODELVIEW); 00405 glPopMatrix(); 00406 } 00407 00408 // draw the ticks 00409 glColor3f(1.0f - c[0], 1.0f - c[1], 1.0f - c[2]); 00410 glMatrixMode(GL_MODELVIEW); 00411 glPushMatrix(); 00412 glTranslatef(0.5, 0.5, 0.0); 00413 glRotatef(135, 0.0, 0.0, 1.0); 00414 00415 glColor3f(1.0f - c[0], 1.0f - c[1], 1.0f - c[2]); 00416 for(UInt32 r = 0; r < 10; r++) 00417 { 00418 glBegin(GL_LINES); 00419 glVertex2f(-0.5, 0.0); 00420 glVertex2f(-0.35, 0.0); 00421 glEnd(); 00422 glRotatef(30, 0.0, 0.0, 1.0); 00423 } // end for 00424 00425 glMatrixMode(GL_MODELVIEW); 00426 glPopMatrix(); 00427 00428 // save current matrix, translate to the origin of the pointer and rotate 00429 glMatrixMode(GL_MODELVIEW); 00430 glPushMatrix(); 00431 glTranslatef(0.5, 0.5, 0); 00432 glRotatef(45 - (xdist * 270.0f), 0.0, 0.0, 1.0); 00433 00434 // draw arrow 00435 glColor3f(0.0, 1.0, 0.0); 00436 glBegin(GL_TRIANGLES); 00437 glVertex2f(0.0, 0.0); 00438 glVertex2f(-0.5, 0.0); 00439 glVertex2f(-0.4, 0.05); 00440 00441 // next triangle ----- 00442 glVertex2f(0.0, 0.0); 00443 glVertex2f(-0.5, 0.0); 00444 glVertex2f(-0.4, -0.05); 00445 glEnd(); 00446 00447 // and finally go back 00448 glMatrixMode(GL_MODELVIEW); 00449 glPopMatrix(); 00450 00451 //draw the center of the arrow... 00452 glMatrixMode(GL_MODELVIEW); 00453 glPushMatrix(); 00454 glColor3f(1.0f - c[0], 1.0f - c[1], 1.0f - c[2]); 00455 glBegin(GL_QUADS); 00456 glVertex2f(0.475, 0.475); 00457 glVertex2f(0.525, 0.475); 00458 glVertex2f(0.525, 0.525); 00459 glVertex2f(0.475, 0.525); 00460 00461 glEnd(); 00462 00463 glMatrixMode(GL_MODELVIEW); 00464 glPopMatrix(); 00465 00466 /* draw a line representing the real current value if the value is 00467 smoothed */ 00468 UInt32 flags = getFlags()[elementID]; 00469 if(flags & OSG_SMOOTH) 00470 { 00471 glMatrixMode(GL_MODELVIEW); 00472 glPushMatrix(); 00473 glTranslatef(0.5, 0.5, 0); 00474 00475 Real32 ang = 1 - ((vsave - minV) / (maxV - minV)); 00476 glRotatef(45.0, 0.0, 0.0, 1.0); 00477 glRotatef((ang * 270.0f), 0.0, 0.0, 1.0); 00478 glColor4f(1.0, 1.0, 0.0, 1.0); 00479 glBegin(GL_LINES); 00480 glVertex2f(0.0, 0.0); 00481 glVertex2f(0.0, -0.5); 00482 glEnd(); 00483 00484 glMatrixMode(GL_MODELVIEW); 00485 glPopMatrix(); 00486 } 00487 00488 // draw some text ------------ 00489 if(getTextEnabled()) 00490 { 00491 // create some Strings to be drawn 00492 std::string maxstr = real2String(maxV); 00493 std::string minstr = real2String(minV); 00494 00495 //set color for drawing the text 00496 glColor4f(1.0f - c[0], 1.0f - c[1], 1.0f - c[2], 1.0f); 00497 00498 // Draw the current value under the center. 00499 glMatrixMode(GL_MODELVIEW); 00500 glPushMatrix(); 00501 glTranslatef(0.5, 0.5, 0.0); 00502 glScalef(0.2, 0.2, 1.0); 00503 drawString(base, real2String(value), TextLayoutParam::ALIGN_MIDDLE, 00504 TextLayoutParam::ALIGN_FIRST); 00505 glMatrixMode(GL_MODELVIEW); 00506 glPopMatrix(); 00507 00508 // scale and translate the text 00509 glMatrixMode(GL_MODELVIEW); 00510 glPushMatrix(); 00511 glTranslatef(0.2, 0.3, 0.0); 00512 glScalef(0.12, 0.12, 1.0); 00513 00514 //draw the text 00515 glTranslatef(0.0, -1.5, 0.0); 00516 drawString(base, minstr); 00517 glTranslatef(3.4, 0.0, 0.0); 00518 drawString(base, maxstr); 00519 glMatrixMode(GL_MODELVIEW); 00520 glPopMatrix(); 00521 } 00522 00523 // end of text drawing ------ 00524 }
| void GraphicStatisticsForeground::drawChart | ( | UInt32 | elementID, | |
| StatElem * | el, | |||
| DrawActionBase * | base, | |||
| Viewport * | port | |||
| ) | [protected] |
Definition at line 529 of file OSGGraphicStatisticsForeground.cpp.
References _history, _historyID, osg::TextLayoutParam::ALIGN_FIRST, osg::TextLayoutParam::ALIGN_MIDDLE, drawString(), osg::GraphicStatisticsForegroundBase::getBackgroundColor(), osg::GraphicStatisticsForegroundBase::getBackgroundEnabled(), osg::GraphicStatisticsForegroundBase::getBorderEnabled(), osg::GraphicStatisticsForegroundBase::getColorCurrent(), osg::GraphicStatisticsForegroundBase::getDescription(), osg::GraphicStatisticsForegroundBase::getMaxValue(), osg::GraphicStatisticsForegroundBase::getMinValue(), osg::Viewport::getPixelHeight(), osg::Viewport::getPixelWidth(), osg::GraphicStatisticsForegroundBase::getTextEnabled(), osg::StatElem::getValue(), processValue(), and real2String().
Referenced by draw().
00531 { 00532 // The amount of the display to be used for the text on the bottom 00533 Real32 textHeight = 0.0; 00534 Real32 textWidth = 0.0; 00535 00536 if(getTextEnabled()) 00537 { 00538 textHeight = 0.2; 00539 textWidth = 0.25; 00540 } 00541 00542 /* Height of the current quad */ 00543 Real32 currQuadheight = 0.0; 00544 00545 /* Get the current value and process it */ 00546 Real32 value = Real32(el->getValue()); 00547 processValue(value, elementID); 00548 00549 //std::cout << "Chart value: " << value << std::endl; 00550 /* calculate minimum value and maximun value */ 00551 Real32 minV = getMinValue()[elementID]; 00552 Real32 maxV = getMaxValue()[elementID]; 00553 00554 // draw a rectangle with alpha value 00555 Color3f c = getBackgroundColor(); 00556 if(getBackgroundEnabled()) 00557 { 00558 glColor4f(c[0], c[1], c[2], 0.4); 00559 glRectf(0.0, 0.0, 1.0, 1.0); 00560 } 00561 00562 // draw a Frame around the display 00563 if(getBorderEnabled()) 00564 { 00565 glColor4f(c[0], c[1], c[2], 0.8); 00566 glBegin(GL_LINE_STRIP); 00567 glVertex2f(textWidth, 0.0); 00568 glVertex2f(1.0, 0.0); 00569 glVertex2f(1.0, 1.0); 00570 glVertex2f(textWidth, 1.0); 00571 glEnd(); 00572 } 00573 00574 /* Number of elements in the cycle buffer */ 00575 UInt32 number = _history[elementID].size(); 00576 00577 /* width of each Bar */ 00578 Real32 step = (1.0f - textWidth) / number; 00579 00580 /* The collor of the chart is set by the currentColor of this 00581 statistics Element */ 00582 glColor4f(getColorCurrent()[elementID][0], 00583 getColorCurrent()[elementID][1], 00584 getColorCurrent()[elementID][2], 00585 getColorCurrent()[elementID][3]); 00586 00587 /* Base coordiantes for the chart (lower left corner) 00588 Will be set to the current base coordinates of each bar in the 00589 loop */ 00590 Real32 deltax = textWidth; 00591 00592 glMatrixMode(GL_MODELVIEW); 00593 glPushMatrix(); 00594 glTranslatef(0.0, textHeight, 0.0); 00595 glScalef(1.0f, 1.0f - textHeight, 1.0f); 00596 00597 /* loop over all entries in the cycle buffer */ 00598 for(UInt32 i = 0; i < number; i++) 00599 { 00600 /* get the current value out of the cycle Buffer */ 00601 value = _history[elementID][((_historyID[elementID]) + i) % number]; 00602 00603 /* calculate the height of the quad to be drawn in this 00604 iteration */ 00605 currQuadheight = ((value - minV) / (maxV - minV)); 00606 00607 /* draw the current bar */ 00608 glBegin(GL_QUADS); 00609 glVertex2f(deltax, 0.0); 00610 glVertex2f(deltax + step, 0.0); 00611 glVertex2f(deltax + step, currQuadheight); 00612 glVertex2f(deltax, currQuadheight); 00613 glEnd(); // finished drawing current Quad 00614 deltax += step; 00615 } // end for 00616 00617 glMatrixMode(GL_MODELVIEW); 00618 glPopMatrix(); 00619 00620 if(getTextEnabled()) 00621 { 00622 // create some Strings to be drawn 00623 std::string minstr = real2String(minV, "%.0f"); 00624 std::string maxstr = real2String(maxV, "%.0f"); 00625 std::string valstr = getDescription()[elementID] + " " + real2String(value); 00626 00627 // set color to draw the text with 00628 glColor4f(1.0f - c[0], 1.0f - c[1], 1.0f - c[2], 1.0f); 00629 00630 // scale and translate the text 00631 Real32 ratio = ((Real32) port->getPixelHeight()) / 00632 ((Real32) port->getPixelWidth()); 00633 00634 // bottom: Current Value 00635 glMatrixMode(GL_MODELVIEW); 00636 glPushMatrix(); 00637 glTranslatef(0.5, 0.01, 0.0); 00638 glScalef(0.2f * ratio, 0.2f, 1.0f); 00639 drawString(base, valstr, TextLayoutParam::ALIGN_MIDDLE); 00640 glMatrixMode(GL_MODELVIEW); 00641 glPopMatrix(); 00642 00643 //draw: min value 00644 glMatrixMode(GL_MODELVIEW); 00645 glPushMatrix(); 00646 glTranslatef(0.0, 0.22, 0.0); 00647 glScalef(0.12f * ratio, 0.12f, 1.0f); 00648 drawString(base, minstr); 00649 glMatrixMode(GL_MODELVIEW); 00650 glPopMatrix(); 00651 00652 //draw: maximum value 00653 glMatrixMode(GL_MODELVIEW); 00654 glPushMatrix(); 00655 glTranslatef(0.0, 1.0, 0.0); 00656 glScalef(0.12f * ratio, 0.12f, 1.0f); 00657 drawString(base, maxstr, TextLayoutParam::ALIGN_FIRST, TextLayoutParam::ALIGN_FIRST); 00658 glMatrixMode(GL_MODELVIEW); 00659 glPopMatrix(); 00660 } 00661 00662 // end of text drawing ------ 00663 }
| void GraphicStatisticsForeground::drawLineChart | ( | UInt32 | elementID, | |
| StatElem * | el, | |||
| DrawActionBase * | base, | |||
| Viewport * | port | |||
| ) | [protected] |
Definition at line 823 of file OSGGraphicStatisticsForeground.cpp.
References _history, _historyID, osg::TextLayoutParam::ALIGN_FIRST, osg::TextLayoutParam::ALIGN_MIDDLE, drawString(), osg::GraphicStatisticsForegroundBase::getBackgroundColor(), osg::GraphicStatisticsForegroundBase::getBackgroundEnabled(), osg::GraphicStatisticsForegroundBase::getBorderEnabled(), osg::GraphicStatisticsForegroundBase::getColorCurrent(), osg::GraphicStatisticsForegroundBase::getDescription(), osg::GraphicStatisticsForegroundBase::getFlags(), osg::GraphicStatisticsForegroundBase::getLineWidth(), osg::GraphicStatisticsForegroundBase::getMaxValue(), osg::GraphicStatisticsForegroundBase::getMinValue(), osg::Viewport::getPixelHeight(), osg::Viewport::getPixelWidth(), osg::GraphicStatisticsForegroundBase::getTextEnabled(), osg::StatElem::getValue(), OSG_ENABLE_POINTS, OSG_MAX_TEXT, OSG_MIN_TEXT, OSG_RECIPROC, processValue(), and real2String().
Referenced by draw().
00826 { 00827 // The amount of the display to be used for the text on the bottom 00828 Real32 textHeight = 0.0; 00829 Real32 textWidth = 0.0; 00830 00831 if(getTextEnabled()) 00832 { 00833 textHeight = 0.2; 00834 textWidth = 0.25; 00835 } 00836 00837 /* Height of the current quad */ 00838 Real32 currHeight = 0.0; 00839 00840 /* Flags for check whether points should be drawn or not */ 00841 UInt32 flags = getFlags()[elementID]; 00842 00843 /* Get the current value and process it */ 00844 Real32 value = Real32(el->getValue()); 00845 Real32 realValue = (flags & OSG_RECIPROC) ? 1.f / value : value; 00846 00847 processValue(value, elementID); 00848 00849 //std::cout << "LineChart value: " << value << std::endl; 00850 /* calculate minimum value and maximun value */ 00851 Real32 minV = getMinValue()[elementID]; 00852 Real32 maxV = getMaxValue()[elementID]; 00853 00854 // draw a rectangle with alpha value 00855 Color3f c = getBackgroundColor(); 00856 if(getBackgroundEnabled()) 00857 { 00858 glColor4f(c[0], c[1], c[2], 0.4); 00859 glRectf(0.0, 0.0, 1.0, 1.0); 00860 } 00861 00862 // draw a Frame around the display 00863 if(getBorderEnabled()) 00864 { 00865 glColor4f(c[0], c[1], c[2], 0.8); 00866 glBegin(GL_LINE_STRIP); 00867 glVertex2f(textWidth, 0.0); 00868 glVertex2f(1.0, 0.0); 00869 glVertex2f(1.0, 1.0); 00870 glVertex2f(textWidth, 1.0); 00871 glEnd(); 00872 } 00873 00874 /* Number of elements in the cycle buffer */ 00875 UInt32 number = _history[elementID].size(); 00876 00877 /* width of each Bar */ 00878 Real32 step = (1.0f - textWidth) / number; 00879 00880 /* The collor of the chart is set by the currentColor of this 00881 statistics Element */ 00882 glColor4f(getColorCurrent()[elementID][0], getColorCurrent()[elementID][1], 00883 getColorCurrent()[elementID][2], getColorCurrent()[elementID][3]); 00884 00885 /* Base coordiantes for the chart (lower left corner) 00886 Will be set to the current base coordinates of each bar in the 00887 loop */ 00888 Real32 deltax = textWidth; 00889 00890 glMatrixMode(GL_MODELVIEW); 00891 glPushMatrix(); 00892 glTranslatef(0.0, textHeight, 0.0); 00893 glScalef(1.0f, 1.0f - textHeight, 1.0f); 00894 00895 /* loop over all entries in the cycle buffer */ 00896 value = _history[elementID][_historyID[elementID]]; 00897 00898 /* save the last x und y value to draw the line in the next 00899 iterarion */ 00900 Real32 lastx = textWidth; 00901 Real32 lasty = ((value - minV) / (maxV - minV)); 00902 00903 for(UInt32 i = 0; i < number; i++) 00904 { 00905 /* get the current value out of the cycle Buffer */ 00906 value = _history[elementID][((_historyID[elementID]) + i) % number]; 00907 00908 /* calculate the height of the quad to be drawn in this 00909 iteration */ 00910 currHeight = ((value - minV) / (maxV - minV)); 00911 00912 /* draw the current line */ 00913 glBegin(GL_LINES); 00914 glVertex2f(lastx, lasty); 00915 glVertex2f(deltax, currHeight); 00916 glEnd(); 00917 00918 // save x und y position to draw the line in the next iteration */ 00919 lastx = deltax; 00920 lasty = currHeight; 00921 00922 // Real32 angle = 0.0; 00923 /* draw Point if wanted */ 00924 if(flags & OSG_ENABLE_POINTS) 00925 { 00926 /* filled circle 00927 glPushMatrix(); 00928 glTranslatef(deltax, currHeight, 0.0); 00929 glBegin(GL_POLYGON); 00930 for (angle = 0.0; angle < 2 * Pi; angle += Pi / 24) 00931 { 00932 glVertex2f(0.0125 *cos(angle), 0.0125 * sin(angle)); 00933 } 00934 glEnd(); 00935 glPopMatrix();*/ 00936 // draw one single point with GL_POINT_SIZE = 00937 glPointSize(2.0f * getLineWidth()); 00938 glBegin(GL_POINTS); 00939 glVertex2f(deltax, currHeight); 00940 glEnd(); 00941 } // end if 00942 00943 deltax += step; 00944 } // end for 00945 00946 glMatrixMode(GL_MODELVIEW); 00947 glPopMatrix(); 00948 00949 // draw some text ------------ 00950 if(getTextEnabled()) 00951 { 00952 // create some Strings to be drawn 00953 std::string valstr = getDescription()[elementID] + " " + 00954 real2String(realValue); 00955 00956 // set color to draw the text with 00957 glColor4f(1.0f - c[0], 1.0f - c[1], 1.0f - c[2], 1.0f); 00958 00959 // scale and translate the text 00960 Real32 ratio = ((Real32) port->getPixelHeight()) / 00961 ((Real32) port->getPixelWidth()); 00962 00963 // bottom: Current Value 00964 glMatrixMode(GL_MODELVIEW); 00965 glPushMatrix(); 00966 glTranslatef(0.5, 0.01, 0.0); 00967 glScalef(0.2f * ratio, 0.2f, 1.0f); 00968 drawString(base, valstr, TextLayoutParam::ALIGN_MIDDLE); 00969 glMatrixMode(GL_MODELVIEW); 00970 glPopMatrix(); 00971 00972 //draw: min value 00973 if(flags & OSG_MAX_TEXT) 00974 { 00975 std::string minstr = real2String(minV, "%.0f"); 00976 glMatrixMode(GL_MODELVIEW); 00977 glPushMatrix(); 00978 glTranslatef(0.0, 0.22, 0.0); 00979 glScalef(0.12f * ratio, 0.12f, 1.0f); 00980 drawString(base, minstr); 00981 glMatrixMode(GL_MODELVIEW); 00982 glPopMatrix(); 00983 } 00984 00985 //draw: maximum value 00986 if(flags & OSG_MIN_TEXT) 00987 { 00988 std::string maxstr = real2String(maxV, "%.0f"); 00989 glMatrixMode(GL_MODELVIEW); 00990 glPushMatrix(); 00991 glTranslatef(0.0, 1.0, 0.0); 00992 glScalef(0.12f * ratio, 0.12f, 1.0f); 00993 drawString(base, maxstr, TextLayoutParam::ALIGN_FIRST, 00994 TextLayoutParam::ALIGN_FIRST); 00995 glMatrixMode(GL_MODELVIEW); 00996 glPopMatrix(); 00997 } 00998 } 00999 01000 // end of text drawing ------ 01001 }
| void GraphicStatisticsForeground::drawBar | ( | UInt32 | elementID, | |
| StatElem * | el, | |||
| DrawActionBase * | base, | |||
| Viewport * | port | |||
| ) | [protected] |
Definition at line 666 of file OSGGraphicStatisticsForeground.cpp.
References _history, osg::TextLayoutParam::ALIGN_END, osg::TextLayoutParam::ALIGN_MIDDLE, drawString(), osg::GraphicStatisticsForegroundBase::getBackgroundColor(), osg::GraphicStatisticsForegroundBase::getBackgroundEnabled(), osg::GraphicStatisticsForegroundBase::getBorderEnabled(), osg::GraphicStatisticsForegroundBase::getColorCurrent(), osg::GraphicStatisticsForegroundBase::getColorMax(), osg::GraphicStatisticsForegroundBase::getColorMin(), osg::GraphicStatisticsForegroundBase::getDescription(), osg::GraphicStatisticsForegroundBase::getMaxValue(), osg::GraphicStatisticsForegroundBase::getMinValue(), osg::Viewport::getPixelHeight(), osg::Viewport::getPixelWidth(), osg::GraphicStatisticsForegroundBase::getTextEnabled(), osg::StatElem::getValue(), processOnlyValue(), processValue(), and real2String().
Referenced by draw().
00668 { 00669 // The amount of the display to be used for the text on the bottom 00670 Real32 textHeight = 0.0; 00671 Real32 textWidth = 0.0; 00672 00673 if(getTextEnabled()) 00674 { 00675 textHeight = 0.2; 00676 textWidth = 0.0; 00677 } 00678 00679 Real32 xdist = 0; // helper Var 00680 Real32 minV = getMinValue()[elementID]; 00681 Real32 maxV = getMaxValue()[elementID]; 00682 00683 Real32 value = Real32(el->getValue()); 00684 Real32 vsave = value; 00685 00686 //std::cout << "Bar value: " << value << std::endl; 00687 processValue(value, elementID); 00688 processOnlyValue(vsave, elementID); 00689 00690 // draw a rectangle with alpha value 00691 Color3f c = getBackgroundColor(); 00692 if(getBackgroundEnabled()) 00693 { 00694 glColor4f(c[0], c[1], c[2], 0.4); 00695 glRectf(0.0, 0.0, 1.0, 1.0); 00696 } 00697 00698 // draw a Frame around the display 00699 if(getBorderEnabled()) 00700 { 00701 glColor4f(c[0], c[1], c[2], 0.8); 00702 glBegin(GL_LINE_STRIP); 00703 glVertex2f(0.0, 0.0); 00704 glVertex2f(1.0, 0.0); 00705 glVertex2f(1.0, 1.0); 00706 glVertex2f(0.0, 1.0); 00707 glEnd(); 00708 } 00709 00710 // get the Colors into private vars 00711 Color4f MinColor = getColorMin()[elementID]; 00712 Color4f CurrentColor = getColorCurrent()[elementID]; 00713 Color4f MaxColor = getColorMax()[elementID]; 00714 00715 // xdist helps to calculate the real size[0] of the quadstrip and the colors 00716 xdist = (value - minV) / (maxV - minV) * (1.0f - 2 * textWidth) + textWidth; 00717 00718 /* draw the quads */ 00719 if(xdist < 0.5) 00720 { 00721 glColor4f(MinColor[0], MinColor[1], MinColor[2], getColorMin()[elementID][3]); 00722 glBegin(GL_QUADS); 00723 glVertex2f(textWidth, textHeight); 00724 glVertex2f(textWidth, 1.0); 00725 glColor4f(CurrentColor[0] * 2 * xdist + MinColor[0] * (1 - (2 * xdist)), 00726 CurrentColor[1] * 2 * xdist + MinColor[1] * (1 - (2 * xdist)), 00727 CurrentColor[2] * 2 * xdist + MinColor[2] * (1 - (2 * xdist)), 00728 getColorCurrent()[elementID][3]); 00729 glVertex2f(xdist, 1.0); 00730 glVertex2f(xdist, textHeight); 00731 glEnd(); 00732 } // end if 00733 else //if xdist > 0.5 00734 { 00735 glBegin(GL_QUADS); 00736 00737 // draw first quad 00738 glColor4f(MinColor[0], MinColor[1], MinColor[2], getColorMin()[elementID][3]); 00739 glVertex2f(textWidth, textHeight); 00740 glVertex2f(textWidth, 1.0); 00741 glColor4f(CurrentColor[0], CurrentColor[1], CurrentColor[2], 00742 getColorCurrent()[elementID][3]); 00743 glVertex2f(0.5, 1.0); 00744 glVertex2f(0.5, textHeight); 00745 00746 // draw second quad 00747 glVertex2f(0.5, textHeight); 00748 glVertex2f(0.5, 1.0); 00749 glColor4f(MaxColor[0] * ((xdist - 0.5f) * 2) + CurrentColor[0] * 00750 (1 - ((xdist - 0.5f) * 2)), 00751 MaxColor[1] * ((xdist - 0.5f) * 2) + CurrentColor[1] * 00752 (1 - ((xdist - 0.5f) * 2)), 00753 MaxColor[2] * ((xdist - 0.5f) * 2) + CurrentColor[2] * 00754 (1 - ((xdist - 0.5f) * 2)), getColorMax()[elementID][3]); 00755 glVertex2f(0.5f + ((xdist - 0.5f)), 1.0); 00756 glVertex2f(0.5f + ((xdist - 0.5f)), textHeight); 00757 glEnd(); 00758 } // end else 00759 00760 /* draw a line representing the real current value 00761 if the value to be digitized is smoothed */ 00762 if(_history[elementID].size() > 0) 00763 { 00764 glColor4f(1.0, 1.0, 0.0, 1.0); 00765 glBegin(GL_LINES); 00766 00767 glVertex2f((vsave - minV) / (maxV - minV) * (1.0f - 2 * textWidth) + 00768 textWidth, 1.0f); 00769 glVertex2f((vsave - minV) / (maxV - minV) * (1.0f - 2 * textWidth) + 00770 textWidth, textHeight); 00771 glEnd(); 00772 } 00773 00774 // Draw the text 00775 if(getTextEnabled()) 00776 { 00777 // create some Strings to be drawn 00778 std::string valstr = getDescription()[elementID] + " " + real2String(value); 00779 std::string minstr = real2String(minV, "%.0f"); 00780 std::string maxstr = real2String(maxV, "%.0f"); 00781 00782 // set color to draw the text with 00783 glColor4f(1.0f - c[0], 1.0f - c[1], 1.0f - c[2], 1.0f); 00784 00785 // scale and translate the text 00786 Real32 ratio = ((Real32) port->getPixelHeight()) / 00787 ((Real32) port->getPixelWidth()); 00788 00789 // Left side: Min 00790 glMatrixMode(GL_MODELVIEW); 00791 glPushMatrix(); 00792 glTranslatef(0.0, 0.7, 0.0); 00793 glScalef(0.15f * ratio, 0.15f, 1.0f); 00794 drawString(base, minstr); 00795 glMatrixMode(GL_MODELVIEW); 00796 glPopMatrix(); 00797 00798 // right side: Max 00799 glMatrixMode(GL_MODELVIEW); 00800 glPushMatrix(); 00801 glTranslatef(1.0, 0.7, 0.0); 00802 glScalef(0.15f * ratio, 0.15f, 1.0f); 00803 drawString(base, maxstr, TextLayoutParam::ALIGN_END); 00804 glMatrixMode(GL_MODELVIEW); 00805 glPopMatrix(); 00806 00807 // bottom: Current Value 00808 glMatrixMode(GL_MODELVIEW); 00809 glPushMatrix(); 00810 glTranslatef(0.5f, 0.01f, 0.0f); 00811 glScalef(0.2f * ratio, 0.2f, 1.0f); 00812 drawString(base, valstr, TextLayoutParam::ALIGN_MIDDLE); 00813 glMatrixMode(GL_MODELVIEW); 00814 glPopMatrix(); 00815 } 00816 00817 // end of text drawing ------ 00818 }
| void GraphicStatisticsForeground::drawText | ( | UInt32 | elementID, | |
| StatElem * | el, | |||
| DrawActionBase * | base, | |||
| Viewport * | port | |||
| ) | [protected] |
Definition at line 1004 of file OSGGraphicStatisticsForeground.cpp.
References drawString(), osg::GraphicStatisticsForegroundBase::getBackgroundColor(), osg::GraphicStatisticsForegroundBase::getBackgroundEnabled(), osg::GraphicStatisticsForegroundBase::getBorderEnabled(), osg::GraphicStatisticsForegroundBase::getDescription(), osg::GraphicStatisticsForegroundBase::getMaxValue(), osg::GraphicStatisticsForegroundBase::getMinValue(), osg::Viewport::getPixelHeight(), osg::Viewport::getPixelWidth(), osg::StatElem::getValue(), processOnlyValue(), and real2String().
Referenced by draw().
01006 { 01007 /* Get the current value and process it */ 01008 Real32 value = Real32(el->getValue()); 01009 processOnlyValue(value, elementID); 01010 01011 //std::cout << "TextChart value: " << value << std::endl; 01012 /* get value, calculate minimum value and maximun value and 01013 convert into a string*/ 01014 Real32 minV = getMinValue()[elementID]; 01015 Real32 maxV = getMaxValue()[elementID]; 01016 std::string minstr = real2String(minV, "%.0f"); 01017 std::string maxstr = real2String(maxV, "%.0f"); 01018 std::string valstr = getDescription()[elementID] + " " + real2String(value); 01019 01020 // draw a rectangle with alpha value 01021 Color3f c = getBackgroundColor(); 01022 if(getBackgroundEnabled()) 01023 { 01024 glColor4f(c[0], c[1], c[2], 0.4); 01025 glRectf(0.0, 0.0, 1.0, 1.0); 01026 } 01027 01028 // draw a Frame around the display 01029 if(getBorderEnabled()) 01030 { 01031 glColor4f(c[0], c[1], c[2], 0.8); 01032 glBegin(GL_LINE_STRIP); 01033 glVertex2f(0.0, 0.0); 01034 glVertex2f(1.0, 0.0); 01035 glVertex2f(1.0, 1.0); 01036 glVertex2f(0.0, 1.0); 01037 glEnd(); 01038 } 01039 01040 // set color to draw the text with 01041 glColor4f(1.0f - c[0], 1.0f - c[1], 1.0f - c[2], 1.0f); 01042 01043 // scale and translate the text 01044 Real32 ratio = ((Real32) port->getPixelHeight()) / 01045 ((Real32) port->getPixelWidth()); 01046 01047 // Current Value 01048 glMatrixMode(GL_MODELVIEW); 01049 glPushMatrix(); 01050 glTranslatef(0.02, 0.7, 0.0); 01051 glScalef(0.18f * ratio, 0.18f, 1.0f); 01052 drawString(base, valstr); 01053 glMatrixMode(GL_MODELVIEW); 01054 glPopMatrix(); 01055 01056 // MinValue 01057 glMatrixMode(GL_MODELVIEW); 01058 glPushMatrix(); 01059 glTranslatef(0.02, 0.5, 0.0); 01060 glScalef(0.18f * ratio, 0.18f, 1.0f); 01061 drawString(base, "Min: " + minstr); 01062 glMatrixMode(GL_MODELVIEW); 01063 glPopMatrix(); 01064 01065 // MaxValue 01066 glMatrixMode(GL_MODELVIEW); 01067 glPushMatrix(); 01068 glTranslatef(0.02, 0.3, 0.0); 01069 glScalef(0.18f * ratio, 0.18f, 1.0f); 01070 drawString(base, "Max: " + maxstr); 01071 glMatrixMode(GL_MODELVIEW); 01072 glPopMatrix(); 01073 }
| void GraphicStatisticsForeground::initText | ( | void | ) | [protected] |
initialize the text
Definition at line 1164 of file OSGGraphicStatisticsForeground.cpp.
References _face, _texchunk, osg::addRefCP(), osg::addRefP(), osg::getStatisticsDefaultFont(), osg::getStatisticsDefaultFontTexture(), osg::NullFC, osg::subRefCP(), and osg::subRefP().
Referenced by draw().
01165 { 01166 // Cleanup 01167 if (_face != 0) 01168 subRefP(_face); 01169 if (_texchunk != NullFC) 01170 subRefCP(_texchunk); 01171 01172 _face = getStatisticsDefaultFont(); 01173 _texchunk = getStatisticsDefaultFontTexture(); 01174 01175 // Increment reference counters 01176 addRefP(_face); 01177 addRefCP(_texchunk); 01178 }
| void GraphicStatisticsForeground::drawString | ( | DrawActionBase * | base, | |
| const std::string & | text, | |||
| TextLayoutParam::Alignment | majorAlignment = TextLayoutParam::ALIGN_FIRST, |
|||
| TextLayoutParam::Alignment | minorAlignment = TextLayoutParam::ALIGN_END | |||
| ) | [protected] |
Draws a String.
Definition at line 1181 of file OSGGraphicStatisticsForeground.cpp.
References _face, _texchunk, osg::TextTXFGlyph::COORD_BOTTOM, osg::TextTXFGlyph::COORD_LEFT, osg::TextTXFGlyph::COORD_RIGHT, osg::TextTXFGlyph::COORD_TOP, osg::TextTXFGlyph::getHeight(), osg::TextLayoutResult::getNumGlyphs(), osg::TextTXFGlyph::getTexCoord(), osg::TextTXFFace::getTXFGlyph(), osg::TextTXFGlyph::getWidth(), osg::TextLayoutResult::indices, osg::TextTXFFace::layout(), osg::TextLayoutParam::majorAlignment, osg::TextLayoutParam::minorAlignment, and osg::TextLayoutResult::positions.
Referenced by drawAnalog(), drawBar(), drawChart(), drawLineChart(), and drawText().
01185 { 01186 std::vector < std::string > stat(1); 01187 stat[0] = text; 01188 01189 TextLayoutParam layoutParam; 01190 layoutParam.majorAlignment = majorAlignment; 01191 layoutParam.minorAlignment = minorAlignment; 01192 TextLayoutResult layoutResult; 01193 _face->layout(stat, layoutParam, layoutResult); 01194 01195 glMatrixMode(GL_MODELVIEW); 01196 glPushMatrix(); 01197 01198 // Draw the text 01199 _texchunk->activate(base); 01200 01201 glBegin(GL_QUADS); 01202 UInt32 i, numGlyphs = layoutResult.getNumGlyphs(); 01203 for(i = 0; i < numGlyphs; ++i) 01204 { 01205 const TextTXFGlyph &glyph = _face->getTXFGlyph(layoutResult.indices[i]); 01206 Real32 width = glyph.getWidth(); 01207 Real32 height = glyph.getHeight(); 01208 // No need to draw invisible glyphs 01209 if ((width <= 0.f) || (height <= 0.f)) 01210 continue; 01211 01212 // Calculate coordinates 01213 const Vec2f &pos = layoutResult.positions[i]; 01214 Real32 posLeft = pos.x(); 01215 Real32 posTop = pos.y(); 01216 Real32 posRight = pos.x() + width; 01217 Real32 posBottom = pos.y() - height; 01218 Real32 texCoordLeft = glyph.getTexCoord(TextTXFGlyph::COORD_LEFT); 01219 Real32 texCoordTop = glyph.getTexCoord(TextTXFGlyph::COORD_TOP); 01220 Real32 texCoordRight = glyph.getTexCoord(TextTXFGlyph::COORD_RIGHT); 01221 Real32 texCoordBottom = glyph.getTexCoord(TextTXFGlyph::COORD_BOTTOM); 01222 01223 // lower left corner 01224 glTexCoord2f(texCoordLeft, texCoordBottom); 01225 glVertex2f(posLeft, posBottom); 01226 01227 // lower right corner 01228 glTexCoord2f(texCoordRight, texCoordBottom); 01229 glVertex2f(posRight, posBottom); 01230 01231 // upper right corner 01232 glTexCoord2f(texCoordRight, texCoordTop); 01233 glVertex2f(posRight, posTop); 01234 01235 // upper left corner 01236 glTexCoord2f(texCoordLeft, texCoordTop); 01237 glVertex2f(posLeft, posTop); 01238 } 01239 glEnd(); 01240 01241 _texchunk->deactivate(base); 01242 01243 glMatrixMode(GL_MODELVIEW); 01244 glPopMatrix(); 01245 }
| std::string GraphicStatisticsForeground::real2String | ( | Real32 | value, | |
| char * | format = 0 | |||
| ) | [protected] |
Definition at line 1248 of file OSGGraphicStatisticsForeground.cpp.
Referenced by drawAnalog(), drawBar(), drawChart(), drawLineChart(), and drawText().
01249 { 01250 char buff[100]; 01251 01252 if(format == 0) 01253 sprintf(buff, "%.2f", value); 01254 else 01255 sprintf(buff, format, value); 01256 01257 std::string Result(buff); 01258 01259 return Result; 01260 }
| void GraphicStatisticsForeground::calcPosAndSize | ( | const UInt32 & | elementID, | |
| Viewport * | port, | |||
| Vec2f * | Position, | |||
| Vec2f * | Size | |||
| ) | [protected] |
Definition at line 1080 of file OSGGraphicStatisticsForeground.cpp.
References osg::Viewport::getPixelHeight(), osg::Viewport::getPixelWidth(), osg::GraphicStatisticsForegroundBase::getPos(), osg::GraphicStatisticsForegroundBase::getSize(), and osg::osgabs().
Referenced by draw().
01084 { 01085 // Width and Height of the current viewport 01086 // needed for pixel to relative conversion 01087 Real32 pw = Real32(port->getPixelWidth ()); // PixelWidth 01088 Real32 ph = Real32(port->getPixelHeight()); // PixelHeight 01089 Real32 ratio = pw / ph; 01090 01091 /* 01092 Calculate the size 01093 */ 01094 Vec2f size = getSize(id); // Temp Size 01095 01096 // Check for values < 0 01097 // If both values a <0 fall back to 01098 if(size[0] < 0 && size[1] < 0) 01099 { 01100 size[0] = size[1] = 1.0; 01101 } 01102 else 01103 { 01104 if(size[0] < 0) 01105 { 01106 size[0] = osgabs(size[0]) * size[1] / ratio; 01107 } 01108 01109 if(size[1] < 0) 01110 { 01111 size[1] = osgabs(size[1]) * size[0] * ratio; 01112 } 01113 } 01114 01115 //convert pixel based sizes to relative ones 01116 if(size[0] > 1.0) 01117 size[0] = size[0] / pw; 01118 if(size[1] > 1.0) 01119 size[1] = size[1] / ph; 01120 01121 // Save the Size 01122 (*Size) = size; 01123 01124 /* 01125 calculate the position 01126 */ 01127 Vec2f pos = getPos(id); // Temp Position 01128 01129 // Hack the floats 01130 bool xneg = false; 01131 bool yneg = false; 01132 01133 if(pos[0] < 0) 01134 { 01135 pos[0] = pos[0] + 1; 01136 xneg = true; 01137 } 01138 01139 if(pos[1] < 0) 01140 { 01141 pos[1] = pos[1] + 1; 01142 yneg = true; 01143 } 01144 01145 // convert the pixel Data to relative positions 01146 if(osgabs(pos[0]) > 1.0) 01147 pos[0] = pos[0] / pw; 01148 if(osgabs(pos[1]) > 1.0) 01149 pos[1] = pos[1] / ph; 01150 01151 // check whether the positions are relative to the right/bottom 01152 if(xneg) 01153 pos[0] = 1.0f + pos[0] - size[0]; 01154 if(yneg) 01155 pos[1] = 1.0f + pos[1] - size[1]; 01156 01157 // Save the calculated position 01158 (*Position) = pos; 01159 }
| void osg::GraphicStatisticsForeground::processValue | ( | Real32 & | value, | |
| const UInt32 & | elementID | |||
| ) | [inline, protected] |
Definition at line 43 of file OSGGraphicStatisticsForeground.inl.
References addValueToHistory(), and processOnlyValue().
Referenced by drawAnalog(), drawBar(), drawChart(), and drawLineChart().
00045 { 00046 processOnlyValue(value, elementID); 00047 addValueToHistory(value, elementID); 00048 }
| void osg::GraphicStatisticsForeground::processOnlyValue | ( | Real32 & | value, | |
| const UInt32 & | elementID | |||
| ) | [inline, protected] |
Definition at line 51 of file OSGGraphicStatisticsForeground.inl.
References osg::GraphicStatisticsForegroundBase::getFlags(), osg::GraphicStatisticsForegroundBase::getMaxValue(), osg::GraphicStatisticsForegroundBase::getMinValue(), OSG_OVERFLOW_RESIZE, OSG_RECIPROC, and OSG_UNDERFLOW_RESIZE.
Referenced by drawAnalog(), drawBar(), drawText(), and processValue().
00053 { 00054 UInt32 flags = getFlags()[elementID]; 00055 Real32 minV = getMinValue()[elementID]; 00056 Real32 maxV = getMaxValue()[elementID]; 00057 00058 /* check for invert */ 00059 if(flags & OSG_RECIPROC) 00060 { 00061 value = 1.0f / value; 00062 } 00063 00064 /* check for a to big Value */ 00065 if(value > maxV) 00066 { 00067 if(flags & OSG_OVERFLOW_RESIZE) 00068 { 00069 getMaxValue()[elementID] = value; 00070 } 00071 else 00072 { 00073 value = maxV; 00074 } 00075 } 00076 00077 /* check for to small values */ 00078 if(value < minV) 00079 { 00080 if(flags & OSG_UNDERFLOW_RESIZE) 00081 { 00082 getMinValue()[elementID] = value; 00083 } 00084 else 00085 { 00086 value = minV; 00087 } 00088 } 00089 00090 /* end of these checks */ 00091 }
| void osg::GraphicStatisticsForeground::addValueToHistory | ( | Real32 & | value, | |
| const UInt32 & | elementID | |||
| ) | [inline, protected] |
Definition at line 94 of file OSGGraphicStatisticsForeground.inl.
References _history, _historyID, osg::GraphicStatisticsForegroundBase::getFlags(), osg::GraphicStatisticsForegroundBase::getMaxValue(), osg::GraphicStatisticsForegroundBase::getMinValue(), OSG_OVERFLOW_RESIZE, OSG_SMOOTH, OSG_UNDERFLOW_RESIZE, osg::osgMax(), and osg::osgMin().
Referenced by processValue().
00096 { 00097 UInt32 flags = getFlags()[elementID]; 00098 00099 /* Smooth the value, if asked for */ 00100 UInt32 hSize = _history.size(); 00101 UInt32 size = (elementID < hSize) ? _history[elementID].size() : 0; 00102 00103 if(size > 0) 00104 { 00105 UInt32 queueEnd = _historyID[elementID]; 00106 _history[elementID][queueEnd] = value; 00107 00108 /* increment the queue end */ 00109 _historyID[elementID] = (_historyID[elementID] + 1) % size; 00110 00111 /* check whether the value should be smoothed */ 00112 if((flags & OSG_SMOOTH) || 00113 (flags & OSG_OVERFLOW_RESIZE) || 00114 (flags & OSG_UNDERFLOW_RESIZE)) 00115 { 00116 Real32 v = 0.0, max = 0.0, min = 0.0, sum = 0.0; 00117 00118 for(UInt32 i = 0; i < size; i++) 00119 { 00120 v = _history[elementID][i]; 00121 00122 if(i) 00123 { 00124 if(v > max) 00125 max = v; 00126 else if(v < min) 00127 min = v; 00128 } 00129 else 00130 min = max = v; 00131 00132 sum += v; 00133 } 00134 00135 if(flags & OSG_SMOOTH) 00136 { 00137 value = sum / size; 00138 00139 //_history[ID][queueEnd] = value; 00140 } 00141 00142 if((flags & OSG_OVERFLOW_RESIZE) && (max < getMaxValue()[elementID])) 00143 { 00144 max += (getMaxValue()[elementID] - max) / 2.0f; 00145 getMaxValue()[elementID] = osgMax(v, max); 00146 } 00147 00148 if((flags & OSG_UNDERFLOW_RESIZE) && (min > getMinValue()[elementID])) 00149 { 00150 min -= (min - getMinValue()[elementID]) / 2.0f; 00151 getMinValue()[elementID] = osgMin(v, min); 00152 } 00153 } 00154 } 00155 }
| void GraphicStatisticsForeground::initMethod | ( | void | ) | [static, private] |
Reimplemented from osg::StatisticsForeground.
Definition at line 104 of file OSGGraphicStatisticsForeground.cpp.
| void osg::GraphicStatisticsForeground::operator= | ( | const GraphicStatisticsForeground & | source | ) | [private] |
| osg::FieldContainerType & osg::GraphicStatisticsForegroundBase::getClassType | ( | void | ) | [inline, static, inherited] |
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 58 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_type.
Referenced by osg::GraphicStatisticsForegroundBase::create().
00059 { 00060 return _type; 00061 }
| osg::UInt32 osg::GraphicStatisticsForegroundBase::getClassTypeId | ( | void | ) | [inline, static, inherited] |
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 65 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_type, and osg::TypeBase::getId().
00066 { 00067 return _type.getId(); 00068 }
| FieldContainerType & GraphicStatisticsForegroundBase::getType | ( | void | ) | [virtual, inherited] |
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 271 of file OSGGraphicStatisticsForegroundBase.cpp.
References osg::GraphicStatisticsForegroundBase::_type.
00272 { 00273 return _type; 00274 }
| const FieldContainerType & GraphicStatisticsForegroundBase::getType | ( | void | ) | const [virtual, inherited] |
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 276 of file OSGGraphicStatisticsForegroundBase.cpp.
References osg::GraphicStatisticsForegroundBase::_type.
00277 { 00278 return _type; 00279 }
| UInt32 GraphicStatisticsForegroundBase::getContainerSize | ( | void | ) | const [virtual, inherited] |
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 291 of file OSGGraphicStatisticsForegroundBase.cpp.
00292 { 00293 return sizeof(GraphicStatisticsForeground); 00294 }
| MFString * osg::GraphicStatisticsForegroundBase::getMFDescription | ( | void | ) | [inline, inherited] |
Definition at line 171 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfDescription.
00172 { 00173 return &_mfDescription; 00174 }
| SFReal32 * osg::GraphicStatisticsForegroundBase::getSFLineWidth | ( | void | ) | [inline, inherited] |
Definition at line 178 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfLineWidth.
00179 { 00180 return &_sfLineWidth; 00181 }
| SFColor3f * osg::GraphicStatisticsForegroundBase::getSFBackgroundColor | ( | void | ) | [inline, inherited] |
Definition at line 185 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBackgroundColor.
00186 { 00187 return &_sfBackgroundColor; 00188 }
| SFBool * osg::GraphicStatisticsForegroundBase::getSFTextEnabled | ( | void | ) | [inline, inherited] |
Definition at line 192 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfTextEnabled.
00193 { 00194 return &_sfTextEnabled; 00195 }
| SFBool * osg::GraphicStatisticsForegroundBase::getSFBackgroundEnabled | ( | void | ) | [inline, inherited] |
Definition at line 199 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBackgroundEnabled.
00200 { 00201 return &_sfBackgroundEnabled; 00202 }
| SFBool * osg::GraphicStatisticsForegroundBase::getSFBorderEnabled | ( | void | ) | [inline, inherited] |
Definition at line 206 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBorderEnabled.
00207 { 00208 return &_sfBorderEnabled; 00209 }
| Real32 & osg::GraphicStatisticsForegroundBase::getLineWidth | ( | void | ) | [inline, inherited] |
Definition at line 214 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfLineWidth, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
Referenced by draw(), and drawLineChart().
00215 { 00216 return _sfLineWidth.getValue(); 00217 }
| const Real32 & osg::GraphicStatisticsForegroundBase::getLineWidth | ( | void | ) | const [inline, inherited] |
Definition at line 221 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfLineWidth, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
00222 { 00223 return _sfLineWidth.getValue(); 00224 }
| Color3f & osg::GraphicStatisticsForegroundBase::getBackgroundColor | ( | void | ) | [inline, inherited] |
Definition at line 235 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBackgroundColor, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
Referenced by drawAnalog(), drawBar(), drawChart(), drawLineChart(), and drawText().
00236 { 00237 return _sfBackgroundColor.getValue(); 00238 }
| const Color3f & osg::GraphicStatisticsForegroundBase::getBackgroundColor | ( | void | ) | const [inline, inherited] |
Definition at line 242 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBackgroundColor, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
00243 { 00244 return _sfBackgroundColor.getValue(); 00245 }
| bool & osg::GraphicStatisticsForegroundBase::getTextEnabled | ( | void | ) | [inline, inherited] |
Definition at line 256 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfTextEnabled, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
Referenced by drawAnalog(), drawBar(), drawChart(), and drawLineChart().
00257 { 00258 return _sfTextEnabled.getValue(); 00259 }
| const bool & osg::GraphicStatisticsForegroundBase::getTextEnabled | ( | void | ) | const [inline, inherited] |
Definition at line 263 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfTextEnabled, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
00264 { 00265 return _sfTextEnabled.getValue(); 00266 }
| bool & osg::GraphicStatisticsForegroundBase::getBackgroundEnabled | ( | void | ) | [inline, inherited] |
Definition at line 277 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBackgroundEnabled, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
Referenced by drawAnalog(), drawBar(), drawChart(), drawLineChart(), and drawText().
00278 { 00279 return _sfBackgroundEnabled.getValue(); 00280 }
| const bool & osg::GraphicStatisticsForegroundBase::getBackgroundEnabled | ( | void | ) | const [inline, inherited] |
Definition at line 284 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBackgroundEnabled, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
00285 { 00286 return _sfBackgroundEnabled.getValue(); 00287 }
| bool & osg::GraphicStatisticsForegroundBase::getBorderEnabled | ( | void | ) | [inline, inherited] |
Definition at line 298 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBorderEnabled, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
Referenced by drawAnalog(), drawBar(), drawChart(), drawLineChart(), and drawText().
00299 { 00300 return _sfBorderEnabled.getValue(); 00301 }
| const bool & osg::GraphicStatisticsForegroundBase::getBorderEnabled | ( | void | ) | const [inline, inherited] |
Definition at line 305 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBorderEnabled, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
00306 { 00307 return _sfBorderEnabled.getValue(); 00308 }
| std::string & osg::GraphicStatisticsForegroundBase::getDescription | ( | const UInt32 | index | ) | [inline, inherited] |
Definition at line 530 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfDescription.
00531 { 00532 return _mfDescription[index]; 00533 }
| MFString & osg::GraphicStatisticsForegroundBase::getDescription | ( | void | ) | [inline, inherited] |
Definition at line 537 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfDescription.
Referenced by addElement(), drawBar(), drawChart(), drawLineChart(), and drawText().
00538 { 00539 return _mfDescription; 00540 }
| const MFString & osg::GraphicStatisticsForegroundBase::getDescription | ( | void | ) | const [inline, inherited] |
Definition at line 544 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfDescription.
00545 { 00546 return _mfDescription; 00547 }
| void osg::GraphicStatisticsForegroundBase::setLineWidth | ( | const Real32 & | value | ) | [inline, inherited] |
Definition at line 228 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfLineWidth, and osg::SField< FieldTypeT, fieldNameSpace >::setValue().
00229 { 00230 _sfLineWidth.setValue(value); 00231 }
| void osg::GraphicStatisticsForegroundBase::setBackgroundColor | ( | const Color3f & | value | ) | [inline, inherited] |
Definition at line 249 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBackgroundColor, and osg::SField< FieldTypeT, fieldNameSpace >::setValue().
00250 { 00251 _sfBackgroundColor.setValue(value); 00252 }
| void osg::GraphicStatisticsForegroundBase::setTextEnabled | ( | const bool & | value | ) | [inline, inherited] |
Definition at line 270 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfTextEnabled, and osg::SField< FieldTypeT, fieldNameSpace >::setValue().
00271 { 00272 _sfTextEnabled.setValue(value); 00273 }
| void osg::GraphicStatisticsForegroundBase::setBackgroundEnabled | ( | const bool & | value | ) | [inline, inherited] |
Definition at line 291 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBackgroundEnabled, and osg::SField< FieldTypeT, fieldNameSpace >::setValue().
00292 { 00293 _sfBackgroundEnabled.setValue(value); 00294 }
| void osg::GraphicStatisticsForegroundBase::setBorderEnabled | ( | const bool & | value | ) | [inline, inherited] |
Definition at line 312 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_sfBorderEnabled, and osg::SField< FieldTypeT, fieldNameSpace >::setValue().
00313 { 00314 _sfBorderEnabled.setValue(value); 00315 }
| UInt32 GraphicStatisticsForegroundBase::getBinSize | ( | const BitVector & | whichField | ) | [virtual, inherited] |
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 394 of file OSGGraphicStatisticsForegroundBase.cpp.
References osg::GraphicStatisticsForegroundBase::_mfColorCurrent, osg::GraphicStatisticsForegroundBase::_mfColorMax, osg::GraphicStatisticsForegroundBase::_mfColorMin, osg::GraphicStatisticsForegroundBase::_mfDescription, osg::GraphicStatisticsForegroundBase::_mfDisplayType, osg::GraphicStatisticsForegroundBase::_mfFlags, osg::GraphicStatisticsForegroundBase::_mfHistorySize, osg::GraphicStatisticsForegroundBase::_mfMaxValue, osg::GraphicStatisticsForegroundBase::_mfMinValue, osg::GraphicStatisticsForegroundBase::_mfPos, osg::GraphicStatisticsForegroundBase::_mfSize, osg::GraphicStatisticsForegroundBase::_sfBackgroundColor, osg::GraphicStatisticsForegroundBase::_sfBackgroundEnabled, osg::GraphicStatisticsForegroundBase::_sfBorderEnabled, osg::GraphicStatisticsForegroundBase::_sfLineWidth, osg::GraphicStatisticsForegroundBase::_sfTextEnabled, osg::GraphicStatisticsForegroundBase::BackgroundColorFieldMask, osg::GraphicStatisticsForegroundBase::BackgroundEnabledFieldMask, osg::GraphicStatisticsForegroundBase::BorderEnabledFieldMask, osg::GraphicStatisticsForegroundBase::ColorCurrentFieldMask, osg::GraphicStatisticsForegroundBase::ColorMaxFieldMask, osg::GraphicStatisticsForegroundBase::ColorMinFieldMask, osg::GraphicStatisticsForegroundBase::DescriptionFieldMask, osg::GraphicStatisticsForegroundBase::DisplayTypeFieldMask, osg::GraphicStatisticsForegroundBase::FlagsFieldMask, osg::SField< FieldTypeT, fieldNameSpace >::getBinSize(), osg::MField< FieldTypeT, fieldNameSpace >::getBinSize(), osg::StatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::HistorySizeFieldMask, osg::GraphicStatisticsForegroundBase::LineWidthFieldMask, osg::GraphicStatisticsForegroundBase::MaxValueFieldMask, osg::GraphicStatisticsForegroundBase::MinValueFieldMask, osg::FieldBits::NoField, osg::GraphicStatisticsForegroundBase::PosFieldMask, osg::GraphicStatisticsForegroundBase::SizeFieldMask, and osg::GraphicStatisticsForegroundBase::TextEnabledFieldMask.
00395 { 00396 UInt32 returnValue = Inherited::getBinSize(whichField); 00397 00398 if(FieldBits::NoField != (DisplayTypeFieldMask & whichField)) 00399 { 00400 returnValue += _mfDisplayType.getBinSize(); 00401 } 00402 00403 if(FieldBits::NoField != (SizeFieldMask & whichField)) 00404 { 00405 returnValue += _mfSize.getBinSize(); 00406 } 00407 00408 if(FieldBits::NoField != (PosFieldMask & whichField)) 00409 { 00410 returnValue += _mfPos.getBinSize(); 00411 } 00412 00413 if(FieldBits::NoField != (ColorMaxFieldMask & whichField)) 00414 { 00415 returnValue += _mfColorMax.getBinSize(); 00416 } 00417 00418 if(FieldBits::NoField != (ColorMinFieldMask & whichField)) 00419 { 00420 returnValue += _mfColorMin.getBinSize(); 00421 } 00422 00423 if(FieldBits::NoField != (ColorCurrentFieldMask & whichField)) 00424 { 00425 returnValue += _mfColorCurrent.getBinSize(); 00426 } 00427 00428 if(FieldBits::NoField != (MinValueFieldMask & whichField)) 00429 { 00430 returnValue += _mfMinValue.getBinSize(); 00431 } 00432 00433 if(FieldBits::NoField != (MaxValueFieldMask & whichField)) 00434 { 00435 returnValue += _mfMaxValue.getBinSize(); 00436 } 00437 00438 if(FieldBits::NoField != (FlagsFieldMask & whichField)) 00439 { 00440 returnValue += _mfFlags.getBinSize(); 00441 } 00442 00443 if(FieldBits::NoField != (HistorySizeFieldMask & whichField)) 00444 { 00445 returnValue += _mfHistorySize.getBinSize(); 00446 } 00447 00448 if(FieldBits::NoField != (DescriptionFieldMask & whichField)) 00449 { 00450 returnValue += _mfDescription.getBinSize(); 00451 } 00452 00453 if(FieldBits::NoField != (LineWidthFieldMask & whichField)) 00454 { 00455 returnValue += _sfLineWidth.getBinSize(); 00456 } 00457 00458 if(FieldBits::NoField != (BackgroundColorFieldMask & whichField)) 00459 { 00460 returnValue += _sfBackgroundColor.getBinSize(); 00461 } 00462 00463 if(FieldBits::NoField != (TextEnabledFieldMask & whichField)) 00464 { 00465 returnValue += _sfTextEnabled.getBinSize(); 00466 } 00467 00468 if(FieldBits::NoField != (BackgroundEnabledFieldMask & whichField)) 00469 { 00470 returnValue += _sfBackgroundEnabled.getBinSize(); 00471 } 00472 00473 if(FieldBits::NoField != (BorderEnabledFieldMask & whichField)) 00474 { 00475 returnValue += _sfBorderEnabled.getBinSize(); 00476 } 00477 00478 00479 return returnValue; 00480 }
| void GraphicStatisticsForegroundBase::copyToBin | ( | BinaryDataHandler & | pMem, | |
| const BitVector & | whichField | |||
| ) | [virtual, inherited] |
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 482 of file OSGGraphicStatisticsForegroundBase.cpp.
References osg::GraphicStatisticsForegroundBase::_mfColorCurrent, osg::GraphicStatisticsForegroundBase::_mfColorMax, osg::GraphicStatisticsForegroundBase::_mfColorMin, osg::GraphicStatisticsForegroundBase::_mfDescription, osg::GraphicStatisticsForegroundBase::_mfDisplayType, osg::GraphicStatisticsForegroundBase::_mfFlags, osg::GraphicStatisticsForegroundBase::_mfHistorySize, osg::GraphicStatisticsForegroundBase::_mfMaxValue, osg::GraphicStatisticsForegroundBase::_mfMinValue, osg::GraphicStatisticsForegroundBase::_mfPos, osg::GraphicStatisticsForegroundBase::_mfSize, osg::GraphicStatisticsForegroundBase::_sfBackgroundColor, osg::GraphicStatisticsForegroundBase::_sfBackgroundEnabled, osg::GraphicStatisticsForegroundBase::_sfBorderEnabled, osg::GraphicStatisticsForegroundBase::_sfLineWidth, osg::GraphicStatisticsForegroundBase::_sfTextEnabled, osg::GraphicStatisticsForegroundBase::BackgroundColorFieldMask, osg::GraphicStatisticsForegroundBase::BackgroundEnabledFieldMask, osg::GraphicStatisticsForegroundBase::BorderEnabledFieldMask, osg::GraphicStatisticsForegroundBase::ColorCurrentFieldMask, osg::GraphicStatisticsForegroundBase::ColorMaxFieldMask, osg::GraphicStatisticsForegroundBase::ColorMinFieldMask, osg::SField< FieldTypeT, fieldNameSpace >::copyToBin(), osg::MField< FieldTypeT, fieldNameSpace >::copyToBin(), osg::StatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::DescriptionFieldMask, osg::GraphicStatisticsForegroundBase::DisplayTypeFieldMask, osg::GraphicStatisticsForegroundBase::FlagsFieldMask, osg::GraphicStatisticsForegroundBase::HistorySizeFieldMask, osg::GraphicStatisticsForegroundBase::LineWidthFieldMask, osg::GraphicStatisticsForegroundBase::MaxValueFieldMask, osg::GraphicStatisticsForegroundBase::MinValueFieldMask, osg::FieldBits::NoField, osg::GraphicStatisticsForegroundBase::PosFieldMask, osg::GraphicStatisticsForegroundBase::SizeFieldMask, and osg::GraphicStatisticsForegroundBase::TextEnabledFieldMask.
00484 { 00485 Inherited::copyToBin(pMem, whichField); 00486 00487 if(FieldBits::NoField != (DisplayTypeFieldMask & whichField)) 00488 { 00489 _mfDisplayType.copyToBin(pMem); 00490 } 00491 00492 if(FieldBits::NoField != (SizeFieldMask & whichField)) 00493 { 00494 _mfSize.copyToBin(pMem); 00495 } 00496 00497 if(FieldBits::NoField != (PosFieldMask & whichField)) 00498 { 00499 _mfPos.copyToBin(pMem); 00500 } 00501 00502 if(FieldBits::NoField != (ColorMaxFieldMask & whichField)) 00503 { 00504 _mfColorMax.copyToBin(pMem); 00505 } 00506 00507 if(FieldBits::NoField != (ColorMinFieldMask & whichField)) 00508 { 00509 _mfColorMin.copyToBin(pMem); 00510 } 00511 00512 if(FieldBits::NoField != (ColorCurrentFieldMask & whichField)) 00513 { 00514 _mfColorCurrent.copyToBin(pMem); 00515 } 00516 00517 if(FieldBits::NoField != (MinValueFieldMask & whichField)) 00518 { 00519 _mfMinValue.copyToBin(pMem); 00520 } 00521 00522 if(FieldBits::NoField != (MaxValueFieldMask & whichField)) 00523 { 00524 _mfMaxValue.copyToBin(pMem); 00525 } 00526 00527 if(FieldBits::NoField != (FlagsFieldMask & whichField)) 00528 { 00529 _mfFlags.copyToBin(pMem); 00530 } 00531 00532 if(FieldBits::NoField != (HistorySizeFieldMask & whichField)) 00533 { 00534 _mfHistorySize.copyToBin(pMem); 00535 } 00536 00537 if(FieldBits::NoField != (DescriptionFieldMask & whichField)) 00538 { 00539 _mfDescription.copyToBin(pMem); 00540 } 00541 00542 if(FieldBits::NoField != (LineWidthFieldMask & whichField)) 00543 { 00544 _sfLineWidth.copyToBin(pMem); 00545 } 00546 00547 if(FieldBits::NoField != (BackgroundColorFieldMask & whichField)) 00548 { 00549 _sfBackgroundColor.copyToBin(pMem); 00550 } 00551 00552 if(FieldBits::NoField != (TextEnabledFieldMask & whichField)) 00553 { 00554 _sfTextEnabled.copyToBin(pMem); 00555 } 00556 00557 if(FieldBits::NoField != (BackgroundEnabledFieldMask & whichField)) 00558 { 00559 _sfBackgroundEnabled.copyToBin(pMem); 00560 } 00561 00562 if(FieldBits::NoField != (BorderEnabledFieldMask & whichField)) 00563 { 00564 _sfBorderEnabled.copyToBin(pMem); 00565 } 00566 00567 00568 }
| void GraphicStatisticsForegroundBase::copyFromBin | ( | BinaryDataHandler & | pMem, | |
| const BitVector & | whichField | |||
| ) | [virtual, inherited] |
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 570 of file OSGGraphicStatisticsForegroundBase.cpp.
References osg::GraphicStatisticsForegroundBase::_mfColorCurrent, osg::GraphicStatisticsForegroundBase::_mfColorMax, osg::GraphicStatisticsForegroundBase::_mfColorMin, osg::GraphicStatisticsForegroundBase::_mfDescription, osg::GraphicStatisticsForegroundBase::_mfDisplayType, osg::GraphicStatisticsForegroundBase::_mfFlags, osg::GraphicStatisticsForegroundBase::_mfHistorySize, osg::GraphicStatisticsForegroundBase::_mfMaxValue, osg::GraphicStatisticsForegroundBase::_mfMinValue, osg::GraphicStatisticsForegroundBase::_mfPos, osg::GraphicStatisticsForegroundBase::_mfSize, osg::GraphicStatisticsForegroundBase::_sfBackgroundColor, osg::GraphicStatisticsForegroundBase::_sfBackgroundEnabled, osg::GraphicStatisticsForegroundBase::_sfBorderEnabled, osg::GraphicStatisticsForegroundBase::_sfLineWidth, osg::GraphicStatisticsForegroundBase::_sfTextEnabled, osg::GraphicStatisticsForegroundBase::BackgroundColorFieldMask, osg::GraphicStatisticsForegroundBase::BackgroundEnabledFieldMask, osg::GraphicStatisticsForegroundBase::BorderEnabledFieldMask, osg::GraphicStatisticsForegroundBase::ColorCurrentFieldMask, osg::GraphicStatisticsForegroundBase::ColorMaxFieldMask, osg::GraphicStatisticsForegroundBase::ColorMinFieldMask, osg::SField< FieldTypeT, fieldNameSpace >::copyFromBin(), osg::MField< FieldTypeT, fieldNameSpace >::copyFromBin(), osg::StatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::DescriptionFieldMask, osg::GraphicStatisticsForegroundBase::DisplayTypeFieldMask, osg::GraphicStatisticsForegroundBase::FlagsFieldMask, osg::GraphicStatisticsForegroundBase::HistorySizeFieldMask, osg::GraphicStatisticsForegroundBase::LineWidthFieldMask, osg::GraphicStatisticsForegroundBase::MaxValueFieldMask, osg::GraphicStatisticsForegroundBase::MinValueFieldMask, osg::FieldBits::NoField, osg::GraphicStatisticsForegroundBase::PosFieldMask, osg::GraphicStatisticsForegroundBase::SizeFieldMask, and osg::GraphicStatisticsForegroundBase::TextEnabledFieldMask.
00572 { 00573 Inherited::copyFromBin(pMem, whichField); 00574 00575 if(FieldBits::NoField != (DisplayTypeFieldMask & whichField)) 00576 { 00577 _mfDisplayType.copyFromBin(pMem); 00578 } 00579 00580 if(FieldBits::NoField != (SizeFieldMask & whichField)) 00581 { 00582 _mfSize.copyFromBin(pMem); 00583 } 00584 00585 if(FieldBits::NoField != (PosFieldMask & whichField)) 00586 { 00587 _mfPos.copyFromBin(pMem); 00588 } 00589 00590 if(FieldBits::NoField != (ColorMaxFieldMask & whichField)) 00591 { 00592 _mfColorMax.copyFromBin(pMem); 00593 } 00594 00595 if(FieldBits::NoField != (ColorMinFieldMask & whichField)) 00596 { 00597 _mfColorMin.copyFromBin(pMem); 00598 } 00599 00600 if(FieldBits::NoField != (ColorCurrentFieldMask & whichField)) 00601 { 00602 _mfColorCurrent.copyFromBin(pMem); 00603 } 00604 00605 if(FieldBits::NoField != (MinValueFieldMask & whichField)) 00606 { 00607 _mfMinValue.copyFromBin(pMem); 00608 } 00609 00610 if(FieldBits::NoField != (MaxValueFieldMask & whichField)) 00611 { 00612 _mfMaxValue.copyFromBin(pMem); 00613 } 00614 00615 if(FieldBits::NoField != (FlagsFieldMask & whichField)) 00616 { 00617 _mfFlags.copyFromBin(pMem); 00618 } 00619 00620 if(FieldBits::NoField != (HistorySizeFieldMask & whichField)) 00621 { 00622 _mfHistorySize.copyFromBin(pMem); 00623 } 00624 00625 if(FieldBits::NoField != (DescriptionFieldMask & whichField)) 00626 { 00627 _mfDescription.copyFromBin(pMem); 00628 } 00629 00630 if(FieldBits::NoField != (LineWidthFieldMask & whichField)) 00631 { 00632 _sfLineWidth.copyFromBin(pMem); 00633 } 00634 00635 if(FieldBits::NoField != (BackgroundColorFieldMask & whichField)) 00636 { 00637 _sfBackgroundColor.copyFromBin(pMem); 00638 } 00639 00640 if(FieldBits::NoField != (TextEnabledFieldMask & whichField)) 00641 { 00642 _sfTextEnabled.copyFromBin(pMem); 00643 } 00644 00645 if(FieldBits::NoField != (BackgroundEnabledFieldMask & whichField)) 00646 { 00647 _sfBackgroundEnabled.copyFromBin(pMem); 00648 } 00649 00650 if(FieldBits::NoField != (BorderEnabledFieldMask & whichField)) 00651 { 00652 _sfBorderEnabled.copyFromBin(pMem); 00653 } 00654 00655 00656 }
| GraphicStatisticsForegroundPtr osg::GraphicStatisticsForegroundBase::create | ( | void | ) | [inline, static, inherited] |
Definition at line 72 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::AttachmentContainerPtr::dcast(), osg::GraphicStatisticsForegroundBase::getClassType(), osg::NullFC, and osg::GraphicStatisticsForegroundBase::shallowCopy().
00073 { 00074 GraphicStatisticsForegroundPtr fc; 00075 00076 if(getClassType().getPrototype() != OSG::NullFC) 00077 { 00078 fc = GraphicStatisticsForegroundPtr::dcast( 00079 getClassType().getPrototype()-> shallowCopy()); 00080 } 00081 00082 return fc; 00083 }
| GraphicStatisticsForegroundPtr osg::GraphicStatisticsForegroundBase::createEmpty | ( | void | ) | [inline, static, inherited] |
Definition at line 87 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::FieldContainer::newPtr().
00088 { 00089 GraphicStatisticsForegroundPtr returnValue; 00090 00091 newPtr(returnValue); 00092 00093 return returnValue; 00094 }
| FieldContainerPtr GraphicStatisticsForegroundBase::shallowCopy | ( | void | ) | const [virtual, inherited] |
Implements osg::FieldContainer.
Definition at line 282 of file OSGGraphicStatisticsForegroundBase.cpp.
References osg::FieldContainer::newPtr().
Referenced by osg::GraphicStatisticsForegroundBase::create().
00283 { 00284 GraphicStatisticsForegroundPtr returnValue; 00285 00286 newPtr(returnValue, dynamic_cast<const GraphicStatisticsForeground *>(this)); 00287 00288 return returnValue; 00289 }
| MFUInt32 * osg::GraphicStatisticsForegroundBase::getMFDisplayType | ( | void | ) | [inline, protected, inherited] |
Definition at line 101 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfDisplayType.
00102 { 00103 return &_mfDisplayType; 00104 }
| MFVec2f * osg::GraphicStatisticsForegroundBase::getMFSize | ( | void | ) | [inline, protected, inherited] |
Definition at line 108 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfSize.
00109 { 00110 return &_mfSize; 00111 }
| MFVec2f * osg::GraphicStatisticsForegroundBase::getMFPos | ( | void | ) | [inline, protected, inherited] |
Definition at line 115 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfPos.
00116 { 00117 return &_mfPos; 00118 }
| MFColor4f * osg::GraphicStatisticsForegroundBase::getMFColorMax | ( | void | ) | [inline, protected, inherited] |
Definition at line 122 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorMax.
00123 { 00124 return &_mfColorMax; 00125 }
| MFColor4f * osg::GraphicStatisticsForegroundBase::getMFColorMin | ( | void | ) | [inline, protected, inherited] |
Definition at line 129 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorMin.
00130 { 00131 return &_mfColorMin; 00132 }
| MFColor4f * osg::GraphicStatisticsForegroundBase::getMFColorCurrent | ( | void | ) | [inline, protected, inherited] |
Definition at line 136 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorCurrent.
00137 { 00138 return &_mfColorCurrent; 00139 }
| MFReal32 * osg::GraphicStatisticsForegroundBase::getMFMinValue | ( | void | ) | [inline, protected, inherited] |
Definition at line 143 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfMinValue.
00144 { 00145 return &_mfMinValue; 00146 }
| MFReal32 * osg::GraphicStatisticsForegroundBase::getMFMaxValue | ( | void | ) | [inline, protected, inherited] |
Definition at line 150 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfMaxValue.
00151 { 00152 return &_mfMaxValue; 00153 }
| MFUInt32 * osg::GraphicStatisticsForegroundBase::getMFFlags | ( | void | ) | [inline, protected, inherited] |
Definition at line 157 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfFlags.
00158 { 00159 return &_mfFlags; 00160 }
| MFUInt32 * osg::GraphicStatisticsForegroundBase::getMFHistorySize | ( | void | ) | [inline, protected, inherited] |
Definition at line 164 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfHistorySize.
00165 { 00166 return &_mfHistorySize; 00167 }
| UInt32 & osg::GraphicStatisticsForegroundBase::getDisplayType | ( | UInt32 | index | ) | [inline, protected, inherited] |
Definition at line 320 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfDisplayType.
00321 { 00322 return _mfDisplayType[index]; 00323 }
| MFUInt32 & osg::GraphicStatisticsForegroundBase::getDisplayType | ( | void | ) | [inline, protected, inherited] |
Definition at line 327 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfDisplayType.
Referenced by addElement(), draw(), and removeElement().
00328 { 00329 return _mfDisplayType; 00330 }
| const MFUInt32 & osg::GraphicStatisticsForegroundBase::getDisplayType | ( | void | ) | const [inline, protected, inherited] |
Definition at line 334 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfDisplayType.
00335 { 00336 return _mfDisplayType; 00337 }
| Vec2f & osg::GraphicStatisticsForegroundBase::getSize | ( | UInt32 | index | ) | [inline, protected, inherited] |
Definition at line 341 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfSize.
00342 { 00343 return _mfSize[index]; 00344 }
| MFVec2f & osg::GraphicStatisticsForegroundBase::getSize | ( | void | ) | [inline, protected, inherited] |
Definition at line 348 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfSize.
Referenced by addElement(), calcPosAndSize(), and removeElement().
00349 { 00350 return _mfSize; 00351 }
| const MFVec2f & osg::GraphicStatisticsForegroundBase::getSize | ( | void | ) | const [inline, protected, inherited] |
Definition at line 355 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfSize.
00356 { 00357 return _mfSize; 00358 }
| Vec2f & osg::GraphicStatisticsForegroundBase::getPos | ( | UInt32 | index | ) | [inline, protected, inherited] |
Definition at line 362 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfPos.
00363 { 00364 return _mfPos[index]; 00365 }
| MFVec2f & osg::GraphicStatisticsForegroundBase::getPos | ( | void | ) | [inline, protected, inherited] |
Definition at line 369 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfPos.
Referenced by addElement(), calcPosAndSize(), and removeElement().
00370 { 00371 return _mfPos; 00372 }
| const MFVec2f & osg::GraphicStatisticsForegroundBase::getPos | ( | void | ) | const [inline, protected, inherited] |
Definition at line 376 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfPos.
00377 { 00378 return _mfPos; 00379 }
| Color4f & osg::GraphicStatisticsForegroundBase::getColorMax | ( | UInt32 | index | ) | [inline, protected, inherited] |
Definition at line 383 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorMax.
00384 { 00385 return _mfColorMax[index]; 00386 }
| MFColor4f & osg::GraphicStatisticsForegroundBase::getColorMax | ( | void | ) | [inline, protected, inherited] |
Definition at line 390 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorMax.
Referenced by addElement(), drawAnalog(), drawBar(), and removeElement().
00391 { 00392 return _mfColorMax; 00393 }
| const MFColor4f & osg::GraphicStatisticsForegroundBase::getColorMax | ( | void | ) | const [inline, protected, inherited] |
Definition at line 397 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorMax.
00398 { 00399 return _mfColorMax; 00400 }
| Color4f & osg::GraphicStatisticsForegroundBase::getColorMin | ( | UInt32 | index | ) | [inline, protected, inherited] |
Definition at line 404 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorMin.
00405 { 00406 return _mfColorMin[index]; 00407 }
| MFColor4f & osg::GraphicStatisticsForegroundBase::getColorMin | ( | void | ) | [inline, protected, inherited] |
Definition at line 411 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorMin.
Referenced by addElement(), drawAnalog(), drawBar(), and removeElement().
00412 { 00413 return _mfColorMin; 00414 }
| const MFColor4f & osg::GraphicStatisticsForegroundBase::getColorMin | ( | void | ) | const [inline, protected, inherited] |
Definition at line 418 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorMin.
00419 { 00420 return _mfColorMin; 00421 }
| Color4f & osg::GraphicStatisticsForegroundBase::getColorCurrent | ( | UInt32 | index | ) | [inline, protected, inherited] |
Definition at line 425 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorCurrent.
00426 { 00427 return _mfColorCurrent[index]; 00428 }
| MFColor4f & osg::GraphicStatisticsForegroundBase::getColorCurrent | ( | void | ) | [inline, protected, inherited] |
Definition at line 432 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorCurrent.
Referenced by addElement(), drawAnalog(), drawBar(), drawChart(), drawLineChart(), and removeElement().
00433 { 00434 return _mfColorCurrent; 00435 }
| const MFColor4f & osg::GraphicStatisticsForegroundBase::getColorCurrent | ( | void | ) | const [inline, protected, inherited] |
Definition at line 439 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfColorCurrent.
00440 { 00441 return _mfColorCurrent; 00442 }
| Real32 & osg::GraphicStatisticsForegroundBase::getMinValue | ( | UInt32 | index | ) | [inline, protected, inherited] |
Definition at line 446 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfMinValue.
00447 { 00448 return _mfMinValue[index]; 00449 }
| MFReal32 & osg::GraphicStatisticsForegroundBase::getMinValue | ( | void | ) | [inline, protected, inherited] |
Definition at line 453 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfMinValue.
Referenced by addElement(), addValueToHistory(), changed(), drawAnalog(), drawBar(), drawChart(), drawLineChart(), drawText(), processOnlyValue(), and removeElement().
00454 { 00455 return _mfMinValue; 00456 }
| const MFReal32 & osg::GraphicStatisticsForegroundBase::getMinValue | ( | void | ) | const [inline, protected, inherited] |
Definition at line 460 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfMinValue.
00461 { 00462 return _mfMinValue; 00463 }
| Real32 & osg::GraphicStatisticsForegroundBase::getMaxValue | ( | UInt32 | index | ) | [inline, protected, inherited] |
Definition at line 467 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfMaxValue.
00468 { 00469 return _mfMaxValue[index]; 00470 }
| MFReal32 & osg::GraphicStatisticsForegroundBase::getMaxValue | ( | void | ) | [inline, protected, inherited] |
Definition at line 474 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfMaxValue.
Referenced by addElement(), addValueToHistory(), changed(), drawAnalog(), drawBar(), drawChart(), drawLineChart(), drawText(), processOnlyValue(), and removeElement().
00475 { 00476 return _mfMaxValue; 00477 }
| const MFReal32 & osg::GraphicStatisticsForegroundBase::getMaxValue | ( | void | ) | const [inline, protected, inherited] |
Definition at line 481 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfMaxValue.
00482 { 00483 return _mfMaxValue; 00484 }
| UInt32 & osg::GraphicStatisticsForegroundBase::getFlags | ( | UInt32 | index | ) | [inline, protected, inherited] |
Definition at line 488 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfFlags.
00489 { 00490 return _mfFlags[index]; 00491 }
| MFUInt32 & osg::GraphicStatisticsForegroundBase::getFlags | ( | void | ) | [inline, protected, inherited] |
Definition at line 495 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfFlags.
Referenced by addElement(), addValueToHistory(), drawAnalog(), drawLineChart(), processOnlyValue(), and removeElement().
00496 { 00497 return _mfFlags; 00498 }
| const MFUInt32 & osg::GraphicStatisticsForegroundBase::getFlags | ( | void | ) | const [inline, protected, inherited] |
Definition at line 502 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfFlags.
00503 { 00504 return _mfFlags; 00505 }
| UInt32 & osg::GraphicStatisticsForegroundBase::getHistorySize | ( | UInt32 | index | ) | [inline, protected, inherited] |
Definition at line 509 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfHistorySize.
00510 { 00511 return _mfHistorySize[index]; 00512 }
| MFUInt32 & osg::GraphicStatisticsForegroundBase::getHistorySize | ( | void | ) | [inline, protected, inherited] |
Definition at line 516 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfHistorySize.
Referenced by addElement(), changed(), and removeElement().
00517 { 00518 return _mfHistorySize; 00519 }
| const MFUInt32 & osg::GraphicStatisticsForegroundBase::getHistorySize | ( | void | ) | const [inline, protected, inherited] |
Definition at line 523 of file OSGGraphicStatisticsForegroundBase.inl.
References osg::GraphicStatisticsForegroundBase::_mfHistorySize.
00524 { 00525 return _mfHistorySize; 00526 }
| void GraphicStatisticsForegroundBase::executeSyncImpl | ( | GraphicStatisticsForegroundBase * | pOther, | |
| const BitVector & | whichField | |||
| ) | [protected, inherited] |
Definition at line 659 of file OSGGraphicStatisticsForegroundBase.cpp.
References osg::GraphicStatisticsForegroundBase::_mfColorCurrent, osg::GraphicStatisticsForegroundBase::_mfColorMax, osg::GraphicStatisticsForegroundBase::_mfColorMin, osg::GraphicStatisticsForegroundBase::_mfDescription, osg::GraphicStatisticsForegroundBase::_mfDisplayType, osg::GraphicStatisticsForegroundBase::_mfFlags, osg::GraphicStatisticsForegroundBase::_mfHistorySize, osg::GraphicStatisticsForegroundBase::_mfMaxValue, osg::GraphicStatisticsForegroundBase::_mfMinValue, osg::GraphicStatisticsForegroundBase::_mfPos, osg::GraphicStatisticsForegroundBase::_mfSize, osg::GraphicStatisticsForegroundBase::_sfBackgroundColor, osg::GraphicStatisticsForegroundBase::_sfBackgroundEnabled, osg::GraphicStatisticsForegroundBase::_sfBorderEnabled, osg::GraphicStatisticsForegroundBase::_sfLineWidth, osg::GraphicStatisticsForegroundBase::_sfTextEnabled, osg::GraphicStatisticsForegroundBase::BackgroundColorFieldMask, osg::GraphicStatisticsForegroundBase::BackgroundEnabledFieldMask, osg::GraphicStatisticsForegroundBase::BorderEnabledFieldMask, osg::GraphicStatisticsForegroundBase::ColorCurrentFieldMask, osg::GraphicStatisticsForegroundBase::ColorMaxFieldMask, osg::GraphicStatisticsForegroundBase::ColorMinFieldMask, osg::GraphicStatisticsForegroundBase::DescriptionFieldMask, osg::GraphicStatisticsForegroundBase::DisplayTypeFieldMask, osg::StatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::FlagsFieldMask, osg::GraphicStatisticsForegroundBase::HistorySizeFieldMask, osg::GraphicStatisticsForegroundBase::LineWidthFieldMask, osg::GraphicStatisticsForegroundBase::MaxValueFieldMask, osg::GraphicStatisticsForegroundBase::MinValueFieldMask, osg::FieldBits::NoField, osg::GraphicStatisticsForegroundBase::PosFieldMask, osg::GraphicStatisticsForegroundBase::SizeFieldMask, osg::SField< FieldTypeT, fieldNameSpace >::syncWith(), osg::MField< FieldTypeT, fieldNameSpace >::syncWith(), and osg::GraphicStatisticsForegroundBase::TextEnabledFieldMask.
Referenced by osg::GraphicStatisticsForegroundBase::executeSync().
00661 { 00662 00663 Inherited::executeSyncImpl(pOther, whichField); 00664 00665 if(FieldBits::NoField != (DisplayTypeFieldMask & whichField)) 00666 _mfDisplayType.syncWith(pOther->_mfDisplayType); 00667 00668 if(FieldBits::NoField != (SizeFieldMask & whichField)) 00669 _mfSize.syncWith(pOther->_mfSize); 00670 00671 if(FieldBits::NoField != (PosFieldMask & whichField)) 00672 _mfPos.syncWith(pOther->_mfPos); 00673 00674 if(FieldBits::NoField != (ColorMaxFieldMask & whichField)) 00675 _mfColorMax.syncWith(pOther->_mfColorMax); 00676 00677 if(FieldBits::NoField != (ColorMinFieldMask & whichField)) 00678 _mfColorMin.syncWith(pOther->_mfColorMin); 00679 00680 if(FieldBits::NoField != (ColorCurrentFieldMask & whichField)) 00681 _mfColorCurrent.syncWith(pOther->_mfColorCurrent); 00682 00683 if(FieldBits::NoField != (MinValueFieldMask & whichField)) 00684 _mfMinValue.syncWith(pOther->_mfMinValue); 00685 00686 if(FieldBits::NoField != (MaxValueFieldMask & whichField)) 00687 _mfMaxValue.syncWith(pOther->_mfMaxValue); 00688 00689 if(FieldBits::NoField != (FlagsFieldMask & whichField)) 00690 _mfFlags.syncWith(pOther->_mfFlags); 00691 00692 if(FieldBits::NoField != (HistorySizeFieldMask & whichField)) 00693 _mfHistorySize.syncWith(pOther->_mfHistorySize); 00694 00695 if(FieldBits::NoField != (DescriptionFieldMask & whichField)) 00696 _mfDescription.syncWith(pOther->_mfDescription); 00697 00698 if(FieldBits::NoField != (LineWidthFieldMask & whichField)) 00699 _sfLineWidth.syncWith(pOther->_sfLineWidth); 00700 00701 if(FieldBits::NoField != (BackgroundColorFieldMask & whichField)) 00702 _sfBackgroundColor.syncWith(pOther->_sfBackgroundColor); 00703 00704 if(FieldBits::NoField != (TextEnabledFieldMask & whichField)) 00705 _sfTextEnabled.syncWith(pOther->_sfTextEnabled); 00706 00707 if(FieldBits::NoField != (BackgroundEnabledFieldMask & whichField)) 00708 _sfBackgroundEnabled.syncWith(pOther->_sfBackgroundEnabled); 00709 00710 if(FieldBits::NoField != (BorderEnabledFieldMask & whichField)) 00711 _sfBorderEnabled.syncWith(pOther->_sfBorderEnabled); 00712 00713 00714 }
| void StatisticsForegroundBase::executeSyncImpl | ( | StatisticsForegroundBase * | pOther, | |
| const BitVector & | whichField | |||
| ) | [protected, inherited] |
Definition at line 248 of file OSGStatisticsForegroundBase.cpp.
References osg::StatisticsForegroundBase::_mfElementIDs, osg::StatisticsForegroundBase::_sfCollector, osg::StatisticsForegroundBase::CollectorFieldMask, osg::StatisticsForegroundBase::ElementIDsFieldMask, osg::ForegroundBase::executeSyncImpl(), osg::FieldBits::NoField, osg::SField< FieldTypeT, fieldNameSpace >::syncWith(), and osg::MField< FieldTypeT, fieldNameSpace >::syncWith().
Referenced by osg::StatisticsForegroundBase::executeSync(), osg::SimpleStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::executeSyncImpl().
00250 { 00251 00252 Inherited::executeSyncImpl(pOther, whichField); 00253 00254 if(FieldBits::NoField != (ElementIDsFieldMask & whichField)) 00255 _mfElementIDs.syncWith(pOther->_mfElementIDs); 00256 00257 if(FieldBits::NoField != (CollectorFieldMask & whichField)) 00258 _sfCollector.syncWith(pOther->_sfCollector); 00259 00260 00261 }
| void ForegroundBase::executeSyncImpl | ( | ForegroundBase * | pOther, | |
| const BitVector & | whichField | |||
| ) | [protected, inherited] |
Definition at line 219 of file OSGForegroundBase.cpp.
References osg::ForegroundBase::_sfActive, osg::ForegroundBase::ActiveFieldMask, osg::AttachmentContainer::executeSyncImpl(), osg::FieldBits::NoField, and osg::SField< FieldTypeT, fieldNameSpace >::syncWith().
Referenced by osg::ForegroundBase::executeSync(), osg::TextureGrabForegroundBase::executeSyncImpl(), osg::StatisticsForegroundBase::executeSyncImpl(), osg::PolygonForegroundBase::executeSyncImpl(), osg::ImageForegroundBase::executeSyncImpl(), osg::GrabForegroundBase::executeSyncImpl(), and osg::DisplayFilterForegroundBase::executeSyncImpl().
00221 { 00222 00223 Inherited::executeSyncImpl(pOther, whichField); 00224 00225 if(FieldBits::NoField != (ActiveFieldMask & whichField)) 00226 _sfActive.syncWith(pOther->_sfActive); 00227 00228 00229 }
| void AttachmentContainer::executeSyncImpl | ( | AttachmentContainer * | pOther, | |
| const BitVector & | whichField | |||
| ) | [protected, inherited] |
Definition at line 316 of file OSGAttachmentContainer.cpp.
References osg::AttachmentContainer::_attachmentMap, osg::AttachmentContainer::AttachmentsFieldMask, osg::FieldContainer::executeSyncImpl(), osg::FieldBits::NoField, and osg::SField< FieldTypeT, fieldNameSpace >::syncWith().
Referenced by osg::AttachmentContainer::executeSync(), osg::WindowBase::executeSyncImpl(), osg::ViewportBase::executeSyncImpl(), osg::ShaderParameterBase::executeSyncImpl(), osg::Node::executeSyncImpl(), osg::NodeCore::executeSyncImpl(), osg::MaterialBase::executeSyncImpl(), osg::ImageComposerBase::executeSyncImpl(), osg::ImageBase::executeSyncImpl(), osg::ForegroundBase::executeSyncImpl(), osg::DisplayFilterBase::executeSyncImpl(), osg::DisplayCalibrationBase::executeSyncImpl(), osg::CameraBase::executeSyncImpl(), and osg::BackgroundBase::executeSyncImpl().
00319 { 00320 Inherited::executeSyncImpl(pOther, whichField); 00321 00322 if (FieldBits::NoField != (AttachmentsFieldMask & whichField)) 00323 { 00324 _attachmentMap.syncWith(pOther->_attachmentMap); 00325 } 00326 }
| void osg::FieldContainer::executeSyncImpl | ( | FieldContainer * | pOther, | |
| const BitVector & | whichField | |||
| ) | [inline, protected, inherited] |
Definition at line 333 of file OSGFieldContainerImpl.inl.
Referenced by osg::StateBase::executeSyncImpl(), osg::DVRShaderBase::executeSyncImpl(), osg::DVRClipGeometryBase::executeSyncImpl(), osg::AttachmentContainer::executeSyncImpl(), and osg::Attachment::executeSyncImpl().
| void GraphicStatisticsForegroundBase::executeSync | ( | FieldContainer & | other, | |
| const BitVector & | whichField | |||
| ) | [protected, virtual, inherited] |
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 298 of file OSGGraphicStatisticsForegroundBase.cpp.
References osg::GraphicStatisticsForegroundBase::executeSyncImpl().
00300 { 00301 this->executeSyncImpl((GraphicStatisticsForegroundBase *) &other, whichField); 00302 }
| MFInt32 * osg::StatisticsForegroundBase::getMFElementIDs | ( | void | ) | [inline, inherited] |
Definition at line 75 of file OSGStatisticsForegroundBase.inl.
References osg::StatisticsForegroundBase::_mfElementIDs.
00076 { 00077 return &_mfElementIDs; 00078 }
| SFStatCollector * osg::StatisticsForegroundBase::getSFCollector | ( | void | ) | [inline, inherited] |
Definition at line 82 of file OSGStatisticsForegroundBase.inl.
References osg::StatisticsForegroundBase::_sfCollector.
00083 { 00084 return &_sfCollector; 00085 }
| StatCollector & osg::StatisticsForegroundBase::getCollector | ( | void | ) | [inline, inherited] |
Definition at line 90 of file OSGStatisticsForegroundBase.inl.
References osg::StatisticsForegroundBase::_sfCollector, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
Referenced by osg::SimpleStatisticsForeground::clearElems(), osg::SimpleStatisticsForeground::draw(), and draw().
00091 { 00092 return _sfCollector.getValue(); 00093 }
| const StatCollector & osg::StatisticsForegroundBase::getCollector | ( | void | ) | const [inline, inherited] |
Definition at line 97 of file OSGStatisticsForegroundBase.inl.
References osg::StatisticsForegroundBase::_sfCollector, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
00098 { 00099 return _sfCollector.getValue(); 00100 }
Definition at line 112 of file OSGStatisticsForegroundBase.inl.
References osg::StatisticsForegroundBase::_mfElementIDs.
00113 { 00114 return _mfElementIDs[index]; 00115 }
| MFInt32 & osg::StatisticsForegroundBase::getElementIDs | ( | void | ) | [inline, inherited] |
Definition at line 119 of file OSGStatisticsForegroundBase.inl.
References osg::StatisticsForegroundBase::_mfElementIDs.
Referenced by osg::SimpleStatisticsForeground::addElement(), addElement(), osg::SimpleStatisticsForeground::clearElems(), osg::SimpleStatisticsForeground::draw(), draw(), and removeElement().
00120 { 00121 return _mfElementIDs; 00122 }
| const MFInt32 & osg::StatisticsForegroundBase::getElementIDs | ( | void | ) | const [inline, inherited] |
Definition at line 126 of file OSGStatisticsForegroundBase.inl.
References osg::StatisticsForegroundBase::_mfElementIDs.
00127 { 00128 return _mfElementIDs; 00129 }
| void osg::StatisticsForegroundBase::setCollector | ( | const StatCollector & | value | ) | [inline, inherited] |
Definition at line 104 of file OSGStatisticsForegroundBase.inl.
References osg::StatisticsForegroundBase::_sfCollector, and osg::SField< FieldTypeT, fieldNameSpace >::setValue().
00105 { 00106 _sfCollector.setValue(value); 00107 }
| static const char* osg::Foreground::getClassname | ( | void | ) | [inline, static, inherited] |
| SFBool * osg::ForegroundBase::getSFActive | ( | void | ) | [inline, inherited] |
Definition at line 75 of file OSGForegroundBase.inl.
References osg::ForegroundBase::_sfActive.
00076 { 00077 return &_sfActive; 00078 }
| bool & osg::ForegroundBase::getActive | ( | void | ) | [inline, inherited] |
Definition at line 83 of file OSGForegroundBase.inl.
References osg::ForegroundBase::_sfActive, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
Referenced by osg::TextureGrabForeground::draw(), osg::SimpleStatisticsForeground::draw(), osg::PolygonForeground::draw(), osg::ImageForeground::draw(), draw(), osg::GrabForeground::draw(), osg::FileGrabForeground::draw(), and osg::DisplayFilterForeground::draw().
00084 { 00085 return _sfActive.getValue(); 00086 }
| const bool & osg::ForegroundBase::getActive | ( | void | ) | const [inline, inherited] |
Definition at line 90 of file OSGForegroundBase.inl.
References osg::ForegroundBase::_sfActive, and osg::SField< FieldTypeT, fieldNameSpace >::getValue().
00091 { 00092 return _sfActive.getValue(); 00093 }
| void osg::ForegroundBase::setActive | ( | const bool & | value | ) | [inline, inherited] |
Definition at line 97 of file OSGForegroundBase.inl.
References osg::ForegroundBase::_sfActive, and osg::SField< FieldTypeT, fieldNameSpace >::setValue().
Referenced by osg::GrabForeground::GrabForeground().
| void AttachmentContainer::addAttachment | ( | const AttachmentPtr & | fieldContainerP, | |
| UInt16 | binding = 0 | |||
| ) | [inherited] |
Definition at line 84 of file OSGAttachmentContainer.cpp.
References osg::addRefCP(), osg::beginEditCP(), osg::endEditCP(), osg::NullFC, and osg::subRefCP().
Referenced by osg::AttachmentContainer::AttachmentContainer(), osg::Node::onCreate(), and osg::Image::setAttachmentField().
00086 { 00087 UInt32 key; 00088 00089 if(fieldContainerP == NullFC) 00090 return; 00091 00092 key = (UInt32 (fieldContainerP->getGroupId()) << 16) | binding; 00093 00094 addRefCP(fieldContainerP); 00095 00096 beginEditCP(fieldContainerP, Attachment::ParentsFieldMask); 00097 { 00098 fieldContainerP->addParent(getPtr()); 00099 } 00100 endEditCP (fieldContainerP, Attachment::ParentsFieldMask); 00101 00102 AttachmentMap::iterator fcI = _attachmentMap.getValue().find(key); 00103 00104 if(fcI != _attachmentMap.getValue().end()) 00105 { 00106 beginEditCP((*fcI).second, Attachment::ParentsFieldMask); 00107 { 00108 (*fcI).second->subParent(getPtr()); 00109 } 00110 endEditCP ((*fcI).second, Attachment::ParentsFieldMask); 00111 00112 subRefCP((*fcI).second); 00113 00114 (*fcI).second = fieldContainerP; 00115 } 00116 else 00117 { 00118 _attachmentMap.getValue()[key] = fieldContainerP; 00119 } 00120 }
| void AttachmentContainer::subAttachment | ( | const AttachmentPtr & | fieldContainerP, | |
| UInt16 | binding = 0 | |||
| ) | [inherited] |
Definition at line 122 of file OSGAttachmentContainer.cpp.
References osg::AttachmentContainer::_attachmentMap, osg::beginEditCP(), osg::endEditCP(), osg::AttachmentContainer::getPtr(), osg::SField< FieldTypeT, fieldNameSpace >::getValue(), osg::NullFC, osg::Attachment::ParentsFieldMask, and osg::subRefCP().
00124 { 00125 UInt32 key; 00126 00127 AttachmentMap::iterator fcI; 00128 00129 if(fieldContainerP == NullFC) 00130 return; 00131 00132 key = (UInt32(fieldContainerP->getGroupId()) << 16) | binding; 00133 00134 fcI = _attachmentMap.getValue().find(key); 00135 00136 if(fcI != _attachmentMap.getValue().end()) 00137 { 00138 beginEditCP(fieldContainerP, Attachment::ParentsFieldMask); 00139 { 00140 (*fcI).second->subParent(getPtr()); 00141 } 00142 endEditCP (fieldContainerP, Attachment::ParentsFieldMask); 00143 00144 subRefCP((*fcI).second); 00145 00146 _attachmentMap.getValue().erase(fcI); 00147 } 00148 }
| AttachmentPtr AttachmentContainer::findAttachment | ( | UInt32 | groupId, | |
| UInt16 | binding = 0 | |||
| ) | [inherited] |
Definition at line 150 of file OSGAttachmentContainer.cpp.
References osg::AttachmentContainer::_attachmentMap, osg::SField< FieldTypeT, fieldNameSpace >::getValue(), and osg::NullFC.
Referenced by osg::Image::findAttachmentField(), and osg::Image::setAttachmentField().
00152 { 00153 UInt32 key = (UInt32(groupId) << 16) | binding; 00154 00155 AttachmentMap::iterator fcI = _attachmentMap.getValue().find(key); 00156 00157 if(fcI == _attachmentMap.getValue().end()) 00158 { 00159 return NullFC; 00160 } 00161 else 00162 { 00163 return (*fcI).second; 00164 } 00165 }
| AttachmentPtr osg::AttachmentContainer::findAttachment | ( | const FieldContainerType & | type, | |
| UInt16 | binding = 0 | |||
| ) | [inline, inherited] |
Definition at line 57 of file OSGAttachmentContainerImpl.inl.
00060 { 00061 return findAttachment(type.getGroupId(), binding); 00062 }
| SFAttachmentMap * AttachmentContainer::getSFAttachments | ( | void | ) | [inherited] |
Field Access
Definition at line 170 of file OSGAttachmentContainer.cpp.
References osg::AttachmentContainer::_attachmentMap.
00171 { 00172 return &_attachmentMap; 00173 }
| AttachmentContainerPtr AttachmentContainer::getPtr | ( | void | ) | [protected, inherited] |
Definition at line 352 of file OSGAttachmentContainer.cpp.
Referenced by osg::FileGrabForeground::draw(), osg::FBOViewport::render(), osg::AttachmentContainer::subAttachment(), and osg::AttachmentContainer::~AttachmentContainer().
00353 { 00354 return AttachmentContainerPtr(*this); 00355 }
| UInt16 osg::FieldContainer::getClassGroupId | ( | void | ) | [inline, static, inherited] |
Definition at line 71 of file OSGFieldContainerImpl.inl.
References osg::FieldContainer::_type, and osg::FieldContainerType::getGroupId().
00072 { 00073 return _type.getGroupId(); 00074 }
| UInt32 osg::FieldContainer::getTypeId | ( | void | ) | const [inline, inherited] |
Definition at line 77 of file OSGFieldContainerImpl.inl.
References osg::TypeBase::getId(), and osg::FieldContainer::getType().
Referenced by osg::TextureChunk::changeFrom(), and osg::CubeTextureChunk::changeFrom().
00078 { 00079 return getType().getId(); 00080 }
| UInt16 osg::FieldContainer::getGroupId | ( | void | ) | const [inline, inherited] |
Definition at line 83 of file OSGFieldContainerImpl.inl.
References osg::FieldContainerType::getGroupId(), and osg::FieldContainer::getType().
Referenced by osg::fcptrAttributeMap(), osg::Image::setAttachmentField(), and osg::stringAttributeMap().
00084 { 00085 return getType().getGroupId(); 00086 }
| const Char8 * osg::FieldContainer::getTypeName | ( | void | ) | const [inline, inherited] |
Definition at line 89 of file OSGFieldContainerImpl.inl.
References osg::TypeBase::getCName(), and osg::FieldContainer::getType().
00090 { 00091 return getType().getCName(); 00092 }
Generic Field Access
Definition at line 95 of file OSGFieldContainerImpl.inl.
References osg::FieldDescription::getField(), osg::FieldContainerType::getFieldDescription(), and osg::FieldContainer::getType().
Referenced by osg::QFCItem::expand(), osg::VRMLShapeDesc::getFieldAndDesc(), osg::QFieldViewBase::getFieldPtr(), osg::QFieldEditorBase::getFieldPtr(), osg::getParentsField(), and osg::QFCItem::setup().
00096 { 00097 const FieldDescription *desc = getType().getFieldDescription(fieldId); 00098 00099 return desc ? desc->getField(*this) : NULL; 00100 }
Generic Field Access
Definition at line 103 of file OSGFieldContainerImpl.inl.
References osg::FieldContainerType::findFieldDescription(), osg::FieldDescription::getField(), and osg::FieldContainer::getType().
00104 { 00105 const FieldDescription *desc =getType().findFieldDescription(fieldName); 00106 00107 return desc ? desc->getField(*this) : NULL; 00108 }
| void osg::FieldContainer::newPtr | ( | ObjectPtrT & | result, | |
| const typename ObjectPtrT::StoredObjectType * | prototypeP | |||
| ) | [inline, static, protected, inherited] |
Definition at line 138 of file OSGFieldContainerImpl.inl.
References osg::ChangeList::addCreated(), osg::PThreadBase::getAspect(), osg::PThreadBase::getCurrentChangeList(), osg::ThreadManager::getNumAspects(), osg::FieldContainerFactory::registerFieldContainer(), and osg::FieldContainerFactory::the().
Referenced by osg::XWindowBase::createEmpty(), osg::WIN32WindowBase::createEmpty(), osg::ViewportBase::createEmpty(), osg::VertexProgramChunkBase::createEmpty(), osg::TwoSidedLightingChunkBase::createEmpty(), osg::TransformChunkBase::createEmpty(), osg::TransformBase::createEmpty(), osg::TileCameraDecoratorBase::createEmpty(), osg::TextureTransformChunkBase::createEmpty(), osg::TextureGrabForegroundBase::createEmpty(), osg::TextureGrabBackgroundBase::createEmpty(), osg::TextureChunkBase::createEmpty(), osg::TextureBackgroundBase::createEmpty(), osg::TexGenChunkBase::createEmpty(), osg::SwitchMaterialBase::createEmpty(), osg::SwitchBase::createEmpty(), osg::SurfaceBase::createEmpty(), osg::StringAttributeMapBase::createEmpty(), osg::StereoBufferViewportBase::createEmpty(), osg::StencilChunkBase::createEmpty(), osg::StateSortingGroupBase::createEmpty(), osg::StateBase::createEmpty(), osg::SpotLightBase::createEmpty(), osg::SortFirstWindowBase::createEmpty(), osg::SolidBackgroundBase::createEmpty(), osg::SlicesBase::createEmpty(), osg::SkyBackgroundBase::createEmpty(), osg::SimpleTexturedMaterialBase::createEmpty(), osg::SimpleStatisticsForegroundBase::createEmpty(), osg::SimpleMaterialBase::createEmpty(), osg::SHLParameterChunkBase::createEmpty(), osg::SHLChunkBase::createEmpty(), osg::ShearedStereoCameraDecoratorBase::createEmpty(), osg::ShaderParameterVec4fBase::createEmpty(), osg::ShaderParameterVec3fBase::createEmpty(), osg::ShaderParameterVec2fBase::createEmpty(), osg::ShaderParameterStringBase::createEmpty(), osg::ShaderParameterRealBase::createEmpty(), osg::ShaderParameterMVec4fBase::createEmpty(), osg::ShaderParameterMVec3fBase::createEmpty(), osg::ShaderParameterMVec2fBase::createEmpty(), osg::ShaderParameterMRealBase::createEmpty(), osg::ShaderParameterMMatrixBase::createEmpty(), osg::ShaderParameterMIntBase::createEmpty(), osg::ShaderParameterMatrixBase::createEmpty(), osg::ShaderParameterIntBase::createEmpty(), osg::ShaderParameterBoolBase::createEmpty(), osg::ScreenGroupBase::createEmpty(), osg::SClipPlaneChunkBase::createEmpty(), osg::ResolutionDisplayFilterBase::createEmpty(), osg::RenderOptionsBase::createEmpty(), osg::RegisterCombinersChunkBase::createEmpty(), osg::QTWindowBase::createEmpty(), osg::ProxyGroupBase::createEmpty(), osg::ProjectionCameraDecoratorBase::createEmpty(), osg::PolygonForegroundBase::createEmpty(), osg::PolygonChunkBase::createEmpty(), osg::PolygonBackgroundBase::createEmpty(), osg::PointLightBase::createEmpty(), osg::PointChunkBase::createEmpty(), osg::PhongMaterialBase::createEmpty(), osg::PerspectiveCameraBase::createEmpty(), osg::PassiveWindowBase::createEmpty(), osg::PassiveViewportBase::createEmpty(), osg::PassiveBackgroundBase::createEmpty(), osg::ParticlesBase::createEmpty(), osg::OrthographicCameraBase::createEmpty(), osg::OffCenterPerspectiveCameraBase::createEmpty(), osg::MultiPassMaterialBase::createEmpty(), osg::MultiDisplayWindowBase::createEmpty(), osg::MatrixCameraDecoratorBase::createEmpty(), osg::MatrixCameraBase::createEmpty(), osg::MaterialPoolBase::createEmpty(), osg::MaterialGroupBase::createEmpty(), osg::MaterialChunkBase::createEmpty(), osg::LogicOpChunkBase::createEmpty(), osg::LineChunkBase::createEmpty(), osg::LightModelChunkBase::createEmpty(), osg::LightEnvBase::createEmpty(), osg::LightChunkBase::createEmpty(), osg::InverseTransformBase::createEmpty(), osg::InlineBase::createEmpty(), osg::ImageForegroundBase::createEmpty(), osg::ImageBase::createEmpty(), osg::ImageBackgroundBase::createEmpty(), osg::GroupBase::createEmpty(), osg::GraphicStatisticsForegroundBase::createEmpty(), osg::GradientBackgroundBase::createEmpty(), osg::GrabForegroundBase::createEmpty(), osg::GLUTWindowBase::createEmpty(), osg::GeometryBase::createEmpty(), osg::FresnelMaterialBase::createEmpty(), osg::FragmentProgramChunkBase::createEmpty(), osg::FileGrabForegroundBase::createEmpty(), osg::FCPtrAttributeMapBase::createEmpty(), osg::FBOViewportBase::createEmpty(), osg::FatBorderChunkBase::createEmpty(), osg::DVRVolumeTextureBase::createEmpty(), osg::DVRVolumeBase::createEmpty(), osg::DVRSimpleShaderBase::createEmpty(), osg::DVRSimpleLUTShaderBase::createEmpty(), osg::DVRMtexLUTShaderBase::createEmpty(), osg::DVRLookupTableBase::createEmpty(), osg::DVRIsoSurfaceBase::createEmpty(), osg::DVRIsoShaderBase::createEmpty(), osg::DVRGeometryBase::createEmpty(), osg::DVRClipObjectsBase::createEmpty(), osg::DVRClipGeometryBase::createEmpty(), osg::DVRAppearanceBase::createEmpty(), osg::DistortionDisplayFilterBase::createEmpty(), osg::DistanceLODBase::createEmpty(), osg::DisplayFilterForegroundBase::createEmpty(), osg::DisplayCalibrationBase::createEmpty(), osg::DirectionalLightBase::createEmpty(), osg::DepthClearBackgroundBase::createEmpty(), osg::DepthChunkBase::createEmpty(), osg::CubeTextureChunkBase::createEmpty(), osg::ComponentTransformBase::createEmpty(), osg::ColorMaskChunkBase::createEmpty(), osg::ColorDisplayFilterBase::createEmpty(), osg::ColorBufferViewportBase::createEmpty(), osg::ClusterWindowBase::createEmpty(), osg::ClipPlaneChunkBase::createEmpty(), osg::ClipPlaneBase::createEmpty(), osg::ChunkMaterialBase::createEmpty(), osg::BlendChunkBase::createEmpty(), osg::BillboardBase::createEmpty(), osg::XWindowBase::shallowCopy(), osg::WIN32WindowBase::shallowCopy(), osg::ViewportBase::shallowCopy(), osg::VertexProgramChunkBase::shallowCopy(), osg::TwoSidedLightingChunkBase::shallowCopy(), osg::TransformChunkBase::shallowCopy(), osg::TransformBase::shallowCopy(), osg::TileCameraDecoratorBase::shallowCopy(), osg::TextureTransformChunkBase::shallowCopy(), osg::TextureGrabForegroundBase::shallowCopy(), osg::TextureGrabBackgroundBase::shallowCopy(), osg::TextureChunkBase::shallowCopy(), osg::TextureBackgroundBase::shallowCopy(), osg::TexGenChunkBase::shallowCopy(), osg::SwitchMaterialBase::shallowCopy(), osg::SwitchBase::shallowCopy(), osg::SurfaceBase::shallowCopy(), osg::StringAttributeMapBase::shallowCopy(), osg::StereoBufferViewportBase::shallowCopy(), osg::StencilChunkBase::shallowCopy(), osg::StateSortingGroupBase::shallowCopy(), osg::StateBase::shallowCopy(), osg::SpotLightBase::shallowCopy(), osg::SortFirstWindowBase::shallowCopy(), osg::SolidBackgroundBase::shallowCopy(), osg::SlicesBase::shallowCopy(), osg::SkyBackgroundBase::shallowCopy(), osg::SimpleTexturedMaterialBase::shallowCopy(), osg::SimpleStatisticsForegroundBase::shallowCopy(), osg::SimpleMaterialBase::shallowCopy(), osg::SHLParameterChunkBase::shallowCopy(), osg::SHLChunkBase::shallowCopy(), osg::ShearedStereoCameraDecoratorBase::shallowCopy(), osg::ShaderParameterVec4fBase::shallowCopy(), osg::ShaderParameterVec3fBase::shallowCopy(), osg::ShaderParameterVec2fBase::shallowCopy(), osg::ShaderParameterStringBase::shallowCopy(), osg::ShaderParameterRealBase::shallowCopy(), osg::ShaderParameterMVec4fBase::shallowCopy(), osg::ShaderParameterMVec3fBase::shallowCopy(), osg::ShaderParameterMVec2fBase::shallowCopy(), osg::ShaderParameterMRealBase::shallowCopy(), osg::ShaderParameterMMatrixBase::shallowCopy(), osg::ShaderParameterMIntBase::shallowCopy(), osg::ShaderParameterMatrixBase::shallowCopy(), osg::ShaderParameterIntBase::shallowCopy(), osg::ShaderParameterBoolBase::shallowCopy(), osg::ScreenGroupBase::shallowCopy(), osg::SClipPlaneChunkBase::shallowCopy(), osg::ResolutionDisplayFilterBase::shallowCopy(), osg::RenderOptionsBase::shallowCopy(), osg::RegisterCombinersChunkBase::shallowCopy(), osg::QTWindowBase::shallowCopy(), osg::ProxyGroupBase::shallowCopy(), osg::ProjectionCameraDecoratorBase::shallowCopy(), osg::PolygonForegroundBase::shallowCopy(), osg::PolygonChunkBase::shallowCopy(), osg::PolygonBackgroundBase::shallowCopy(), osg::PointLightBase::shallowCopy(), osg::PointChunkBase::shallowCopy(), osg::PhongMaterialBase::shallowCopy(), osg::PerspectiveCameraBase::shallowCopy(), osg::PassiveWindowBase::shallowCopy(), osg::PassiveViewportBase::shallowCopy(), osg::PassiveBackgroundBase::shallowCopy(), osg::ParticlesBase::shallowCopy(), osg::OrthographicCameraBase::shallowCopy(), osg::OffCenterPerspectiveCameraBase::shallowCopy(), osg::MultiPassMaterialBase::shallowCopy(), osg::MultiDisplayWindowBase::shallowCopy(), osg::MatrixCameraDecoratorBase::shallowCopy(), osg::MatrixCameraBase::shallowCopy(), osg::MaterialPoolBase::shallowCopy(), osg::MaterialGroupBase::shallowCopy(), osg::MaterialChunkBase::shallowCopy(), osg::LogicOpChunkBase::shallowCopy(), osg::LineChunkBase::shallowCopy(), osg::LightModelChunkBase::shallowCopy(), osg::LightEnvBase::shallowCopy(), osg::LightChunkBase::shallowCopy(), osg::InverseTransformBase::shallowCopy(), osg::InlineBase::shallowCopy(), osg::ImageForegroundBase::shallowCopy(), osg::ImageBase::shallowCopy(), osg::ImageBackgroundBase::shallowCopy(), osg::GroupBase::shallowCopy(), osg::GraphicStatisticsForegroundBase::shallowCopy(), osg::GradientBackgroundBase::shallowCopy(), osg::GrabForegroundBase::shallowCopy(), osg::GLUTWindowBase::shallowCopy(), osg::GeometryBase::shallowCopy(), osg::FresnelMaterialBase::shallowCopy(), osg::FragmentProgramChunkBase::shallowCopy(), osg::FileGrabForegroundBase::shallowCopy(), osg::FCPtrAttributeMapBase::shallowCopy(), osg::FBOViewportBase::shallowCopy(), osg::FatBorderChunkBase::shallowCopy(), osg::DVRVolumeTextureBase::shallowCopy(), osg::DVRVolumeBase::shallowCopy(), osg::DVRSimpleShaderBase::shallowCopy(), osg::DVRSimpleLUTShaderBase::shallowCopy(), osg::DVRMtexLUTShaderBase::shallowCopy(), osg::DVRLookupTableBase::shallowCopy(), osg::DVRIsoSurfaceBase::shallowCopy(), osg::DVRIsoShaderBase::shallowCopy(), osg::DVRGeometryBase::shallowCopy(), osg::DVRClipObjectsBase::shallowCopy(), osg::DVRClipGeometryBase::shallowCopy(), osg::DVRAppearanceBase::shallowCopy(), osg::DistortionDisplayFilterBase::shallowCopy(), osg::DistanceLODBase::shallowCopy(), osg::DisplayFilterForegroundBase::shallowCopy(), osg::DisplayCalibrationBase::shallowCopy(), osg::DirectionalLightBase::shallowCopy(), osg::DepthClearBackgroundBase::shallowCopy(), osg::DepthChunkBase::shallowCopy(), osg::CubeTextureChunkBase::shallowCopy(), osg::ComponentTransformBase::shallowCopy(), osg::ColorMaskChunkBase::shallowCopy(), osg::ColorDisplayFilterBase::shallowCopy(), osg::ColorBufferViewportBase::shallowCopy(), osg::ClusterWindowBase::shallowCopy(), osg::ClipPlaneChunkBase::shallowCopy(), osg::ClipPlaneBase::shallowCopy(), osg::ChunkMaterialBase::shallowCopy(), osg::BlendChunkBase::shallowCopy(), and osg::BillboardBase::shallowCopy().
00141 { 00142 typedef typename ObjectPtrT::StoredObjectType ObjectType; 00143 00144 UInt8 *pTmp; 00145 00146 result._containerSize = sizeof(ObjectType); 00147 00148 pTmp = 00149 static_cast<UInt8 *>(operator new( 00150 sizeof(Int32) + // ReferenceCount 00151 sizeof(UInt32) + // ContainerId 00152 sizeof(ObjectType) * ThreadManager::getNumAspects())); 00153 00154 *(reinterpret_cast<Int32 *>(pTmp)) = 0; 00155 00156 pTmp += sizeof(Int32); 00157 00158 result._storeP = (pTmp + sizeof(UInt32)); 00159 00160 #ifdef OSG_DEBUG_FCPTR 00161 result._typedStoreP = reinterpret_cast<FieldContainer *>(result._storeP); 00162 #endif 00163 00164 *(reinterpret_cast<UInt32 *>(pTmp)) = 00165 FieldContainerFactory::the()->registerFieldContainer(result); 00166 00167 Thread::getCurrentChangeList()->addCreated( 00168 *(reinterpret_cast<UInt32 *>(pTmp))); 00169 00170 pTmp += sizeof(UInt32); 00171 00172 ObjectType *aObject = reinterpret_cast<ObjectType *>(pTmp); 00173 00174 for(UInt32 i = 0; i < ThreadManager::getNumAspects(); i++) 00175 { 00176 pTmp = 00177 reinterpret_cast<UInt8 *>(new (pTmp) ObjectType(*prototypeP)); 00178 00179 pTmp += sizeof(ObjectType); 00180 } 00181 00182 result->onCreate(prototypeP); 00183 00184 for(UInt32 i = 0; i < ThreadManager::getNumAspects(); i++) 00185 { 00186 aObject[i].onCreateAspect(aObject, prototypeP); 00187 } 00188 00189 #if defined(OSG_GV_BETA) && defined(OSG_DBG_MEM) 00190 00191 fprintf(stderr, "GV_MEM_FC_DBG : (%u) cc (%p|%u)\n", 00192 Thread::getAspect(), 00193 result._storeP, 00194 // ObjectType::getClassType().getCName(), 00195 ObjectType::getClassType().getId()); 00196 #endif 00197 00198 #ifdef OSG_DEBUG_TYPED_FCPTR 00199 result.updateTypedStore(); 00200 #endif 00201 }
| void osg::FieldContainer::newPtr | ( | ObjectPtrT & | result | ) | [inline, static, protected, inherited] |
Definition at line 204 of file OSGFieldContainerImpl.inl.
References osg::ChangeList::addCreated(), osg::PThreadBase::getAspect(), osg::PThreadBase::getCurrentChangeList(), osg::ThreadManager::getNumAspects(), osg::FieldContainerFactory::registerFieldContainer(), and osg::FieldContainerFactory::the().
00205 { 00206 typedef typename ObjectPtrT::StoredObjectType ObjectType; 00207 00208 UInt8 *pTmp; 00209 00210 result._containerSize = sizeof(ObjectType); 00211 00212 pTmp = 00213 static_cast<UInt8 *>(operator new( 00214 sizeof(Int32) + // ReferenceCount 00215 sizeof(UInt32) + // ContainerId 00216 sizeof(ObjectType) * ThreadManager::getNumAspects())); 00217 00218 *(reinterpret_cast<Int32 *>(pTmp)) = 0; 00219 00220 pTmp += sizeof(Int32); 00221 00222 result._storeP = (pTmp + sizeof(UInt32)); 00223 00224 #ifdef OSG_DEBUG_FCPTR 00225 result._typedStoreP = reinterpret_cast<FieldContainer *>(result._storeP); 00226 #endif 00227 00228 *(reinterpret_cast<UInt32 *>(pTmp)) = 00229 FieldContainerFactory::the()->registerFieldContainer(result); 00230 00231 Thread::getCurrentChangeList()->addCreated( 00232 *(reinterpret_cast<UInt32 *>(pTmp))); 00233 00234 pTmp += sizeof(UInt32); 00235 00236 ObjectType *aObject = reinterpret_cast<ObjectType *>(pTmp); 00237 00238 for(UInt32 i = 0; i < ThreadManager::getNumAspects(); i++) 00239 { 00240 pTmp = reinterpret_cast<UInt8 *>(new (pTmp) ObjectType()); 00241 00242 pTmp += sizeof(ObjectType); 00243 } 00244 00245 result->onCreate(); 00246 00247 for(UInt32 i = 0; i < ThreadManager::getNumAspects(); i++) 00248 { 00249 aObject[i].onCreateAspect(aObject); 00250 } 00251 00252 #if defined(OSG_GV_BETA) && defined(OSG_DBG_MEM) 00253 fprintf(stderr, "GV_MEM_FC_DBG : (%u) c (%p|%u)\n", 00254 Thread::getAspect(), 00255 result._storeP, 00256 // ObjectType::getClassType().getCName(), 00257 ObjectType::getClassType().getId()); 00258 #endif 00259 00260 #ifdef OSG_DEBUG_TYPED_FCPTR 00261 result.updateTypedStore(); 00262 #endif 00263 }
| void osg::FieldContainer::beginEditX | ( | const BitVector & | whichField, | |
| FieldTypeT & | field | |||
| ) | [inline, protected, inherited] |
| void osg::FieldContainer::endEditX | ( | const BitVector & | whichField, | |
| FieldTypeT & | field | |||
| ) | [inline, protected, inherited] |
Definition at line 291 of file OSGFieldContainerImpl.inl.
References osg::endEditCP().
00292 { 00293 FieldContainerPtr tmpPtr(this); 00294 endEditCP(tmpPtr, whichField); 00295 }
| void osg::FieldContainer::onCreate | ( | const FieldContainer * | source = NULL |
) | [inline, protected, inherited] |
Definition at line 318 of file OSGFieldContainerImpl.inl.
Referenced by osg::ShaderParameterChunk::onCreate().
| void osg::FieldContainer::onCreateAspect | ( | const FieldContainer * | aspect0, | |
| const FieldContainer * | source = NULL | |||
| ) | [inline, protected, inherited] |
| void FieldContainer::onDestroy | ( | void | ) | [protected, virtual, inherited] |
Reimplemented in osg::NodeCore, osg::Attachment, osg::Geometry, osg::Surface, osg::MaterialPool, osg::CubeTextureChunk, osg::TextureChunk, osg::FBOViewport, osg::Window, osg::ShaderParameterChunk, and osg::SHLChunk.
Definition at line 98 of file OSGFieldContainer.cpp.
friend class FieldContainer [friend] |
Reimplemented from osg::GraphicStatisticsForegroundBase.
Definition at line 207 of file OSGGraphicStatisticsForeground.h.
friend class GraphicStatisticsForegroundBase [friend] |
Definition at line 208 of file OSGGraphicStatisticsForeground.h.
Definition at line 202 of file OSGGraphicStatisticsForeground.h.
Referenced by draw(), drawString(), GraphicStatisticsForeground(), initText(), and ~GraphicStatisticsForeground().
Definition at line 204 of file OSGGraphicStatisticsForeground.h.
Referenced by drawString(), GraphicStatisticsForeground(), initText(), and ~GraphicStatisticsForeground().
std::vector< std::vector< Real32> > osg::GraphicStatisticsForeground::_history [private] |
Definition at line 212 of file OSGGraphicStatisticsForeground.h.
Referenced by addValueToHistory(), changed(), drawBar(), drawChart(), drawLineChart(), and removeElement().
std::vector< UInt32 > osg::GraphicStatisticsForeground::_historyID [private] |
Definition at line 214 of file OSGGraphicStatisticsForeground.h.
Referenced by addValueToHistory(), changed(), drawChart(), drawLineChart(), and removeElement().
const osg::BitVector GraphicStatisticsForegroundBase::DisplayTypeFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::DisplayTypeFieldId)
Definition at line 128 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::SizeFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::SizeFieldId)
Definition at line 129 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::PosFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::PosFieldId)
Definition at line 130 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::ColorMaxFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::ColorMaxFieldId)
Definition at line 131 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::ColorMinFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::ColorMinFieldId)
Definition at line 132 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::ColorCurrentFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::ColorCurrentFieldId)
Definition at line 133 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::MinValueFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::MinValueFieldId)
Definition at line 134 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::MaxValueFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::MaxValueFieldId)
Definition at line 135 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::FlagsFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::FlagsFieldId)
Definition at line 136 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::HistorySizeFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::HistorySizeFieldId)
Definition at line 137 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by changed(), osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::DescriptionFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::DescriptionFieldId)
Definition at line 138 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::LineWidthFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::LineWidthFieldId)
Definition at line 139 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::BackgroundColorFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::BackgroundColorFieldId)
Definition at line 140 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::TextEnabledFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::TextEnabledFieldId)
Definition at line 141 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::BackgroundEnabledFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::BackgroundEnabledFieldId)
Definition at line 142 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::BorderEnabledFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << GraphicStatisticsForegroundBase::BorderEnabledFieldId)
Definition at line 143 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), and osg::GraphicStatisticsForegroundBase::getBinSize().
const osg::BitVector GraphicStatisticsForegroundBase::MTInfluenceMask [static, inherited] |
Initial value:
(Inherited::MTInfluenceMask) |
(static_cast<BitVector>(0x0) << Inherited::NextFieldId)
Reimplemented from osg::StatisticsForegroundBase.
Definition at line 146 of file OSGGraphicStatisticsForegroundBase.h.
UInt32 GraphicStatisticsForegroundBase::_mfDisplayType [protected, inherited] |
type[i] sets the graphical representation of this statistics data
Definition at line 243 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getDisplayType(), and osg::GraphicStatisticsForegroundBase::getMFDisplayType().
Vec2f GraphicStatisticsForegroundBase::_mfSize [protected, inherited] |
size of this StatisticsElement
Definition at line 244 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getMFSize(), and osg::GraphicStatisticsForegroundBase::getSize().
Vec2f GraphicStatisticsForegroundBase::_mfPos [protected, inherited] |
Position at which this StatisticsElement should be drawn
Definition at line 245 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getMFPos(), and osg::GraphicStatisticsForegroundBase::getPos().
Color4f GraphicStatisticsForegroundBase::_mfColorMax [protected, inherited] |
max color of this StatisticsElement
Definition at line 246 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getColorMax(), and osg::GraphicStatisticsForegroundBase::getMFColorMax().
Color4f GraphicStatisticsForegroundBase::_mfColorMin [protected, inherited] |
color2[i] is the second color of this StatisticsElement
Definition at line 247 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getColorMin(), and osg::GraphicStatisticsForegroundBase::getMFColorMin().
Color4f GraphicStatisticsForegroundBase::_mfColorCurrent [protected, inherited] |
color2[i] is the third color of this StatisticsElement
Definition at line 248 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getColorCurrent(), and osg::GraphicStatisticsForegroundBase::getMFColorCurrent().
Real32 GraphicStatisticsForegroundBase::_mfMinValue [protected, inherited] |
The minimum value to be displayed by the Statistic
Definition at line 249 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getMFMinValue(), and osg::GraphicStatisticsForegroundBase::getMinValue().
Real32 GraphicStatisticsForegroundBase::_mfMaxValue [protected, inherited] |
The maximum value to be displayed by the Statistic
Definition at line 250 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getMaxValue(), and osg::GraphicStatisticsForegroundBase::getMFMaxValue().
UInt32 GraphicStatisticsForegroundBase::_mfFlags [protected, inherited] |
type[i] sets the graphical representation of this statistics data
Definition at line 251 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getFlags(), and osg::GraphicStatisticsForegroundBase::getMFFlags().
UInt32 GraphicStatisticsForegroundBase::_mfHistorySize [protected, inherited] |
type[i] sets the graphical representation of this statistics data
Definition at line 252 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getHistorySize(), and osg::GraphicStatisticsForegroundBase::getMFHistorySize().
std::string GraphicStatisticsForegroundBase::_mfDescription [protected, inherited] |
The description for every id
Definition at line 253 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getDescription(), and osg::GraphicStatisticsForegroundBase::getMFDescription().
Real32 GraphicStatisticsForegroundBase::_sfLineWidth [protected, inherited] |
The default line width to be used by this foreground
Definition at line 254 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getLineWidth(), osg::GraphicStatisticsForegroundBase::getSFLineWidth(), and osg::GraphicStatisticsForegroundBase::setLineWidth().
Color3f GraphicStatisticsForegroundBase::_sfBackgroundColor [protected, inherited] |
BackgroundColor of the statistics Display
Definition at line 255 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBackgroundColor(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getSFBackgroundColor(), and osg::GraphicStatisticsForegroundBase::setBackgroundColor().
bool GraphicStatisticsForegroundBase::_sfTextEnabled [protected, inherited] |
Set this to false to disable the text
Definition at line 256 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getSFTextEnabled(), osg::GraphicStatisticsForegroundBase::getTextEnabled(), and osg::GraphicStatisticsForegroundBase::setTextEnabled().
bool GraphicStatisticsForegroundBase::_sfBackgroundEnabled [protected, inherited] |
Set this to "false" to disable the backround of all Graphs
Definition at line 257 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBackgroundEnabled(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getSFBackgroundEnabled(), and osg::GraphicStatisticsForegroundBase::setBackgroundEnabled().
bool GraphicStatisticsForegroundBase::_sfBorderEnabled [protected, inherited] |
Set this to false to disable the border around elements
Definition at line 258 of file OSGGraphicStatisticsForegroundBase.h.
Referenced by osg::GraphicStatisticsForegroundBase::copyFromBin(), osg::GraphicStatisticsForegroundBase::copyToBin(), osg::GraphicStatisticsForegroundBase::executeSyncImpl(), osg::GraphicStatisticsForegroundBase::getBinSize(), osg::GraphicStatisticsForegroundBase::getBorderEnabled(), osg::GraphicStatisticsForegroundBase::getSFBorderEnabled(), and osg::GraphicStatisticsForegroundBase::setBorderEnabled().
const osg::BitVector StatisticsForegroundBase::ElementIDsFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << StatisticsForegroundBase::ElementIDsFieldId)
Definition at line 100 of file OSGStatisticsForegroundBase.h.
Referenced by osg::StatisticsForegroundBase::copyFromBin(), osg::StatisticsForegroundBase::copyToBin(), osg::StatisticsForegroundBase::executeSyncImpl(), and osg::StatisticsForegroundBase::getBinSize().
const osg::BitVector StatisticsForegroundBase::CollectorFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << StatisticsForegroundBase::CollectorFieldId)
Definition at line 101 of file OSGStatisticsForegroundBase.h.
Referenced by osg::StatisticsForegroundBase::copyFromBin(), osg::StatisticsForegroundBase::copyToBin(), osg::StatisticsForegroundBase::executeSyncImpl(), and osg::StatisticsForegroundBase::getBinSize().
Int32 StatisticsForegroundBase::_mfElementIDs [protected, inherited] |
The StatElemDesc IDs to use. If not set, use all in the descriptor.
Definition at line 169 of file OSGStatisticsForegroundBase.h.
Referenced by osg::StatisticsForegroundBase::copyFromBin(), osg::StatisticsForegroundBase::copyToBin(), osg::StatisticsForegroundBase::executeSyncImpl(), osg::StatisticsForegroundBase::getBinSize(), osg::StatisticsForegroundBase::getElementIDs(), and osg::StatisticsForegroundBase::getMFElementIDs().
StatCollector StatisticsForegroundBase::_sfCollector [protected, inherited] |
The osg::StatisticsCollector that keeps the displayed statistics.
Definition at line 170 of file OSGStatisticsForegroundBase.h.
Referenced by osg::StatisticsForegroundBase::copyFromBin(), osg::StatisticsForegroundBase::copyToBin(), osg::StatisticsForegroundBase::executeSyncImpl(), osg::StatisticsForegroundBase::getBinSize(), osg::StatisticsForegroundBase::getCollector(), osg::StatisticsForegroundBase::getSFCollector(), and osg::StatisticsForegroundBase::setCollector().
const osg::BitVector ForegroundBase::ActiveFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << ForegroundBase::ActiveFieldId)
Definition at line 98 of file OSGForegroundBase.h.
Referenced by osg::ForegroundBase::copyFromBin(), osg::ForegroundBase::copyToBin(), osg::ForegroundBase::executeSyncImpl(), and osg::ForegroundBase::getBinSize().
bool ForegroundBase::_sfActive [protected, inherited] |
Activate the grabber.
Definition at line 162 of file OSGForegroundBase.h.
Referenced by osg::ForegroundBase::copyFromBin(), osg::ForegroundBase::copyToBin(), osg::ForegroundBase::executeSyncImpl(), osg::ForegroundBase::getActive(), osg::ForegroundBase::getBinSize(), osg::ForegroundBase::getSFActive(), and osg::ForegroundBase::setActive().
const BitVector AttachmentContainer::AttachmentsFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One <<
AttachmentContainer::AttachmentsFieldId)
Definition at line 84 of file OSGAttachmentContainerImpl.h.
Referenced by osg::VRMLFile::beginNode(), osg::AttachmentContainer::changed(), osg::AttachmentContainer::copyFromBin(), osg::AttachmentContainer::copyToBin(), osg::deepCloneAttachments(), osg::AttachmentContainer::executeSyncImpl(), osg::fcptrAttributeMap(), osg::AttachmentContainer::getBinSize(), and osg::stringAttributeMap().
SFAttachmentMap osg::AttachmentContainer::_attachmentMap [protected, inherited] |
Definition at line 161 of file OSGAttachmentContainerImpl.h.
Referenced by osg::AttachmentContainer::AttachmentContainer(), osg::AttachmentContainer::changed(), osg::AttachmentContainer::copyFromBin(), osg::AttachmentContainer::copyToBin(), osg::NodeCore::dump(), osg::Node::dump(), osg::Geometry::dump(), osg::AttachmentContainer::dump(), osg::AttachmentContainer::executeSyncImpl(), osg::AttachmentContainer::findAttachment(), osg::AttachmentContainer::getBinSize(), osg::AttachmentContainer::getSFAttachments(), osg::Node::onCreate(), osg::AttachmentContainer::subAttachment(), and osg::AttachmentContainer::~AttachmentContainer().
const BitVector osg::FieldContainer::NextFieldMask [static, inherited] |
Initial value:
(TypeTraits<BitVector>::One << NextFieldId)
Definition at line 75 of file OSGFieldContainerImpl.h.
const bool osg::FieldContainer::isNodeCore = false [static, inherited] |
UInt32 osg::FieldContainer::_shares [protected, inherited] |
Definition at line 199 of file OSGFieldContainerImpl.h.
1.5.5