Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoBufferedShape.h
1/*=======================================================================
2 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4 *** ***
5 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8 *** ***
9 *** RESTRICTED RIGHTS LEGEND ***
10 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15 *** ***
16 *** COPYRIGHT (C) 1996-2025 BY FEI S.A.S, ***
17 *** BORDEAUX, FRANCE ***
18 *** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20/*=======================================================================
21** Author : VSG (MMM YYYY)
22**=======================================================================*/
23#if !defined SOBUFFEREDSHAPE_H
24#define SOBUFFEREDSHAPE_H
25
26#include <Inventor/fields/SoSFEnum.h>
27#include <Inventor/fields/SoMFEnum.h>
28#include <Inventor/fields/SoSFInt32.h>
29#include <Inventor/fields/SoMFInt32.h>
30#include <Inventor/fields/SoSFShort.h>
31#include <Inventor/fields/SoSFBox3f.h>
32#include <Inventor/fields/SoSFBufferObject.h>
33#include <Inventor/fields/SoMFBufferObject.h>
34
35#include <Inventor/devices/SoCpuBufferObject.h>
36#include <Inventor/devices/SoGLBufferObject.h>
37
38#include <Inventor/nodes/SoShape.h>
39
40#include <Inventor/elements/SoDrawStyleElement.h>
41
42#include <Inventor/SbPImpl.h>
43
44
46class SoAction;
47
48SO_PIMPL_PUBLIC_DECLARATION(SoBufferedShape)
49
50
406class SoBufferedShape : public SoShape
407{
408 SO_NODE_HEADER( SoBufferedShape );
409 SO_PIMPL_PUBLIC_HEADER(SoBufferedShape)
410
411 // ----------------------- Public usage --------------------------------------
412
413public:
414
459
463 enum Usage
464 {
474 };
475
480
495
511
519
533
539
558
566
572
578
590
596
604
610
622
628
636
644
650
658
664
676
682
688
696
702
714
720
726
727private:
733 virtual void GLRender(SoGLRenderAction *action );
734
740 virtual void getBoundingBox( SoGetBoundingBoxAction *action );
741
745 virtual void computeBBox( SoAction *action, SbBox3f &box, SbVec3f &center );
746
750 virtual void computeBBox(SoAction *action, SbXfBox3d &box, SbVec3d &center);
751
757 virtual void rayPick(SoRayPickAction *action );
758
764 virtual void getPrimitiveCount(SoGetPrimitiveCountAction *action );
765
766// ----------------------- Private usage -------------------------------------
767// INTERNAL
768private:
769
771 static void initClass();
772
774 static void exitClass();
775
776 void notify( SoNotList* list );
777
778 int getNumPrim( SoState* state = NULL );
779
780 // ----------------------- Protected usage -------------------------------------
781
782private:
783
785 virtual ~SoBufferedShape();
786
787 virtual SbBool shouldCheckShapeHints();
788
789 virtual SbBool shouldGLRender( SoGLRenderAction *action, SbBool isPointsOrLines = FALSE );
790
800 virtual SbBool isLightingUsable( const void* normalBufferPtr );
801
805 virtual SbBool isTransparent(SoState* state) const;
806
807 virtual void generatePrimitives( SoAction *action );
808
809
815 virtual void GLRenderBoundingBox( SoGLRenderAction *action );
816
817 // Overrides standard method to create an SoFaceDetail instance
818 virtual SoDetail* createTriangleDetail( SoRayPickAction *action,
819 const SoPrimitiveVertex *v1,
820 const SoPrimitiveVertex *v2,
821 const SoPrimitiveVertex *v3,
822 SoPickedPoint *pp );
823
824 virtual SoDetail* createLineSegmentDetail( SoRayPickAction *action,
825 const SoPrimitiveVertex *v1,
826 const SoPrimitiveVertex *v2,
827 SoPickedPoint *pp );
828
829 virtual SoDetail* createPointDetail( SoRayPickAction *action,
830 const SoPrimitiveVertex *v,
831 SoPickedPoint *pp );
832
833 //Transforms the polygons into lines before rendering them.
834 //It can be used if :
835 //- shapeStyle = TRIANGLE, TRIANGLE_STRIP, TRIANGLE_FAN, TRIANGLES, QUAD_STRIP, QUADS or POLYGON
836 //- SoDrawStyle::style = LINES
837 // ----------------------- Private usage -------------------------------------
838private:
840 void commonConstructor();
841
845 unsigned int computeSmallestBatchSize(const SoNodeList* vertexAttribsList, unsigned int numInstances);
846
847 //In some cases primitives need to be transformed to POINTS to have a correct rendering
848 //with POINTS as drawStyle.
849 bool arePointsNeededAsPrimitives( SoDrawStyleElement::Style drawStyle ) const;
850
851 template< class T > void computeBBoxTemplate_POINTS( SoAction *action, SbBox3f &box, SbVec3f &center );
852
853 template< class T > void computeBBoxTemplate( SoAction *action, SbBox3f &box, SbVec3f &center, const SbVec2d &psize );
854
855 template< class T > void computeBBoxTemplateSP( SoAction *action, SbBox3f &box, SbVec3f &center, const SbVec2d &psize );
856
857 template< class T, int MODE > void computeBBoxTemplate_( SoAction *, SbBox3f &box, SbVec3f &center, const SbVec2d &pSize );
858
859 //A GL context must exist to use this method.
860 bool isRenderExtraDataNeededInCurrentContext() const;
861
862 //A GL context must exist to use this method.
863 bool isRenderExtraDataNeededByGraphicCardInCurrentContext() const;
864
865 //For some shapeType values, the render extra data process must be launched ( without considering
866 //OIV_SHAPES_PRIMITIVES_OPTIM ) in order to have a correct rendering with LINES as drawStyle.
867 bool isRenderExtraDataNeededByShapeType() const;
868
869 //Some graphic cards has bad performance when glPolygonMode is used to render the
870 //shape with LINES as draw style.
871 //
872 //Returns true if the polygons must be transformed in lines before rendering them.
873 static bool isRenderExtraDataNeededByGraphicCard( const SbString& graphicCardName );
874};
875
876//------------------------------------------------------------------------------
877
878#endif // SOBUFFEREDSHAPE_H
879
3D box class.
Definition SbBox.h:649
Class for smart character strings.
Definition SbString.h:202
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> 2D vector class ...
Definition SbVec.h:314
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> 3D vector class ...
Definition SbVec.h:1214
3D vector class.
Definition SbVec.h:932
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> 3D box with an a...
Definition SbBox.h:1513
Abstract base class for all actions.
Definition SoAction.h:132
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Node to render g...
Usage
This enum is used to set the shapeUsage field.
@ STATIC
The shape is static, its buffers are never modified or modified infrequently.
@ DYNAMIC
The shape is dynamic, this will prevent some optimizations but it is recommended when the buffers are...
SoSFEnum shapeUsage
Defines the usage of the shape.
SoSFEnum colorComponentsType
SbDataType::DataType type for the color values.
SoSFEnum vertexComponentsType
SbDataType::DataType for vertices.
SoSFShort vertexComponentsCount
Number of components in each vertex.
SoMFEnum texCoordsComponentsType
SbDataType::DataType type for the texture coordinates.
SoMFInt32 numVertices
Total number of vertices/indices or number of vertices/indices to be used per primitive.
SoMFInt32 texCoordsComponentsCount
Number of components in each texture coordinate.
SoSFBufferObject normalBuffer
Buffer object that contains the (optional) normal vectors.
SoMFBufferObject texCoordsBuffer
Buffer objects that contains the (optional) texture coordinates.
SoSFEnum normalComponentsType
SbDataType::DataType type for the normal vectors.
Type
Type of shape that will be rendered.
@ POINTS
Draws each vertex as a single point.
@ QUAD_STRIP
Draws a strip of connected quadrilaterals.
@ TRIANGLE_STRIP
Draws a strip of connected triangles.
@ LINE_LOOP
Like LINE_STRIP, but an extra line segment is drawn connecting the last vertex to the first vertex.
@ TRIANGLES
Draws unconnected triangles.
@ TRIANGLE_FAN
Draws a fan of triangles.
@ QUADS
Draws unconnected quadrilaterals.
@ LINE_STRIP
Connects all the vertices to form a polyline.
@ LINES
Connects each pair of vertices with a line.
@ POLYGON
Draws a single polygon using all the vertices (in each primitive).
SoSFInt32 primitiveRestartValue
Index value for the primitive restart feature.
SoSFBufferObject vertexBuffer
Buffer object that contains the vertex data.
SoBufferedShape()
Default constructor.
SoSFBufferObject colorBuffer
Buffer object that contains the (optional) color values.
SoSFShort vertexStride
Stride in bytes between the first component of two consecutive vertices.
SoSFInt32 colorStride
Stride in bytes between the first component of two consecutive colors.
SoSFEnum shapeType
Shape type to render.
SoSFInt32 indexOffset
Offset in bytes to the first index in the buffer.
SoSFBool primitiveRestartEnabled
Enable/disable the primitive restart feature.
SoSFInt32 normalOffset
Offset in bytes to the first normal vector in the buffer.
SoSFInt32 vertexOffset
Offset in bytes to the first vertex within the buffer.
SoSFBufferObject indexBuffer
Buffer object that contains the (optional) indices.
SoSFInt32 colorComponentsCount
Number of components in each color value.
SoSFInt32 colorOffset
Offset in bytes to the first color value in the buffer.
SoSFShort normalStride
Stride in bytes between the first component of two consecutive normals.
SoMFInt32 texCoordsStride
Stride in bytes between the first component of two consecutive texture coordinates.
SoSFBool useNormalsGenerator
Indicates if the node should use the internal normal vector generator if no normals are defined.
SoSFEnum indexType
SbDataType::DataType type for the indices.
SoMFInt32 texCoordsOffset
Offset in bytes to the first texture coordinate in the buffer.
Base class for describing detail information about a shape node.
Definition SoDetail.h:99
Style
These are the available draw styles.
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> OpenGL buffer ob...
Renders a scene graph using Open Inventor's Render Engine.
Computes bounding box of a scene.
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Counts number of...
Multiple-value field containing any number of buffer objects.
Multiple-value field containing any number of enumerated type values.
Definition SoMFEnum.h:95
Multiple-value field containing any number of int32_t integers.
Definition SoMFInt32.h:88
friend class SoAction
Definition SoNode.h:472
Maintains a list of pointers to nodes.
Definition SoNodeList.h:74
Represents point on surface of picked object.
Represents a vertex of a generated primitive.
Intersects objects with a ray cast into scene.
Field containing a single Boolean value.
Definition SoSFBool.h:79
Field containing an enumerated value.
Definition SoSFEnum.h:89
Field containing a int32_t integer.
Definition SoSFInt32.h:80
Field containing a short integer.
Definition SoSFShort.h:81
Traversal state.
Definition SoState.h:74
int SbBool
Boolean type.
Definition SbBase.h:87