mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0030635: Visualization - move OpenGl_Layer to Graphic3d_Layer
Renamed classes (moved from TKOpenGl to TKV3d): - OpenGl_Layer -> Graphic3d_Layer; - OpenGl_BVHClipPrimitiveSet -> Graphic3d_BvhCStructureSet; - OpenGl_BVHClipPrimitiveTrsfPersSet -> Graphic3d_BvhCStructureSetTrsfPers; - OpenGl_BVHTreeSelector -> Graphic3d_CullingTool. Method OpenGl_Layer::Render() has been moved to OpenGl_LayerList::renderLayer(). Standard Z-layers list definition has been moved from OpenGl_GraphicDriver to base class Graphic3d_GraphicDriver.
This commit is contained in:
parent
24ee60ffd7
commit
d325cb7f57
@ -33,6 +33,10 @@ Graphic3d_Buffer.cxx
|
|||||||
Graphic3d_Buffer.hxx
|
Graphic3d_Buffer.hxx
|
||||||
Graphic3d_BufferRange.hxx
|
Graphic3d_BufferRange.hxx
|
||||||
Graphic3d_BufferType.hxx
|
Graphic3d_BufferType.hxx
|
||||||
|
Graphic3d_BvhCStructureSet.cxx
|
||||||
|
Graphic3d_BvhCStructureSet.hxx
|
||||||
|
Graphic3d_BvhCStructureSetTrsfPers.cxx
|
||||||
|
Graphic3d_BvhCStructureSetTrsfPers.hxx
|
||||||
Graphic3d_Camera.cxx
|
Graphic3d_Camera.cxx
|
||||||
Graphic3d_Camera.hxx
|
Graphic3d_Camera.hxx
|
||||||
Graphic3d_CameraTile.hxx
|
Graphic3d_CameraTile.hxx
|
||||||
@ -44,6 +48,8 @@ Graphic3d_ClipPlane.hxx
|
|||||||
Graphic3d_CStructure.cxx
|
Graphic3d_CStructure.cxx
|
||||||
Graphic3d_CStructure.hxx
|
Graphic3d_CStructure.hxx
|
||||||
Graphic3d_CTexture.hxx
|
Graphic3d_CTexture.hxx
|
||||||
|
Graphic3d_CullingTool.cxx
|
||||||
|
Graphic3d_CullingTool.hxx
|
||||||
Graphic3d_CView.cxx
|
Graphic3d_CView.cxx
|
||||||
Graphic3d_CView.hxx
|
Graphic3d_CView.hxx
|
||||||
Graphic3d_DataStructureManager.cxx
|
Graphic3d_DataStructureManager.cxx
|
||||||
@ -78,6 +84,7 @@ Graphic3d_MapOfAspectsToAspects.hxx
|
|||||||
Graphic3d_MapIteratorOfMapOfStructure.hxx
|
Graphic3d_MapIteratorOfMapOfStructure.hxx
|
||||||
Graphic3d_MapOfObject.hxx
|
Graphic3d_MapOfObject.hxx
|
||||||
Graphic3d_MapOfStructure.hxx
|
Graphic3d_MapOfStructure.hxx
|
||||||
|
Graphic3d_MapOfZLayerSettings.hxx
|
||||||
Graphic3d_MarkerImage.cxx
|
Graphic3d_MarkerImage.cxx
|
||||||
Graphic3d_MarkerImage.hxx
|
Graphic3d_MarkerImage.hxx
|
||||||
Graphic3d_Mat4.hxx
|
Graphic3d_Mat4.hxx
|
||||||
@ -173,5 +180,7 @@ Graphic3d_VerticalTextAlignment.hxx
|
|||||||
Graphic3d_ViewAffinity.cxx
|
Graphic3d_ViewAffinity.cxx
|
||||||
Graphic3d_ViewAffinity.hxx
|
Graphic3d_ViewAffinity.hxx
|
||||||
Graphic3d_WorldViewProjState.hxx
|
Graphic3d_WorldViewProjState.hxx
|
||||||
|
Graphic3d_Layer.cxx
|
||||||
|
Graphic3d_Layer.hxx
|
||||||
Graphic3d_ZLayerId.hxx
|
Graphic3d_ZLayerId.hxx
|
||||||
Graphic3d_ZLayerSettings.hxx
|
Graphic3d_ZLayerSettings.hxx
|
||||||
|
@ -13,18 +13,18 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <OpenGl_BVHClipPrimitiveSet.hxx>
|
#include <Graphic3d_BvhCStructureSet.hxx>
|
||||||
|
|
||||||
#include <BVH_BinnedBuilder.hxx>
|
#include <BVH_BinnedBuilder.hxx>
|
||||||
#include <Graphic3d_GraphicDriver.hxx>
|
#include <Graphic3d_CStructure.hxx>
|
||||||
|
|
||||||
IMPLEMENT_STANDARD_RTTIEXT(OpenGl_BVHClipPrimitiveSet, BVH_PrimitiveSet3d)
|
IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_BvhCStructureSet, BVH_PrimitiveSet3d)
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : OpenGl_BVHClipPrimitiveSet
|
// function : Graphic3d_BvhCStructureSet
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
OpenGl_BVHClipPrimitiveSet::OpenGl_BVHClipPrimitiveSet()
|
Graphic3d_BvhCStructureSet::Graphic3d_BvhCStructureSet()
|
||||||
{
|
{
|
||||||
myBuilder = new BVH_BinnedBuilder<Standard_Real, 3> (BVH_Constants_LeafNodeSizeSingle, BVH_Constants_MaxTreeDepth);
|
myBuilder = new BVH_BinnedBuilder<Standard_Real, 3> (BVH_Constants_LeafNodeSizeSingle, BVH_Constants_MaxTreeDepth);
|
||||||
}
|
}
|
||||||
@ -33,7 +33,7 @@ OpenGl_BVHClipPrimitiveSet::OpenGl_BVHClipPrimitiveSet()
|
|||||||
// function : Size
|
// function : Size
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Integer OpenGl_BVHClipPrimitiveSet::Size() const
|
Standard_Integer Graphic3d_BvhCStructureSet::Size() const
|
||||||
{
|
{
|
||||||
return myStructs.Size();
|
return myStructs.Size();
|
||||||
}
|
}
|
||||||
@ -42,7 +42,7 @@ Standard_Integer OpenGl_BVHClipPrimitiveSet::Size() const
|
|||||||
// function : Box
|
// function : Box
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Graphic3d_BndBox3d OpenGl_BVHClipPrimitiveSet::Box (const Standard_Integer theIdx) const
|
Graphic3d_BndBox3d Graphic3d_BvhCStructureSet::Box (const Standard_Integer theIdx) const
|
||||||
{
|
{
|
||||||
return myStructs.FindKey (theIdx + 1)->BoundingBox();
|
return myStructs.FindKey (theIdx + 1)->BoundingBox();
|
||||||
}
|
}
|
||||||
@ -51,7 +51,7 @@ Graphic3d_BndBox3d OpenGl_BVHClipPrimitiveSet::Box (const Standard_Integer theId
|
|||||||
// function : Center
|
// function : Center
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Real OpenGl_BVHClipPrimitiveSet::Center (const Standard_Integer theIdx,
|
Standard_Real Graphic3d_BvhCStructureSet::Center (const Standard_Integer theIdx,
|
||||||
const Standard_Integer theAxis) const
|
const Standard_Integer theAxis) const
|
||||||
{
|
{
|
||||||
Graphic3d_BndBox3d aBndBox = myStructs.FindKey (theIdx + 1)->BoundingBox();
|
Graphic3d_BndBox3d aBndBox = myStructs.FindKey (theIdx + 1)->BoundingBox();
|
||||||
@ -66,7 +66,7 @@ Standard_Real OpenGl_BVHClipPrimitiveSet::Center (const Standard_Integer theIdx,
|
|||||||
// function : Swap
|
// function : Swap
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_BVHClipPrimitiveSet::Swap (const Standard_Integer theIdx1,
|
void Graphic3d_BvhCStructureSet::Swap (const Standard_Integer theIdx1,
|
||||||
const Standard_Integer theIdx2)
|
const Standard_Integer theIdx2)
|
||||||
{
|
{
|
||||||
myStructs.Swap (theIdx1 + 1, theIdx2 + 1);
|
myStructs.Swap (theIdx1 + 1, theIdx2 + 1);
|
||||||
@ -76,7 +76,7 @@ void OpenGl_BVHClipPrimitiveSet::Swap (const Standard_Integer theIdx1,
|
|||||||
// function : Add
|
// function : Add
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Boolean OpenGl_BVHClipPrimitiveSet::Add (const OpenGl_Structure* theStruct)
|
Standard_Boolean Graphic3d_BvhCStructureSet::Add (const Graphic3d_CStructure* theStruct)
|
||||||
{
|
{
|
||||||
const Standard_Integer aSize = myStructs.Size();
|
const Standard_Integer aSize = myStructs.Size();
|
||||||
|
|
||||||
@ -94,7 +94,7 @@ Standard_Boolean OpenGl_BVHClipPrimitiveSet::Add (const OpenGl_Structure* theStr
|
|||||||
// function : Remove
|
// function : Remove
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Boolean OpenGl_BVHClipPrimitiveSet::Remove (const OpenGl_Structure* theStruct)
|
Standard_Boolean Graphic3d_BvhCStructureSet::Remove (const Graphic3d_CStructure* theStruct)
|
||||||
{
|
{
|
||||||
const Standard_Integer anIndex = myStructs.FindIndex (theStruct);
|
const Standard_Integer anIndex = myStructs.FindIndex (theStruct);
|
||||||
|
|
||||||
@ -114,7 +114,7 @@ Standard_Boolean OpenGl_BVHClipPrimitiveSet::Remove (const OpenGl_Structure* the
|
|||||||
// function : Clear
|
// function : Clear
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_BVHClipPrimitiveSet::Clear()
|
void Graphic3d_BvhCStructureSet::Clear()
|
||||||
{
|
{
|
||||||
myStructs.Clear();
|
myStructs.Clear();
|
||||||
MarkDirty();
|
MarkDirty();
|
||||||
@ -124,7 +124,7 @@ void OpenGl_BVHClipPrimitiveSet::Clear()
|
|||||||
// function : GetStructureById
|
// function : GetStructureById
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
const OpenGl_Structure* OpenGl_BVHClipPrimitiveSet::GetStructureById (Standard_Integer theId)
|
const Graphic3d_CStructure* Graphic3d_BvhCStructureSet::GetStructureById (Standard_Integer theId)
|
||||||
{
|
{
|
||||||
return myStructs.FindKey (theId + 1);
|
return myStructs.FindKey (theId + 1);
|
||||||
}
|
}
|
@ -13,19 +13,19 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#ifndef _OpenGl_BVHClipPrimitiveSet_HeaderFile
|
#ifndef _Graphic3d_BvhCStructureSet_HeaderFile
|
||||||
#define _OpenGl_BVHClipPrimitiveSet_HeaderFile
|
#define _Graphic3d_BvhCStructureSet_HeaderFile
|
||||||
|
|
||||||
#include <BVH_PrimitiveSet3d.hxx>
|
#include <BVH_PrimitiveSet3d.hxx>
|
||||||
#include <NCollection_Array1.hxx>
|
#include <Graphic3d_BndBox3d.hxx>
|
||||||
#include <NCollection_IndexedMap.hxx>
|
#include <NCollection_IndexedMap.hxx>
|
||||||
|
|
||||||
#include <OpenGl_Structure.hxx>
|
class Graphic3d_CStructure;
|
||||||
|
|
||||||
//! Set of OpenGl_Structures for building BVH tree.
|
//! Set of OpenGl_Structures for building BVH tree.
|
||||||
class OpenGl_BVHClipPrimitiveSet : public BVH_PrimitiveSet3d
|
class Graphic3d_BvhCStructureSet : public BVH_PrimitiveSet3d
|
||||||
{
|
{
|
||||||
DEFINE_STANDARD_RTTIEXT(OpenGl_BVHClipPrimitiveSet, BVH_PrimitiveSet3d)
|
DEFINE_STANDARD_RTTIEXT(Graphic3d_BvhCStructureSet, BVH_PrimitiveSet3d)
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
using BVH_PrimitiveSet3d::Box;
|
using BVH_PrimitiveSet3d::Box;
|
||||||
@ -33,7 +33,7 @@ protected:
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
//! Creates an empty primitive set for BVH clipping.
|
//! Creates an empty primitive set for BVH clipping.
|
||||||
OpenGl_BVHClipPrimitiveSet();
|
Graphic3d_BvhCStructureSet();
|
||||||
|
|
||||||
//! Returns total number of structures.
|
//! Returns total number of structures.
|
||||||
virtual Standard_Integer Size() const Standard_OVERRIDE;
|
virtual Standard_Integer Size() const Standard_OVERRIDE;
|
||||||
@ -51,25 +51,25 @@ public:
|
|||||||
|
|
||||||
//! Adds structure to the set.
|
//! Adds structure to the set.
|
||||||
//! @return true if structure added, otherwise returns false (structure already in the set).
|
//! @return true if structure added, otherwise returns false (structure already in the set).
|
||||||
Standard_Boolean Add (const OpenGl_Structure* theStruct);
|
Standard_Boolean Add (const Graphic3d_CStructure* theStruct);
|
||||||
|
|
||||||
//! Removes the given structure from the set.
|
//! Removes the given structure from the set.
|
||||||
//! @return true if structure removed, otherwise returns false (structure is not in the set).
|
//! @return true if structure removed, otherwise returns false (structure is not in the set).
|
||||||
Standard_Boolean Remove (const OpenGl_Structure* theStruct);
|
Standard_Boolean Remove (const Graphic3d_CStructure* theStruct);
|
||||||
|
|
||||||
//! Cleans the whole primitive set.
|
//! Cleans the whole primitive set.
|
||||||
void Clear();
|
void Clear();
|
||||||
|
|
||||||
//! Returns the structure corresponding to the given ID.
|
//! Returns the structure corresponding to the given ID.
|
||||||
const OpenGl_Structure* GetStructureById (Standard_Integer theId);
|
const Graphic3d_CStructure* GetStructureById (Standard_Integer theId);
|
||||||
|
|
||||||
//! Access directly a collection of structures.
|
//! Access directly a collection of structures.
|
||||||
const NCollection_IndexedMap<const OpenGl_Structure*>& Structures() const { return myStructs; }
|
const NCollection_IndexedMap<const Graphic3d_CStructure*>& Structures() const { return myStructs; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
NCollection_IndexedMap<const OpenGl_Structure*> myStructs; //!< Indexed map of structures.
|
NCollection_IndexedMap<const Graphic3d_CStructure*> myStructs; //!< Indexed map of structures.
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _OpenGl_BVHClipPrimitiveSet_HeaderFile
|
#endif // _Graphic3d_BvhCStructureSet_HeaderFile
|
@ -13,13 +13,15 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <OpenGl_BVHClipPrimitiveTrsfPersSet.hxx>
|
#include <Graphic3d_BvhCStructureSetTrsfPers.hxx>
|
||||||
|
|
||||||
|
#include <Graphic3d_CStructure.hxx>
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : OpenGl_BVHClipPrimitiveTrsfPersSet
|
// function : Graphic3d_BvhCStructureSetTrsfPers
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
OpenGl_BVHClipPrimitiveTrsfPersSet::OpenGl_BVHClipPrimitiveTrsfPersSet (const Handle(Select3D_BVHBuilder3d)& theBuilder)
|
Graphic3d_BvhCStructureSetTrsfPers::Graphic3d_BvhCStructureSetTrsfPers (const Handle(Select3D_BVHBuilder3d)& theBuilder)
|
||||||
: myIsDirty (Standard_False),
|
: myIsDirty (Standard_False),
|
||||||
myBVH (new BVH_Tree<Standard_Real, 3>()),
|
myBVH (new BVH_Tree<Standard_Real, 3>()),
|
||||||
myBuilder (theBuilder)
|
myBuilder (theBuilder)
|
||||||
@ -31,7 +33,7 @@ OpenGl_BVHClipPrimitiveTrsfPersSet::OpenGl_BVHClipPrimitiveTrsfPersSet (const Ha
|
|||||||
// function : Size
|
// function : Size
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Integer OpenGl_BVHClipPrimitiveTrsfPersSet::Size() const
|
Standard_Integer Graphic3d_BvhCStructureSetTrsfPers::Size() const
|
||||||
{
|
{
|
||||||
return myStructs.Size();
|
return myStructs.Size();
|
||||||
}
|
}
|
||||||
@ -40,7 +42,7 @@ Standard_Integer OpenGl_BVHClipPrimitiveTrsfPersSet::Size() const
|
|||||||
// function : Box
|
// function : Box
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Graphic3d_BndBox3d OpenGl_BVHClipPrimitiveTrsfPersSet::Box (const Standard_Integer theIdx) const
|
Graphic3d_BndBox3d Graphic3d_BvhCStructureSetTrsfPers::Box (const Standard_Integer theIdx) const
|
||||||
{
|
{
|
||||||
return *myStructBoxes (theIdx + 1);
|
return *myStructBoxes (theIdx + 1);
|
||||||
}
|
}
|
||||||
@ -49,7 +51,7 @@ Graphic3d_BndBox3d OpenGl_BVHClipPrimitiveTrsfPersSet::Box (const Standard_Integ
|
|||||||
// function : Center
|
// function : Center
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Real OpenGl_BVHClipPrimitiveTrsfPersSet::Center (const Standard_Integer theIdx,
|
Standard_Real Graphic3d_BvhCStructureSetTrsfPers::Center (const Standard_Integer theIdx,
|
||||||
const Standard_Integer theAxis) const
|
const Standard_Integer theAxis) const
|
||||||
{
|
{
|
||||||
const Graphic3d_BndBox3d& aBndBox = *myStructBoxes (theIdx + 1);
|
const Graphic3d_BndBox3d& aBndBox = *myStructBoxes (theIdx + 1);
|
||||||
@ -60,7 +62,7 @@ Standard_Real OpenGl_BVHClipPrimitiveTrsfPersSet::Center (const Standard_Integer
|
|||||||
// function : Swap
|
// function : Swap
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_BVHClipPrimitiveTrsfPersSet::Swap (const Standard_Integer theIdx1,
|
void Graphic3d_BvhCStructureSetTrsfPers::Swap (const Standard_Integer theIdx1,
|
||||||
const Standard_Integer theIdx2)
|
const Standard_Integer theIdx2)
|
||||||
{
|
{
|
||||||
const Standard_Integer aStructIdx1 = theIdx1 + 1;
|
const Standard_Integer aStructIdx1 = theIdx1 + 1;
|
||||||
@ -74,7 +76,7 @@ void OpenGl_BVHClipPrimitiveTrsfPersSet::Swap (const Standard_Integer theIdx1,
|
|||||||
// function : Add
|
// function : Add
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Boolean OpenGl_BVHClipPrimitiveTrsfPersSet::Add (const OpenGl_Structure* theStruct)
|
Standard_Boolean Graphic3d_BvhCStructureSetTrsfPers::Add (const Graphic3d_CStructure* theStruct)
|
||||||
{
|
{
|
||||||
const Standard_Integer aSize = myStructs.Size();
|
const Standard_Integer aSize = myStructs.Size();
|
||||||
|
|
||||||
@ -92,7 +94,7 @@ Standard_Boolean OpenGl_BVHClipPrimitiveTrsfPersSet::Add (const OpenGl_Structure
|
|||||||
// function : Remove
|
// function : Remove
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Boolean OpenGl_BVHClipPrimitiveTrsfPersSet::Remove (const OpenGl_Structure* theStruct)
|
Standard_Boolean Graphic3d_BvhCStructureSetTrsfPers::Remove (const Graphic3d_CStructure* theStruct)
|
||||||
{
|
{
|
||||||
const Standard_Integer anIndex = myStructs.FindIndex (theStruct);
|
const Standard_Integer anIndex = myStructs.FindIndex (theStruct);
|
||||||
|
|
||||||
@ -112,7 +114,7 @@ Standard_Boolean OpenGl_BVHClipPrimitiveTrsfPersSet::Remove (const OpenGl_Struct
|
|||||||
// function : Clear
|
// function : Clear
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_BVHClipPrimitiveTrsfPersSet::Clear()
|
void Graphic3d_BvhCStructureSetTrsfPers::Clear()
|
||||||
{
|
{
|
||||||
myStructs.Clear();
|
myStructs.Clear();
|
||||||
MarkDirty();
|
MarkDirty();
|
||||||
@ -122,7 +124,7 @@ void OpenGl_BVHClipPrimitiveTrsfPersSet::Clear()
|
|||||||
// function : GetStructureById
|
// function : GetStructureById
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
const OpenGl_Structure* OpenGl_BVHClipPrimitiveTrsfPersSet::GetStructureById (Standard_Integer theId)
|
const Graphic3d_CStructure* Graphic3d_BvhCStructureSetTrsfPers::GetStructureById (Standard_Integer theId)
|
||||||
{
|
{
|
||||||
return myStructs.FindKey (theId + 1);
|
return myStructs.FindKey (theId + 1);
|
||||||
}
|
}
|
||||||
@ -131,10 +133,9 @@ const OpenGl_Structure* OpenGl_BVHClipPrimitiveTrsfPersSet::GetStructureById (St
|
|||||||
// function : BVH
|
// function : BVH
|
||||||
// purpose :
|
// purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
const opencascade::handle<BVH_Tree<Standard_Real, 3> >&
|
const opencascade::handle<BVH_Tree<Standard_Real, 3> >& Graphic3d_BvhCStructureSetTrsfPers::BVH (const Handle(Graphic3d_Camera)& theCamera,
|
||||||
OpenGl_BVHClipPrimitiveTrsfPersSet::BVH (const Handle(Graphic3d_Camera)& theCamera,
|
const Graphic3d_Mat4d& theProjectionMatrix,
|
||||||
const OpenGl_Mat4d& theProjectionMatrix,
|
const Graphic3d_Mat4d& theWorldViewMatrix,
|
||||||
const OpenGl_Mat4d& theWorldViewMatrix,
|
|
||||||
const Standard_Integer theViewportWidth,
|
const Standard_Integer theViewportWidth,
|
||||||
const Standard_Integer theViewportHeight,
|
const Standard_Integer theViewportHeight,
|
||||||
const Graphic3d_WorldViewProjState& theWVPState)
|
const Graphic3d_WorldViewProjState& theWVPState)
|
||||||
@ -150,7 +151,7 @@ const opencascade::handle<BVH_Tree<Standard_Real, 3> >&
|
|||||||
|
|
||||||
for (Standard_Integer aStructIdx = 1; aStructIdx <= myStructs.Size(); ++aStructIdx)
|
for (Standard_Integer aStructIdx = 1; aStructIdx <= myStructs.Size(); ++aStructIdx)
|
||||||
{
|
{
|
||||||
const OpenGl_Structure* aStructure = myStructs (aStructIdx);
|
const Graphic3d_CStructure* aStructure = myStructs (aStructIdx);
|
||||||
|
|
||||||
Handle(HBndBox3d) aBoundingBox = new HBndBox3d();
|
Handle(HBndBox3d) aBoundingBox = new HBndBox3d();
|
||||||
*aBoundingBox = aStructure->BoundingBox();
|
*aBoundingBox = aStructure->BoundingBox();
|
@ -13,24 +13,26 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#ifndef _OpenGl_BVHClipPrimitiveTrsfPersSet_HeaderFile
|
#ifndef _Graphic3d_BvhCStructureSetTrsfPers_HeaderFile
|
||||||
#define _OpenGl_BVHClipPrimitiveTrsfPersSet_HeaderFile
|
#define _Graphic3d_BvhCStructureSetTrsfPers_HeaderFile
|
||||||
|
|
||||||
#include <BVH_Set.hxx>
|
#include <BVH_Set.hxx>
|
||||||
#include <BVH_Tree.hxx>
|
#include <BVH_Tree.hxx>
|
||||||
#include <Graphic3d_BndBox4f.hxx>
|
#include <Graphic3d_BndBox3d.hxx>
|
||||||
|
#include <Graphic3d_Mat4d.hxx>
|
||||||
#include <Graphic3d_WorldViewProjState.hxx>
|
#include <Graphic3d_WorldViewProjState.hxx>
|
||||||
#include <NCollection_Shared.hxx>
|
#include <NCollection_Shared.hxx>
|
||||||
#include <NCollection_IndexedMap.hxx>
|
#include <NCollection_IndexedMap.hxx>
|
||||||
#include <OpenGl_Structure.hxx>
|
|
||||||
#include <OpenGl_Vec.hxx>
|
|
||||||
#include <Select3D_BVHBuilder3d.hxx>
|
#include <Select3D_BVHBuilder3d.hxx>
|
||||||
|
|
||||||
|
class Graphic3d_Camera;
|
||||||
|
class Graphic3d_CStructure;
|
||||||
|
|
||||||
//! Set of transformation persistent OpenGl_Structure for building BVH tree.
|
//! Set of transformation persistent OpenGl_Structure for building BVH tree.
|
||||||
//! Provides built-in mechanism to invalidate tree when world view projection state changes.
|
//! Provides built-in mechanism to invalidate tree when world view projection state changes.
|
||||||
//! Due to frequent invalidation of BVH tree the choice of BVH tree builder is made
|
//! Due to frequent invalidation of BVH tree the choice of BVH tree builder is made
|
||||||
//! in favor of BVH linear builder (quick rebuild).
|
//! in favor of BVH linear builder (quick rebuild).
|
||||||
class OpenGl_BVHClipPrimitiveTrsfPersSet : public BVH_Set<Standard_Real, 3>
|
class Graphic3d_BvhCStructureSetTrsfPers : public BVH_Set<Standard_Real, 3>
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
|
|
||||||
@ -39,7 +41,7 @@ private:
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
//! Creates an empty primitive set for BVH clipping.
|
//! Creates an empty primitive set for BVH clipping.
|
||||||
OpenGl_BVHClipPrimitiveTrsfPersSet (const Handle(Select3D_BVHBuilder3d)& theBuilder);
|
Graphic3d_BvhCStructureSetTrsfPers (const Handle(Select3D_BVHBuilder3d)& theBuilder);
|
||||||
|
|
||||||
//! Returns total number of structures.
|
//! Returns total number of structures.
|
||||||
virtual Standard_Integer Size() const Standard_OVERRIDE;
|
virtual Standard_Integer Size() const Standard_OVERRIDE;
|
||||||
@ -57,20 +59,20 @@ public:
|
|||||||
|
|
||||||
//! Adds structure to the set.
|
//! Adds structure to the set.
|
||||||
//! @return true if structure added, otherwise returns false (structure already in the set).
|
//! @return true if structure added, otherwise returns false (structure already in the set).
|
||||||
Standard_Boolean Add (const OpenGl_Structure* theStruct);
|
Standard_Boolean Add (const Graphic3d_CStructure* theStruct);
|
||||||
|
|
||||||
//! Removes the given structure from the set.
|
//! Removes the given structure from the set.
|
||||||
//! @return true if structure removed, otherwise returns false (structure is not in the set).
|
//! @return true if structure removed, otherwise returns false (structure is not in the set).
|
||||||
Standard_Boolean Remove (const OpenGl_Structure* theStruct);
|
Standard_Boolean Remove (const Graphic3d_CStructure* theStruct);
|
||||||
|
|
||||||
//! Cleans the whole primitive set.
|
//! Cleans the whole primitive set.
|
||||||
void Clear();
|
void Clear();
|
||||||
|
|
||||||
//! Returns the structure corresponding to the given ID.
|
//! Returns the structure corresponding to the given ID.
|
||||||
const OpenGl_Structure* GetStructureById (Standard_Integer theId);
|
const Graphic3d_CStructure* GetStructureById (Standard_Integer theId);
|
||||||
|
|
||||||
//! Access directly a collection of structures.
|
//! Access directly a collection of structures.
|
||||||
const NCollection_IndexedMap<const OpenGl_Structure*>& Structures() const { return myStructs; }
|
const NCollection_IndexedMap<const Graphic3d_CStructure*>& Structures() const { return myStructs; }
|
||||||
|
|
||||||
//! Marks object state as outdated (needs BVH rebuilding).
|
//! Marks object state as outdated (needs BVH rebuilding).
|
||||||
void MarkDirty()
|
void MarkDirty()
|
||||||
@ -80,8 +82,8 @@ public:
|
|||||||
|
|
||||||
//! Returns BVH tree for the given world view projection (builds it if necessary).
|
//! Returns BVH tree for the given world view projection (builds it if necessary).
|
||||||
const opencascade::handle<BVH_Tree<Standard_Real, 3> >& BVH (const Handle(Graphic3d_Camera)& theCamera,
|
const opencascade::handle<BVH_Tree<Standard_Real, 3> >& BVH (const Handle(Graphic3d_Camera)& theCamera,
|
||||||
const OpenGl_Mat4d& theProjectionMatrix,
|
const Graphic3d_Mat4d& theProjectionMatrix,
|
||||||
const OpenGl_Mat4d& theWorldViewMatrix,
|
const Graphic3d_Mat4d& theWorldViewMatrix,
|
||||||
const Standard_Integer theViewportWidth,
|
const Standard_Integer theViewportWidth,
|
||||||
const Standard_Integer theViewportHeight,
|
const Standard_Integer theViewportHeight,
|
||||||
const Graphic3d_WorldViewProjState& theWVPState);
|
const Graphic3d_WorldViewProjState& theWVPState);
|
||||||
@ -104,7 +106,7 @@ private:
|
|||||||
Handle(Select3D_BVHBuilder3d) myBuilder;
|
Handle(Select3D_BVHBuilder3d) myBuilder;
|
||||||
|
|
||||||
//! Indexed map of structures.
|
//! Indexed map of structures.
|
||||||
NCollection_IndexedMap<const OpenGl_Structure*> myStructs;
|
NCollection_IndexedMap<const Graphic3d_CStructure*> myStructs;
|
||||||
|
|
||||||
//! Cached set of bounding boxes precomputed for transformation persistent selectable objects.
|
//! Cached set of bounding boxes precomputed for transformation persistent selectable objects.
|
||||||
//! Cache exists only during computation of BVH Tree. Bounding boxes are world view projection
|
//! Cache exists only during computation of BVH Tree. Bounding boxes are world view projection
|
||||||
@ -115,4 +117,4 @@ private:
|
|||||||
Graphic3d_WorldViewProjState myStructBoxesState;
|
Graphic3d_WorldViewProjState myStructBoxesState;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _OpenGl_BVHClipPrimitiveTrsfPersSet_HeaderFile
|
#endif // _Graphic3d_BvhCStructureSetTrsfPers_HeaderFile
|
@ -19,7 +19,6 @@
|
|||||||
#include <Graphic3d_TransModeFlags.hxx>
|
#include <Graphic3d_TransModeFlags.hxx>
|
||||||
#include <Graphic3d_GraphicDriver.hxx>
|
#include <Graphic3d_GraphicDriver.hxx>
|
||||||
|
|
||||||
|
|
||||||
IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_CStructure,Standard_Transient)
|
IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_CStructure,Standard_Transient)
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
@ -39,7 +38,8 @@ Graphic3d_CStructure::Graphic3d_CStructure (const Handle(Graphic3d_StructureMana
|
|||||||
IsForHighlight (Standard_False),
|
IsForHighlight (Standard_False),
|
||||||
IsMutable (Standard_False),
|
IsMutable (Standard_False),
|
||||||
Is2dText (Standard_False),
|
Is2dText (Standard_False),
|
||||||
myGraphicDriver (theManager->GraphicDriver())
|
myGraphicDriver (theManager->GraphicDriver()),
|
||||||
|
myIsCulled (Standard_True)
|
||||||
{
|
{
|
||||||
Id = myGraphicDriver->NewIdentification();
|
Id = myGraphicDriver->NewIdentification();
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include <Graphic3d_Vec3.hxx>
|
#include <Graphic3d_Vec3.hxx>
|
||||||
#include <Graphic3d_ZLayerId.hxx>
|
#include <Graphic3d_ZLayerId.hxx>
|
||||||
#include <Geom_Transformation.hxx>
|
#include <Geom_Transformation.hxx>
|
||||||
|
#include <NCollection_IndexedMap.hxx>
|
||||||
|
|
||||||
class Graphic3d_GraphicDriver;
|
class Graphic3d_GraphicDriver;
|
||||||
class Graphic3d_StructureManager;
|
class Graphic3d_StructureManager;
|
||||||
@ -33,6 +34,35 @@ class Graphic3d_StructureManager;
|
|||||||
//! Low-level graphic structure interface
|
//! Low-level graphic structure interface
|
||||||
class Graphic3d_CStructure : public Standard_Transient
|
class Graphic3d_CStructure : public Standard_Transient
|
||||||
{
|
{
|
||||||
|
protected:
|
||||||
|
|
||||||
|
//! Auxiliary wrapper to iterate through structure list.
|
||||||
|
template<class Struct_t>
|
||||||
|
class SubclassStructIterator
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
SubclassStructIterator (const NCollection_IndexedMap<const Graphic3d_CStructure*>& theStructs) : myIter (theStructs) {}
|
||||||
|
Standard_Boolean More() const { return myIter.More(); }
|
||||||
|
void Next() { myIter.Next(); }
|
||||||
|
const Struct_t* Value() const { return (const Struct_t* )(myIter.Value()); }
|
||||||
|
Struct_t* ChangeValue() { return (Struct_t* )(myIter.Value()); }
|
||||||
|
private:
|
||||||
|
NCollection_IndexedMap<const Graphic3d_CStructure*>::Iterator myIter;
|
||||||
|
};
|
||||||
|
|
||||||
|
//! Auxiliary wrapper to iterate through group sequence.
|
||||||
|
template<class Group_t>
|
||||||
|
class SubclassGroupIterator
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
SubclassGroupIterator (const Graphic3d_SequenceOfGroup& theGroups) : myIter (theGroups) {}
|
||||||
|
Standard_Boolean More() const { return myIter.More(); }
|
||||||
|
void Next() { myIter.Next(); }
|
||||||
|
const Group_t* Value() const { return (const Group_t* )(myIter.Value().get()); }
|
||||||
|
Group_t* ChangeValue() { return (Group_t* )(myIter.ChangeValue().get()); }
|
||||||
|
private:
|
||||||
|
Graphic3d_SequenceOfGroup::Iterator myIter;
|
||||||
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -103,6 +133,28 @@ public:
|
|||||||
//! highlight flag is set to true
|
//! highlight flag is set to true
|
||||||
const Handle(Graphic3d_PresentationAttributes)& HighlightStyle() const { return myHighlightStyle; }
|
const Handle(Graphic3d_PresentationAttributes)& HighlightStyle() const { return myHighlightStyle; }
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
//! Returns FALSE if the structure hits the current view volume, otherwise returns TRUE.
|
||||||
|
Standard_Boolean IsCulled() const { return myIsCulled; }
|
||||||
|
|
||||||
|
//! Marks structure as culled/not culled - note that IsAlwaysRendered() is ignored here!
|
||||||
|
void SetCulled (Standard_Boolean theIsCulled) const { myIsCulled = theIsCulled; }
|
||||||
|
|
||||||
|
//! Marks structure as overlapping the current view volume one.
|
||||||
|
//! The method is called during traverse of BVH tree.
|
||||||
|
void MarkAsNotCulled() const { myIsCulled = Standard_False; }
|
||||||
|
|
||||||
|
//! Checks if the structure should be included into BVH tree or not.
|
||||||
|
Standard_Boolean IsAlwaysRendered() const
|
||||||
|
{
|
||||||
|
return IsInfinite
|
||||||
|
|| IsForHighlight
|
||||||
|
|| IsMutable
|
||||||
|
|| Is2dText
|
||||||
|
|| (!myTrsfPers.IsNull() && myTrsfPers->IsTrihedronOr2d());
|
||||||
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//! Update structure visibility state
|
//! Update structure visibility state
|
||||||
@ -133,6 +185,9 @@ public:
|
|||||||
//! Remove group from this structure
|
//! Remove group from this structure
|
||||||
virtual void RemoveGroup (const Handle(Graphic3d_Group)& theGroup) = 0;
|
virtual void RemoveGroup (const Handle(Graphic3d_Group)& theGroup) = 0;
|
||||||
|
|
||||||
|
//! Update render transformation matrix.
|
||||||
|
virtual void updateLayerTransformation() {}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
int Id;
|
int Id;
|
||||||
@ -168,6 +223,8 @@ protected:
|
|||||||
Handle(Graphic3d_SequenceOfHClipPlane) myClipPlanes;
|
Handle(Graphic3d_SequenceOfHClipPlane) myClipPlanes;
|
||||||
Handle(Graphic3d_PresentationAttributes) myHighlightStyle; //! Current highlight style; is set only if highlight flag is true
|
Handle(Graphic3d_PresentationAttributes) myHighlightStyle; //! Current highlight style; is set only if highlight flag is true
|
||||||
|
|
||||||
|
mutable Standard_Boolean myIsCulled; //!< A status specifying is structure needs to be rendered after BVH tree traverse
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
DEFINE_STANDARD_RTTIEXT(Graphic3d_CStructure,Standard_Transient) // Type definition
|
DEFINE_STANDARD_RTTIEXT(Graphic3d_CStructure,Standard_Transient) // Type definition
|
||||||
|
@ -33,7 +33,9 @@ namespace
|
|||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
Graphic3d_CView::Graphic3d_CView (const Handle(Graphic3d_StructureManager)& theMgr)
|
Graphic3d_CView::Graphic3d_CView (const Handle(Graphic3d_StructureManager)& theMgr)
|
||||||
: myStructureManager (theMgr),
|
: myBgColor (Quantity_NOC_BLACK),
|
||||||
|
myStructureManager (theMgr),
|
||||||
|
myCamera (new Graphic3d_Camera()),
|
||||||
myHiddenObjects (new Graphic3d_NMapOfTransient()),
|
myHiddenObjects (new Graphic3d_NMapOfTransient()),
|
||||||
myIsInComputedMode (Standard_False),
|
myIsInComputedMode (Standard_False),
|
||||||
myIsActive (Standard_False),
|
myIsActive (Standard_False),
|
||||||
|
@ -87,6 +87,12 @@ public:
|
|||||||
//! Returns true if the view was removed.
|
//! Returns true if the view was removed.
|
||||||
Standard_Boolean IsRemoved() const { return myIsRemoved; }
|
Standard_Boolean IsRemoved() const { return myIsRemoved; }
|
||||||
|
|
||||||
|
//! Returns camera object of the view.
|
||||||
|
virtual const Handle(Graphic3d_Camera)& Camera() const { return myCamera; }
|
||||||
|
|
||||||
|
//! Sets camera used by the view.
|
||||||
|
virtual void SetCamera (const Handle(Graphic3d_Camera)& theCamera) { myCamera = theCamera; }
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//! Returns default Shading Model of the view; Graphic3d_TOSM_FRAGMENT by default.
|
//! Returns default Shading Model of the view; Graphic3d_TOSM_FRAGMENT by default.
|
||||||
@ -252,20 +258,6 @@ public:
|
|||||||
//! Returns True if the window associated to the view is defined.
|
//! Returns True if the window associated to the view is defined.
|
||||||
virtual Standard_Boolean IsDefined() const = 0;
|
virtual Standard_Boolean IsDefined() const = 0;
|
||||||
|
|
||||||
//! Returns data of a graduated trihedron
|
|
||||||
virtual const Graphic3d_GraduatedTrihedron& GetGraduatedTrihedron() = 0;
|
|
||||||
|
|
||||||
//! Displays Graduated Trihedron.
|
|
||||||
virtual void GraduatedTrihedronDisplay (const Graphic3d_GraduatedTrihedron& theTrihedronData) = 0;
|
|
||||||
|
|
||||||
//! Erases Graduated Trihedron.
|
|
||||||
virtual void GraduatedTrihedronErase() = 0;
|
|
||||||
|
|
||||||
//! Sets minimum and maximum points of scene bounding box for Graduated Trihedron stored in graphic view object.
|
|
||||||
//! @param theMin [in] the minimum point of scene.
|
|
||||||
//! @param theMax [in] the maximum point of scene.
|
|
||||||
virtual void GraduatedTrihedronMinMaxValues (const Graphic3d_Vec3 theMin, const Graphic3d_Vec3 theMax) = 0;
|
|
||||||
|
|
||||||
//! Dump active rendering buffer into specified memory buffer.
|
//! Dump active rendering buffer into specified memory buffer.
|
||||||
virtual Standard_Boolean BufferDump (Image_PixMap& theImage, const Graphic3d_BufferType& theBufferType) = 0;
|
virtual Standard_Boolean BufferDump (Image_PixMap& theImage, const Graphic3d_BufferType& theBufferType) = 0;
|
||||||
|
|
||||||
@ -352,10 +344,10 @@ public:
|
|||||||
Graphic3d_RenderingParams& ChangeRenderingParams() { return myRenderParams; }
|
Graphic3d_RenderingParams& ChangeRenderingParams() { return myRenderParams; }
|
||||||
|
|
||||||
//! Returns background fill color.
|
//! Returns background fill color.
|
||||||
virtual Aspect_Background Background() const = 0;
|
virtual Aspect_Background Background() const { return Aspect_Background (myBgColor.GetRGB()); }
|
||||||
|
|
||||||
//! Sets background fill color.
|
//! Sets background fill color.
|
||||||
virtual void SetBackground (const Aspect_Background& theBackground) = 0;
|
virtual void SetBackground (const Aspect_Background& theBackground) { myBgColor.SetRGB (theBackground.Color()); }
|
||||||
|
|
||||||
//! Returns gradient background fill colors.
|
//! Returns gradient background fill colors.
|
||||||
virtual Aspect_GradientBackground GradientBackground() const = 0;
|
virtual Aspect_GradientBackground GradientBackground() const = 0;
|
||||||
@ -387,12 +379,6 @@ public:
|
|||||||
//! Sets backfacing model for the view.
|
//! Sets backfacing model for the view.
|
||||||
virtual void SetBackfacingModel (const Graphic3d_TypeOfBackfacingModel theModel) = 0;
|
virtual void SetBackfacingModel (const Graphic3d_TypeOfBackfacingModel theModel) = 0;
|
||||||
|
|
||||||
//! Returns camera object of the view.
|
|
||||||
virtual const Handle(Graphic3d_Camera)& Camera() const = 0;
|
|
||||||
|
|
||||||
//! Sets camera used by the view.
|
|
||||||
virtual void SetCamera (const Handle(Graphic3d_Camera)& theCamera) = 0;
|
|
||||||
|
|
||||||
//! Returns list of lights of the view.
|
//! Returns list of lights of the view.
|
||||||
virtual const Handle(Graphic3d_LightSet)& Lights() const = 0;
|
virtual const Handle(Graphic3d_LightSet)& Lights() const = 0;
|
||||||
|
|
||||||
@ -421,6 +407,26 @@ public:
|
|||||||
//! Fills in the dictionary with statistic performance info.
|
//! Fills in the dictionary with statistic performance info.
|
||||||
virtual void StatisticInformation (TColStd_IndexedDataMapOfStringString& theDict) const = 0;
|
virtual void StatisticInformation (TColStd_IndexedDataMapOfStringString& theDict) const = 0;
|
||||||
|
|
||||||
|
public: //! @name obsolete Graduated Trihedron functionality
|
||||||
|
|
||||||
|
//! Returns data of a graduated trihedron
|
||||||
|
virtual const Graphic3d_GraduatedTrihedron& GetGraduatedTrihedron() { return myGTrihedronData; }
|
||||||
|
|
||||||
|
//! Displays Graduated Trihedron.
|
||||||
|
virtual void GraduatedTrihedronDisplay (const Graphic3d_GraduatedTrihedron& theTrihedronData) { (void )theTrihedronData; }
|
||||||
|
|
||||||
|
//! Erases Graduated Trihedron.
|
||||||
|
virtual void GraduatedTrihedronErase() {}
|
||||||
|
|
||||||
|
//! Sets minimum and maximum points of scene bounding box for Graduated Trihedron stored in graphic view object.
|
||||||
|
//! @param theMin [in] the minimum point of scene.
|
||||||
|
//! @param theMax [in] the maximum point of scene.
|
||||||
|
virtual void GraduatedTrihedronMinMaxValues (const Graphic3d_Vec3 theMin, const Graphic3d_Vec3 theMax)
|
||||||
|
{
|
||||||
|
(void )theMin;
|
||||||
|
(void )theMax;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
//! Adds the structure to display lists of the view.
|
//! Adds the structure to display lists of the view.
|
||||||
@ -448,7 +454,9 @@ protected:
|
|||||||
|
|
||||||
Standard_Integer myId;
|
Standard_Integer myId;
|
||||||
Graphic3d_RenderingParams myRenderParams;
|
Graphic3d_RenderingParams myRenderParams;
|
||||||
|
Quantity_ColorRGBA myBgColor;
|
||||||
Handle(Graphic3d_StructureManager) myStructureManager;
|
Handle(Graphic3d_StructureManager) myStructureManager;
|
||||||
|
Handle(Graphic3d_Camera) myCamera;
|
||||||
Graphic3d_SequenceOfStructure myStructsToCompute;
|
Graphic3d_SequenceOfStructure myStructsToCompute;
|
||||||
Graphic3d_SequenceOfStructure myStructsComputed;
|
Graphic3d_SequenceOfStructure myStructsComputed;
|
||||||
Graphic3d_MapOfStructure myStructsDisplayed;
|
Graphic3d_MapOfStructure myStructsDisplayed;
|
||||||
@ -459,6 +467,10 @@ protected:
|
|||||||
Graphic3d_TypeOfShadingModel myShadingModel;
|
Graphic3d_TypeOfShadingModel myShadingModel;
|
||||||
Graphic3d_TypeOfVisualization myVisualization;
|
Graphic3d_TypeOfVisualization myVisualization;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
|
||||||
|
Graphic3d_GraduatedTrihedron myGTrihedronData;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _Graphic3d_CView_HeaderFile
|
#endif // _Graphic3d_CView_HeaderFile
|
||||||
|
@ -13,17 +13,17 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
|
#include <Graphic3d_CullingTool.hxx>
|
||||||
|
|
||||||
|
#include <Precision.hxx>
|
||||||
|
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
|
||||||
#include <OpenGl_BVHTreeSelector.hxx>
|
|
||||||
#include <OpenGl_BVHClipPrimitiveSet.hxx>
|
|
||||||
#include <Graphic3d_GraphicDriver.hxx>
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : OpenGl_BVHTreeSelector
|
// function : Graphic3d_CullingTool
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
OpenGl_BVHTreeSelector::OpenGl_BVHTreeSelector()
|
Graphic3d_CullingTool::Graphic3d_CullingTool()
|
||||||
: myClipVerts (0, Graphic3d_Camera::FrustumVerticesNB),
|
: myClipVerts (0, Graphic3d_Camera::FrustumVerticesNB),
|
||||||
myIsProjectionParallel (Standard_True),
|
myIsProjectionParallel (Standard_True),
|
||||||
myCamScale (1.0),
|
myCamScale (1.0),
|
||||||
@ -36,7 +36,7 @@ OpenGl_BVHTreeSelector::OpenGl_BVHTreeSelector()
|
|||||||
// function : SetViewVolume
|
// function : SetViewVolume
|
||||||
// purpose : Retrieves view volume's planes equations and its vertices from projection and world-view matrices.
|
// purpose : Retrieves view volume's planes equations and its vertices from projection and world-view matrices.
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_BVHTreeSelector::SetViewVolume (const Handle(Graphic3d_Camera)& theCamera)
|
void Graphic3d_CullingTool::SetViewVolume (const Handle(Graphic3d_Camera)& theCamera)
|
||||||
{
|
{
|
||||||
if (!myWorldViewProjState.IsChanged (theCamera->WorldViewProjState()))
|
if (!myWorldViewProjState.IsChanged (theCamera->WorldViewProjState()))
|
||||||
return;
|
return;
|
||||||
@ -70,7 +70,7 @@ void OpenGl_BVHTreeSelector::SetViewVolume (const Handle(Graphic3d_Camera)& theC
|
|||||||
{
|
{
|
||||||
for (Standard_Integer i = 0; i < 2; ++i)
|
for (Standard_Integer i = 0; i < 2; ++i)
|
||||||
{
|
{
|
||||||
OpenGl_Vec3d aPlanePnts[3];
|
Graphic3d_Vec3d aPlanePnts[3];
|
||||||
for (Standard_Integer aPntIter = 0; aPntIter < 3; ++aPntIter)
|
for (Standard_Integer aPntIter = 0; aPntIter < 3; ++aPntIter)
|
||||||
{
|
{
|
||||||
aShifts[aFaceIdx] = i;
|
aShifts[aFaceIdx] = i;
|
||||||
@ -82,7 +82,7 @@ void OpenGl_BVHTreeSelector::SetViewVolume (const Handle(Graphic3d_Camera)& theC
|
|||||||
|
|
||||||
myClipPlanes[aFaceIdx * 2 + i].Origin = aPlanePnts[0];
|
myClipPlanes[aFaceIdx * 2 + i].Origin = aPlanePnts[0];
|
||||||
myClipPlanes[aFaceIdx * 2 + i].Normal =
|
myClipPlanes[aFaceIdx * 2 + i].Normal =
|
||||||
OpenGl_Vec3d::Cross (aPlanePnts[1] - aPlanePnts[0],
|
Graphic3d_Vec3d::Cross (aPlanePnts[1] - aPlanePnts[0],
|
||||||
aPlanePnts[2] - aPlanePnts[0]).Normalized() * (i == 0 ? -1.f : 1.f);
|
aPlanePnts[2] - aPlanePnts[0]).Normalized() * (i == 0 ? -1.f : 1.f);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -92,7 +92,7 @@ void OpenGl_BVHTreeSelector::SetViewVolume (const Handle(Graphic3d_Camera)& theC
|
|||||||
// function : SetViewportSize
|
// function : SetViewportSize
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_BVHTreeSelector::SetViewportSize (Standard_Integer theViewportWidth,
|
void Graphic3d_CullingTool::SetViewportSize (Standard_Integer theViewportWidth,
|
||||||
Standard_Integer theViewportHeight,
|
Standard_Integer theViewportHeight,
|
||||||
Standard_Real theResolutionRatio)
|
Standard_Real theResolutionRatio)
|
||||||
{
|
{
|
||||||
@ -106,8 +106,8 @@ void OpenGl_BVHTreeSelector::SetViewportSize (Standard_Integer theViewportWidth,
|
|||||||
// function : SignedPlanePointDistance
|
// function : SignedPlanePointDistance
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Real OpenGl_BVHTreeSelector::SignedPlanePointDistance (const OpenGl_Vec4d& theNormal,
|
Standard_Real Graphic3d_CullingTool::SignedPlanePointDistance (const Graphic3d_Vec4d& theNormal,
|
||||||
const OpenGl_Vec4d& thePnt)
|
const Graphic3d_Vec4d& thePnt)
|
||||||
{
|
{
|
||||||
const Standard_Real aNormLength = std::sqrt (theNormal.x() * theNormal.x()
|
const Standard_Real aNormLength = std::sqrt (theNormal.x() * theNormal.x()
|
||||||
+ theNormal.y() * theNormal.y()
|
+ theNormal.y() * theNormal.y()
|
||||||
@ -128,7 +128,7 @@ Standard_Real OpenGl_BVHTreeSelector::SignedPlanePointDistance (const OpenGl_Vec
|
|||||||
// function : SetCullingDistance
|
// function : SetCullingDistance
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_BVHTreeSelector::SetCullingDistance (CullingContext& theCtx,
|
void Graphic3d_CullingTool::SetCullingDistance (CullingContext& theCtx,
|
||||||
Standard_Real theDistance) const
|
Standard_Real theDistance) const
|
||||||
{
|
{
|
||||||
theCtx.DistCull = -1.0;
|
theCtx.DistCull = -1.0;
|
||||||
@ -144,7 +144,7 @@ void OpenGl_BVHTreeSelector::SetCullingDistance (CullingContext& theCtx,
|
|||||||
// function : SetCullingSize
|
// function : SetCullingSize
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_BVHTreeSelector::SetCullingSize (CullingContext& theCtx,
|
void Graphic3d_CullingTool::SetCullingSize (CullingContext& theCtx,
|
||||||
Standard_Real theSize) const
|
Standard_Real theSize) const
|
||||||
{
|
{
|
||||||
theCtx.SizeCull2 = -1.0;
|
theCtx.SizeCull2 = -1.0;
|
||||||
@ -160,7 +160,7 @@ void OpenGl_BVHTreeSelector::SetCullingSize (CullingContext& theCtx,
|
|||||||
// function : CacheClipPtsProjections
|
// function : CacheClipPtsProjections
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_BVHTreeSelector::CacheClipPtsProjections()
|
void Graphic3d_CullingTool::CacheClipPtsProjections()
|
||||||
{
|
{
|
||||||
// project frustum onto its own normals
|
// project frustum onto its own normals
|
||||||
const Standard_Integer anIncFactor = myIsProjectionParallel ? 2 : 1;
|
const Standard_Integer anIncFactor = myIsProjectionParallel ? 2 : 1;
|
||||||
@ -179,9 +179,9 @@ void OpenGl_BVHTreeSelector::CacheClipPtsProjections()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// project frustum onto main axes
|
// project frustum onto main axes
|
||||||
OpenGl_Vec3d anAxes[] = { OpenGl_Vec3d (1.0, 0.0, 0.0),
|
Graphic3d_Vec3d anAxes[] = { Graphic3d_Vec3d (1.0, 0.0, 0.0),
|
||||||
OpenGl_Vec3d (0.0, 1.0, 0.0),
|
Graphic3d_Vec3d (0.0, 1.0, 0.0),
|
||||||
OpenGl_Vec3d (0.0, 0.0, 1.0) };
|
Graphic3d_Vec3d (0.0, 0.0, 1.0) };
|
||||||
for (Standard_Integer aDim = 0; aDim < 3; ++aDim)
|
for (Standard_Integer aDim = 0; aDim < 3; ++aDim)
|
||||||
{
|
{
|
||||||
Standard_Real aMaxProj = -std::numeric_limits<Standard_Real>::max();
|
Standard_Real aMaxProj = -std::numeric_limits<Standard_Real>::max();
|
@ -13,17 +13,16 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#ifndef _OpenGl_BVHTreeSelector_HeaderFile
|
#ifndef _Graphic3d_CullingTool_HeaderFile
|
||||||
#define _OpenGl_BVHTreeSelector_HeaderFile
|
#define _Graphic3d_CullingTool_HeaderFile
|
||||||
|
|
||||||
#include <Graphic3d_Camera.hxx>
|
#include <Graphic3d_Camera.hxx>
|
||||||
|
#include <Graphic3d_Vec4.hxx>
|
||||||
#include <Graphic3d_WorldViewProjState.hxx>
|
#include <Graphic3d_WorldViewProjState.hxx>
|
||||||
#include <OpenGl_Vec.hxx>
|
|
||||||
|
|
||||||
//! BVHTreeSelector class provides a possibility to store parameters of view volume,
|
//! Graphic3d_CullingTool class provides a possibility to store parameters of view volume,
|
||||||
//! such as its vertices and equations, and contains methods detecting if given AABB overlaps
|
//! such as its vertices and equations, and contains methods detecting if given AABB overlaps view volume.
|
||||||
//! view volume.
|
class Graphic3d_CullingTool
|
||||||
class OpenGl_BVHTreeSelector
|
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
//! Auxiliary structure holding non-persistent culling options.
|
//! Auxiliary structure holding non-persistent culling options.
|
||||||
@ -45,19 +44,19 @@ public:
|
|||||||
Normal (0.0, 0.0, 1.0) {}
|
Normal (0.0, 0.0, 1.0) {}
|
||||||
|
|
||||||
//! Creates plane with specific parameters.
|
//! Creates plane with specific parameters.
|
||||||
Plane (const OpenGl_Vec3d& theOrigin,
|
Plane (const Graphic3d_Vec3d& theOrigin,
|
||||||
const OpenGl_Vec3d& theNormal)
|
const Graphic3d_Vec3d& theNormal)
|
||||||
: Origin (theOrigin),
|
: Origin (theOrigin),
|
||||||
Normal (theNormal) {}
|
Normal (theNormal) {}
|
||||||
|
|
||||||
OpenGl_Vec3d Origin;
|
Graphic3d_Vec3d Origin;
|
||||||
OpenGl_Vec3d Normal;
|
Graphic3d_Vec3d Normal;
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//! Creates an empty selector object with parallel projection type by default.
|
//! Creates an empty selector object with parallel projection type by default.
|
||||||
Standard_EXPORT OpenGl_BVHTreeSelector();
|
Standard_EXPORT Graphic3d_CullingTool();
|
||||||
|
|
||||||
//! Retrieves view volume's planes equations and its vertices from projection and world-view matrices.
|
//! Retrieves view volume's planes equations and its vertices from projection and world-view matrices.
|
||||||
Standard_EXPORT void SetViewVolume (const Handle(Graphic3d_Camera)& theCamera);
|
Standard_EXPORT void SetViewVolume (const Handle(Graphic3d_Camera)& theCamera);
|
||||||
@ -84,8 +83,8 @@ public:
|
|||||||
//! @param theMaxPt [in] minimum point of AABB
|
//! @param theMaxPt [in] minimum point of AABB
|
||||||
//! @return Standard_True, if AABB is in viewing area, Standard_False otherwise
|
//! @return Standard_True, if AABB is in viewing area, Standard_False otherwise
|
||||||
bool IsCulled (const CullingContext& theCtx,
|
bool IsCulled (const CullingContext& theCtx,
|
||||||
const OpenGl_Vec3d& theMinPt,
|
const Graphic3d_Vec3d& theMinPt,
|
||||||
const OpenGl_Vec3d& theMaxPt) const
|
const Graphic3d_Vec3d& theMaxPt) const
|
||||||
{
|
{
|
||||||
return isFullOut (theMinPt, theMaxPt)
|
return isFullOut (theMinPt, theMaxPt)
|
||||||
|| isTooDistant(theCtx, theMinPt, theMaxPt)
|
|| isTooDistant(theCtx, theMinPt, theMaxPt)
|
||||||
@ -96,13 +95,13 @@ public:
|
|||||||
const Handle(Graphic3d_Camera)& Camera() const { return myCamera; }
|
const Handle(Graphic3d_Camera)& Camera() const { return myCamera; }
|
||||||
|
|
||||||
//! Returns current projection matrix.
|
//! Returns current projection matrix.
|
||||||
const OpenGl_Mat4d& ProjectionMatrix() const
|
const Graphic3d_Mat4d& ProjectionMatrix() const
|
||||||
{
|
{
|
||||||
return myProjectionMat;
|
return myProjectionMat;
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns current world view transformation matrix.
|
//! Returns current world view transformation matrix.
|
||||||
const OpenGl_Mat4d& WorldViewMatrix() const
|
const Graphic3d_Mat4d& WorldViewMatrix() const
|
||||||
{
|
{
|
||||||
return myWorldViewMat;
|
return myWorldViewMat;
|
||||||
}
|
}
|
||||||
@ -128,15 +127,15 @@ protected:
|
|||||||
//! Calculates signed distance from plane to point.
|
//! Calculates signed distance from plane to point.
|
||||||
//! @param theNormal [in] the plane's normal.
|
//! @param theNormal [in] the plane's normal.
|
||||||
//! @param thePnt [in]
|
//! @param thePnt [in]
|
||||||
Standard_EXPORT Standard_Real SignedPlanePointDistance (const OpenGl_Vec4d& theNormal,
|
Standard_EXPORT Standard_Real SignedPlanePointDistance (const Graphic3d_Vec4d& theNormal,
|
||||||
const OpenGl_Vec4d& thePnt);
|
const Graphic3d_Vec4d& thePnt);
|
||||||
|
|
||||||
//! Detects if AABB overlaps view volume using separating axis theorem (SAT).
|
//! Detects if AABB overlaps view volume using separating axis theorem (SAT).
|
||||||
//! @param theMinPt [in] maximum point of AABB.
|
//! @param theMinPt [in] maximum point of AABB.
|
||||||
//! @param theMaxPt [in] minimum point of AABB.
|
//! @param theMaxPt [in] minimum point of AABB.
|
||||||
//! @return FALSE, if AABB is in viewing area, TRUE otherwise.
|
//! @return FALSE, if AABB is in viewing area, TRUE otherwise.
|
||||||
bool isFullOut (const OpenGl_Vec3d& theMinPt,
|
bool isFullOut (const Graphic3d_Vec3d& theMinPt,
|
||||||
const OpenGl_Vec3d& theMaxPt) const
|
const Graphic3d_Vec3d& theMaxPt) const
|
||||||
{
|
{
|
||||||
// E1
|
// E1
|
||||||
// |_ E0
|
// |_ E0
|
||||||
@ -168,9 +167,9 @@ protected:
|
|||||||
for (Standard_Integer aPlaneIter = 0; aPlaneIter < PlanesNB - 1; aPlaneIter += anIncFactor)
|
for (Standard_Integer aPlaneIter = 0; aPlaneIter < PlanesNB - 1; aPlaneIter += anIncFactor)
|
||||||
{
|
{
|
||||||
// frustum normals
|
// frustum normals
|
||||||
const OpenGl_Vec3d anAxis = myClipPlanes[aPlaneIter].Normal;
|
const Graphic3d_Vec3d anAxis = myClipPlanes[aPlaneIter].Normal;
|
||||||
|
|
||||||
const OpenGl_Vec3d aPVertex (anAxis.x() > 0.0 ? theMaxPt.x() : theMinPt.x(),
|
const Graphic3d_Vec3d aPVertex (anAxis.x() > 0.0 ? theMaxPt.x() : theMinPt.x(),
|
||||||
anAxis.y() > 0.0 ? theMaxPt.y() : theMinPt.y(),
|
anAxis.y() > 0.0 ? theMaxPt.y() : theMinPt.y(),
|
||||||
anAxis.z() > 0.0 ? theMaxPt.z() : theMinPt.z());
|
anAxis.z() > 0.0 ? theMaxPt.z() : theMinPt.z());
|
||||||
Standard_Real aPnt0 = aPVertex.Dot (anAxis);
|
Standard_Real aPnt0 = aPVertex.Dot (anAxis);
|
||||||
@ -181,7 +180,7 @@ protected:
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
const OpenGl_Vec3d aNVertex (anAxis.x() > 0.0 ? theMinPt.x() : theMaxPt.x(),
|
const Graphic3d_Vec3d aNVertex (anAxis.x() > 0.0 ? theMinPt.x() : theMaxPt.x(),
|
||||||
anAxis.y() > 0.0 ? theMinPt.y() : theMaxPt.y(),
|
anAxis.y() > 0.0 ? theMinPt.y() : theMaxPt.y(),
|
||||||
anAxis.z() > 0.0 ? theMinPt.z() : theMaxPt.z());
|
anAxis.z() > 0.0 ? theMinPt.z() : theMaxPt.z());
|
||||||
Standard_Real aPnt1 = aNVertex.Dot (anAxis);
|
Standard_Real aPnt1 = aNVertex.Dot (anAxis);
|
||||||
@ -200,8 +199,8 @@ protected:
|
|||||||
|
|
||||||
//! Returns TRUE if given AABB should be discarded by distance culling criterion.
|
//! Returns TRUE if given AABB should be discarded by distance culling criterion.
|
||||||
bool isTooDistant (const CullingContext& theCtx,
|
bool isTooDistant (const CullingContext& theCtx,
|
||||||
const OpenGl_Vec3d& theMinPt,
|
const Graphic3d_Vec3d& theMinPt,
|
||||||
const OpenGl_Vec3d& theMaxPt) const
|
const Graphic3d_Vec3d& theMaxPt) const
|
||||||
{
|
{
|
||||||
if (theCtx.DistCull <= 0.0)
|
if (theCtx.DistCull <= 0.0)
|
||||||
{
|
{
|
||||||
@ -216,8 +215,8 @@ protected:
|
|||||||
|
|
||||||
//! Returns TRUE if given AABB should be discarded by size culling criterion.
|
//! Returns TRUE if given AABB should be discarded by size culling criterion.
|
||||||
bool isTooSmall (const CullingContext& theCtx,
|
bool isTooSmall (const CullingContext& theCtx,
|
||||||
const OpenGl_Vec3d& theMinPt,
|
const Graphic3d_Vec3d& theMinPt,
|
||||||
const OpenGl_Vec3d& theMaxPt) const
|
const Graphic3d_Vec3d& theMaxPt) const
|
||||||
{
|
{
|
||||||
if (theCtx.SizeCull2 <= 0.0)
|
if (theCtx.SizeCull2 <= 0.0)
|
||||||
{
|
{
|
||||||
@ -232,7 +231,7 @@ protected:
|
|||||||
|
|
||||||
// note that distances behind the Eye (aBndDist < 0) are not scaled correctly here,
|
// note that distances behind the Eye (aBndDist < 0) are not scaled correctly here,
|
||||||
// but majority of such objects should be culled by frustum
|
// but majority of such objects should be culled by frustum
|
||||||
const OpenGl_Vec3d aBndCenter = (theMinPt + theMaxPt) * 0.5;
|
const Graphic3d_Vec3d aBndCenter = (theMinPt + theMaxPt) * 0.5;
|
||||||
const Standard_Real aBndDist = (aBndCenter - myCamEye).Dot (myCamDir);
|
const Standard_Real aBndDist = (aBndCenter - myCamEye).Dot (myCamDir);
|
||||||
return aBoxDiag2 < theCtx.SizeCull2 * aBndDist * aBndDist;
|
return aBoxDiag2 < theCtx.SizeCull2 * aBndDist * aBndDist;
|
||||||
}
|
}
|
||||||
@ -254,7 +253,7 @@ protected:
|
|||||||
protected:
|
protected:
|
||||||
|
|
||||||
Plane myClipPlanes[PlanesNB]; //!< Planes
|
Plane myClipPlanes[PlanesNB]; //!< Planes
|
||||||
NCollection_Array1<OpenGl_Vec3d> myClipVerts; //!< Vertices
|
NCollection_Array1<Graphic3d_Vec3d> myClipVerts; //!< Vertices
|
||||||
|
|
||||||
Handle(Graphic3d_Camera) myCamera; //!< camera definition
|
Handle(Graphic3d_Camera) myCamera; //!< camera definition
|
||||||
|
|
||||||
@ -270,8 +269,8 @@ protected:
|
|||||||
|
|
||||||
Standard_Boolean myIsProjectionParallel;
|
Standard_Boolean myIsProjectionParallel;
|
||||||
|
|
||||||
OpenGl_Mat4d myProjectionMat;
|
Graphic3d_Mat4d myProjectionMat;
|
||||||
OpenGl_Mat4d myWorldViewMat;
|
Graphic3d_Mat4d myWorldViewMat;
|
||||||
|
|
||||||
Standard_Integer myViewportWidth;
|
Standard_Integer myViewportWidth;
|
||||||
Standard_Integer myViewportHeight;
|
Standard_Integer myViewportHeight;
|
||||||
@ -285,4 +284,4 @@ protected:
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _OpenGl_BVHTreeSelector_HeaderFile
|
#endif // _Graphic3d_CullingTool_HeaderFile
|
@ -25,7 +25,71 @@ IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_GraphicDriver,Standard_Transient)
|
|||||||
Graphic3d_GraphicDriver::Graphic3d_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisp)
|
Graphic3d_GraphicDriver::Graphic3d_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisp)
|
||||||
: myDisplayConnection (theDisp)
|
: myDisplayConnection (theDisp)
|
||||||
{
|
{
|
||||||
//
|
// default layers are always presented in display layer sequence it can not be removed
|
||||||
|
{
|
||||||
|
Graphic3d_ZLayerSettings aSettings;
|
||||||
|
aSettings.SetImmediate (Standard_False);
|
||||||
|
aSettings.SetEnvironmentTexture (Standard_False);
|
||||||
|
aSettings.SetEnableDepthTest (Standard_False);
|
||||||
|
aSettings.SetEnableDepthWrite (Standard_False);
|
||||||
|
aSettings.SetClearDepth (Standard_False);
|
||||||
|
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
|
||||||
|
myLayerIds.Add (Graphic3d_ZLayerId_BotOSD);
|
||||||
|
myLayerSeq.Append (Graphic3d_ZLayerId_BotOSD);
|
||||||
|
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_BotOSD, aSettings);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
Graphic3d_ZLayerSettings aSettings;
|
||||||
|
aSettings.SetImmediate (Standard_False);
|
||||||
|
aSettings.SetEnvironmentTexture (Standard_True);
|
||||||
|
aSettings.SetEnableDepthTest (Standard_True);
|
||||||
|
aSettings.SetEnableDepthWrite (Standard_True);
|
||||||
|
aSettings.SetClearDepth (Standard_False);
|
||||||
|
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
|
||||||
|
myLayerIds.Add (Graphic3d_ZLayerId_Default);
|
||||||
|
myLayerSeq.Append (Graphic3d_ZLayerId_Default);
|
||||||
|
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_Default, aSettings);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
Graphic3d_ZLayerSettings aSettings;
|
||||||
|
aSettings.SetImmediate (Standard_True);
|
||||||
|
aSettings.SetEnvironmentTexture (Standard_True);
|
||||||
|
aSettings.SetEnableDepthTest (Standard_True);
|
||||||
|
aSettings.SetEnableDepthWrite (Standard_True);
|
||||||
|
aSettings.SetClearDepth (Standard_False);
|
||||||
|
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
|
||||||
|
myLayerIds.Add (Graphic3d_ZLayerId_Top);
|
||||||
|
myLayerSeq.Append (Graphic3d_ZLayerId_Top);
|
||||||
|
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_Top, aSettings);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
Graphic3d_ZLayerSettings aSettings;
|
||||||
|
aSettings.SetImmediate (Standard_True);
|
||||||
|
aSettings.SetEnvironmentTexture (Standard_True);
|
||||||
|
aSettings.SetEnableDepthTest (Standard_True);
|
||||||
|
aSettings.SetEnableDepthWrite (Standard_True);
|
||||||
|
aSettings.SetClearDepth (Standard_True);
|
||||||
|
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
|
||||||
|
myLayerIds.Add (Graphic3d_ZLayerId_Topmost);
|
||||||
|
myLayerSeq.Append (Graphic3d_ZLayerId_Topmost);
|
||||||
|
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_Topmost, aSettings);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
Graphic3d_ZLayerSettings aSettings;
|
||||||
|
aSettings.SetImmediate (Standard_True);
|
||||||
|
aSettings.SetEnvironmentTexture (Standard_False);
|
||||||
|
aSettings.SetEnableDepthTest (Standard_False);
|
||||||
|
aSettings.SetEnableDepthWrite (Standard_False);
|
||||||
|
aSettings.SetClearDepth (Standard_False);
|
||||||
|
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
|
||||||
|
myLayerIds.Add (Graphic3d_ZLayerId_TopOSD);
|
||||||
|
myLayerSeq.Append (Graphic3d_ZLayerId_TopOSD);
|
||||||
|
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_TopOSD, aSettings);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -54,3 +118,82 @@ void Graphic3d_GraphicDriver::RemoveIdentification(const Standard_Integer theId)
|
|||||||
{
|
{
|
||||||
myStructGenId.Free(theId);
|
myStructGenId.Free(theId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : ZLayerSettings
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
const Graphic3d_ZLayerSettings& Graphic3d_GraphicDriver::ZLayerSettings (const Graphic3d_ZLayerId theLayerId) const
|
||||||
|
{
|
||||||
|
Standard_ASSERT_RAISE (myLayerIds.Contains (theLayerId), "Graphic3d_GraphicDriver::ZLayerSettings, Layer with theLayerId does not exist");
|
||||||
|
return myMapOfZLayerSettings.Find (theLayerId);
|
||||||
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : addZLayerIndex
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
void Graphic3d_GraphicDriver::addZLayerIndex (const Graphic3d_ZLayerId theLayerId)
|
||||||
|
{
|
||||||
|
// remove index
|
||||||
|
for (TColStd_SequenceOfInteger::Iterator aLayerIt (myLayerSeq); aLayerIt.More(); aLayerIt.Next())
|
||||||
|
{
|
||||||
|
if (aLayerIt.Value() == theLayerId)
|
||||||
|
{
|
||||||
|
myLayerSeq.Remove (aLayerIt);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (myMapOfZLayerSettings.Find (theLayerId).IsImmediate())
|
||||||
|
{
|
||||||
|
myLayerSeq.Append (theLayerId);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (TColStd_SequenceOfInteger::Iterator aLayerIt (myLayerSeq); aLayerIt.More(); aLayerIt.Next())
|
||||||
|
{
|
||||||
|
const Graphic3d_ZLayerSettings& aSettings = myMapOfZLayerSettings.Find (aLayerIt.Value());
|
||||||
|
if (aSettings.IsImmediate())
|
||||||
|
{
|
||||||
|
aLayerIt.Previous();
|
||||||
|
if (aLayerIt.More())
|
||||||
|
{
|
||||||
|
myLayerSeq.InsertAfter (aLayerIt, theLayerId);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// first non-immediate layer
|
||||||
|
myLayerSeq.Prepend (theLayerId);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// no immediate layers
|
||||||
|
myLayerSeq.Append (theLayerId);
|
||||||
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : SetZLayerSettings
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
void Graphic3d_GraphicDriver::SetZLayerSettings (const Graphic3d_ZLayerId theLayerId,
|
||||||
|
const Graphic3d_ZLayerSettings& theSettings)
|
||||||
|
{
|
||||||
|
Graphic3d_ZLayerSettings* aSettings = myMapOfZLayerSettings.ChangeSeek (theLayerId);
|
||||||
|
if (aSettings != NULL)
|
||||||
|
{
|
||||||
|
const bool isChanged = (aSettings->IsImmediate() != theSettings.IsImmediate());
|
||||||
|
*aSettings = theSettings;
|
||||||
|
if (isChanged)
|
||||||
|
{
|
||||||
|
addZLayerIndex (theLayerId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// abnormal case
|
||||||
|
myMapOfZLayerSettings.Bind (theLayerId, theSettings);
|
||||||
|
addZLayerIndex (theLayerId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -42,9 +42,11 @@
|
|||||||
#include <Aspect_Handle.hxx>
|
#include <Aspect_Handle.hxx>
|
||||||
#include <Graphic3d_ZLayerId.hxx>
|
#include <Graphic3d_ZLayerId.hxx>
|
||||||
#include <Graphic3d_ZLayerSettings.hxx>
|
#include <Graphic3d_ZLayerSettings.hxx>
|
||||||
|
#include <Graphic3d_MapOfZLayerSettings.hxx>
|
||||||
#include <Graphic3d_CLight.hxx>
|
#include <Graphic3d_CLight.hxx>
|
||||||
#include <Graphic3d_TypeOfLimit.hxx>
|
#include <Graphic3d_TypeOfLimit.hxx>
|
||||||
#include <TColStd_Array2OfReal.hxx>
|
#include <TColStd_Array2OfReal.hxx>
|
||||||
|
#include <TColStd_MapOfInteger.hxx>
|
||||||
#include <TColStd_SequenceOfInteger.hxx>
|
#include <TColStd_SequenceOfInteger.hxx>
|
||||||
|
|
||||||
class Aspect_DisplayConnection;
|
class Aspect_DisplayConnection;
|
||||||
@ -122,13 +124,16 @@ public:
|
|||||||
virtual void RemoveZLayer (const Graphic3d_ZLayerId theLayerId) = 0;
|
virtual void RemoveZLayer (const Graphic3d_ZLayerId theLayerId) = 0;
|
||||||
|
|
||||||
//! Returns list of Z layers defined for the graphical driver.
|
//! Returns list of Z layers defined for the graphical driver.
|
||||||
virtual void ZLayers (TColStd_SequenceOfInteger& theLayerSeq) const = 0;
|
virtual void ZLayers (TColStd_SequenceOfInteger& theLayerSeq) const
|
||||||
|
{
|
||||||
|
theLayerSeq.Assign (myLayerSeq);
|
||||||
|
}
|
||||||
|
|
||||||
//! Sets the settings for a single Z layer.
|
//! Sets the settings for a single Z layer.
|
||||||
virtual void SetZLayerSettings (const Graphic3d_ZLayerId theLayerId, const Graphic3d_ZLayerSettings& theSettings) = 0;
|
Standard_EXPORT virtual void SetZLayerSettings (const Graphic3d_ZLayerId theLayerId, const Graphic3d_ZLayerSettings& theSettings) = 0;
|
||||||
|
|
||||||
//! Returns the settings of a single Z layer.
|
//! Returns the settings of a single Z layer.
|
||||||
virtual const Graphic3d_ZLayerSettings& ZLayerSettings (const Graphic3d_ZLayerId theLayerId) const = 0;
|
Standard_EXPORT virtual const Graphic3d_ZLayerSettings& ZLayerSettings (const Graphic3d_ZLayerId theLayerId) const;
|
||||||
|
|
||||||
//! Returns view associated with the window if it is exists and is activated.
|
//! Returns view associated with the window if it is exists and is activated.
|
||||||
//! Returns Standard_True if the view associated to the window exists.
|
//! Returns Standard_True if the view associated to the window exists.
|
||||||
@ -150,10 +155,16 @@ protected:
|
|||||||
//! Initializes the Driver
|
//! Initializes the Driver
|
||||||
Standard_EXPORT Graphic3d_GraphicDriver(const Handle(Aspect_DisplayConnection)& theDisp);
|
Standard_EXPORT Graphic3d_GraphicDriver(const Handle(Aspect_DisplayConnection)& theDisp);
|
||||||
|
|
||||||
|
//! Insert index layer at proper position.
|
||||||
|
Standard_EXPORT void addZLayerIndex (const Graphic3d_ZLayerId theLayerId);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
Handle(Aspect_DisplayConnection) myDisplayConnection;
|
Handle(Aspect_DisplayConnection) myDisplayConnection;
|
||||||
Aspect_GenId myStructGenId;
|
Aspect_GenId myStructGenId;
|
||||||
|
TColStd_MapOfInteger myLayerIds;
|
||||||
|
TColStd_SequenceOfInteger myLayerSeq;
|
||||||
|
Graphic3d_MapOfZLayerSettings myMapOfZLayerSettings;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
// Created on: 2014-03-31
|
// Copyright (c) 2011-2019 OPEN CASCADE SAS
|
||||||
// Created by: Danila ULYANOV
|
|
||||||
// Copyright (c) 2014 OPEN CASCADE SAS
|
|
||||||
//
|
//
|
||||||
// This file is part of Open CASCADE Technology software library.
|
// This file is part of Open CASCADE Technology software library.
|
||||||
//
|
//
|
||||||
@ -13,22 +11,18 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <OpenGl_Layer.hxx>
|
#include <Graphic3d_Layer.hxx>
|
||||||
|
|
||||||
#include <OpenGl_BVHTreeSelector.hxx>
|
#include <Graphic3d_CStructure.hxx>
|
||||||
#include <OpenGl_Structure.hxx>
|
#include <Graphic3d_CullingTool.hxx>
|
||||||
#include <OpenGl_ShaderManager.hxx>
|
|
||||||
#include <OpenGl_View.hxx>
|
|
||||||
#include <OpenGl_Workspace.hxx>
|
|
||||||
#include <Graphic3d_GraphicDriver.hxx>
|
|
||||||
|
|
||||||
IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Layer, Standard_Transient)
|
IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_Layer, Standard_Transient)
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : OpenGl_Layer
|
// function : Graphic3d_Layer
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
OpenGl_Layer::OpenGl_Layer (const Standard_Integer theNbPriorities,
|
Graphic3d_Layer::Graphic3d_Layer (Standard_Integer theNbPriorities,
|
||||||
const Handle(Select3D_BVHBuilder3d)& theBuilder)
|
const Handle(Select3D_BVHBuilder3d)& theBuilder)
|
||||||
: myArray (0, theNbPriorities - 1),
|
: myArray (0, theNbPriorities - 1),
|
||||||
myNbStructures (0),
|
myNbStructures (0),
|
||||||
@ -41,10 +35,10 @@ OpenGl_Layer::OpenGl_Layer (const Standard_Integer theNbPriorities,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : ~OpenGl_Layer
|
// function : ~Graphic3d_Layer
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
OpenGl_Layer::~OpenGl_Layer()
|
Graphic3d_Layer::~Graphic3d_Layer()
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
@ -53,8 +47,8 @@ OpenGl_Layer::~OpenGl_Layer()
|
|||||||
// function : Add
|
// function : Add
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_Layer::Add (const OpenGl_Structure* theStruct,
|
void Graphic3d_Layer::Add (const Graphic3d_CStructure* theStruct,
|
||||||
const Standard_Integer thePriority,
|
Standard_Integer thePriority,
|
||||||
Standard_Boolean isForChangePriority)
|
Standard_Boolean isForChangePriority)
|
||||||
{
|
{
|
||||||
const Standard_Integer anIndex = Min (Max (thePriority, 0), myArray.Length() - 1);
|
const Standard_Integer anIndex = Min (Max (thePriority, 0), myArray.Length() - 1);
|
||||||
@ -90,7 +84,7 @@ void OpenGl_Layer::Add (const OpenGl_Structure* theStruct,
|
|||||||
// function : Remove
|
// function : Remove
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
bool OpenGl_Layer::Remove (const OpenGl_Structure* theStruct,
|
bool Graphic3d_Layer::Remove (const Graphic3d_CStructure* theStruct,
|
||||||
Standard_Integer& thePriority,
|
Standard_Integer& thePriority,
|
||||||
Standard_Boolean isForChangePriority)
|
Standard_Boolean isForChangePriority)
|
||||||
{
|
{
|
||||||
@ -103,11 +97,13 @@ bool OpenGl_Layer::Remove (const OpenGl_Structure* theStruct,
|
|||||||
const Standard_Integer aNbPriorities = myArray.Length();
|
const Standard_Integer aNbPriorities = myArray.Length();
|
||||||
for (Standard_Integer aPriorityIter = 0; aPriorityIter < aNbPriorities; ++aPriorityIter)
|
for (Standard_Integer aPriorityIter = 0; aPriorityIter < aNbPriorities; ++aPriorityIter)
|
||||||
{
|
{
|
||||||
OpenGl_IndexedMapOfStructure& aStructures = myArray (aPriorityIter);
|
Graphic3d_IndexedMapOfStructure& aStructures = myArray (aPriorityIter);
|
||||||
|
|
||||||
const Standard_Integer anIndex = aStructures.FindIndex (theStruct);
|
const Standard_Integer anIndex = aStructures.FindIndex (theStruct);
|
||||||
if (anIndex != 0)
|
if (anIndex == 0)
|
||||||
{
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
aStructures.Swap (anIndex, aStructures.Size());
|
aStructures.Swap (anIndex, aStructures.Size());
|
||||||
aStructures.RemoveLast();
|
aStructures.RemoveLast();
|
||||||
|
|
||||||
@ -138,7 +134,6 @@ bool OpenGl_Layer::Remove (const OpenGl_Structure* theStruct,
|
|||||||
thePriority = aPriorityIter;
|
thePriority = aPriorityIter;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
thePriority = -1;
|
thePriority = -1;
|
||||||
return false;
|
return false;
|
||||||
@ -148,7 +143,7 @@ bool OpenGl_Layer::Remove (const OpenGl_Structure* theStruct,
|
|||||||
// function : InvalidateBVHData
|
// function : InvalidateBVHData
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_Layer::InvalidateBVHData()
|
void Graphic3d_Layer::InvalidateBVHData()
|
||||||
{
|
{
|
||||||
myIsBVHPrimitivesNeedsReset = Standard_True;
|
myIsBVHPrimitivesNeedsReset = Standard_True;
|
||||||
}
|
}
|
||||||
@ -178,11 +173,11 @@ inline bool isInfiniteBndBox (const Graphic3d_BndBox3d& theBndBox)
|
|||||||
// function : BoundingBox
|
// function : BoundingBox
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Bnd_Box OpenGl_Layer::BoundingBox (const Standard_Integer theViewId,
|
Bnd_Box Graphic3d_Layer::BoundingBox (Standard_Integer theViewId,
|
||||||
const Handle(Graphic3d_Camera)& theCamera,
|
const Handle(Graphic3d_Camera)& theCamera,
|
||||||
const Standard_Integer theWindowWidth,
|
Standard_Integer theWindowWidth,
|
||||||
const Standard_Integer theWindowHeight,
|
Standard_Integer theWindowHeight,
|
||||||
const Standard_Boolean theToIncludeAuxiliary) const
|
Standard_Boolean theToIncludeAuxiliary) const
|
||||||
{
|
{
|
||||||
updateBVH();
|
updateBVH();
|
||||||
|
|
||||||
@ -194,12 +189,12 @@ Bnd_Box OpenGl_Layer::BoundingBox (const Standard_Integer theViewId,
|
|||||||
// Recompute layer bounding box
|
// Recompute layer bounding box
|
||||||
myBoundingBox[aBoxId].SetVoid();
|
myBoundingBox[aBoxId].SetVoid();
|
||||||
|
|
||||||
for (OpenGl_ArrayOfIndexedMapOfStructure::Iterator aMapIter (myArray); aMapIter.More(); aMapIter.Next())
|
for (Graphic3d_ArrayOfIndexedMapOfStructure::Iterator aMapIter (myArray); aMapIter.More(); aMapIter.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_IndexedMapOfStructure& aStructures = aMapIter.Value();
|
const Graphic3d_IndexedMapOfStructure& aStructures = aMapIter.Value();
|
||||||
for (OpenGl_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
for (Graphic3d_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_Structure* aStructure = aStructIter.Value();
|
const Graphic3d_CStructure* aStructure = aStructIter.Value();
|
||||||
if (!aStructure->IsVisible (theViewId))
|
if (!aStructure->IsVisible (theViewId))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
@ -264,9 +259,9 @@ Bnd_Box OpenGl_Layer::BoundingBox (const Standard_Integer theViewId,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// add transformation-persistent objects which depend on camera position (and thus can not be cached) for operations like Z-fit
|
// add transformation-persistent objects which depend on camera position (and thus can not be cached) for operations like Z-fit
|
||||||
for (NCollection_IndexedMap<const OpenGl_Structure*>::Iterator aStructIter (myAlwaysRenderedMap); aStructIter.More(); aStructIter.Next())
|
for (NCollection_IndexedMap<const Graphic3d_CStructure*>::Iterator aStructIter (myAlwaysRenderedMap); aStructIter.More(); aStructIter.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_Structure* aStructure = aStructIter.Value();
|
const Graphic3d_CStructure* aStructure = aStructIter.Value();
|
||||||
if (!aStructure->IsVisible (theViewId))
|
if (!aStructure->IsVisible (theViewId))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
@ -299,7 +294,7 @@ Bnd_Box OpenGl_Layer::BoundingBox (const Standard_Integer theViewId,
|
|||||||
// function : considerZoomPersistenceObjects
|
// function : considerZoomPersistenceObjects
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Real OpenGl_Layer::considerZoomPersistenceObjects (const Standard_Integer theViewId,
|
Standard_Real Graphic3d_Layer::considerZoomPersistenceObjects (Standard_Integer theViewId,
|
||||||
const Handle(Graphic3d_Camera)& theCamera,
|
const Handle(Graphic3d_Camera)& theCamera,
|
||||||
Standard_Integer theWindowWidth,
|
Standard_Integer theWindowWidth,
|
||||||
Standard_Integer theWindowHeight) const
|
Standard_Integer theWindowHeight) const
|
||||||
@ -313,12 +308,12 @@ Standard_Real OpenGl_Layer::considerZoomPersistenceObjects (const Standard_Integ
|
|||||||
const Graphic3d_Mat4d& aWorldViewMat = theCamera->OrientationMatrix();
|
const Graphic3d_Mat4d& aWorldViewMat = theCamera->OrientationMatrix();
|
||||||
Standard_Real aMaxCoef = -std::numeric_limits<double>::max();
|
Standard_Real aMaxCoef = -std::numeric_limits<double>::max();
|
||||||
|
|
||||||
for (OpenGl_ArrayOfIndexedMapOfStructure::Iterator aMapIter (myArray); aMapIter.More(); aMapIter.Next())
|
for (Graphic3d_ArrayOfIndexedMapOfStructure::Iterator aMapIter (myArray); aMapIter.More(); aMapIter.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_IndexedMapOfStructure& aStructures = aMapIter.Value();
|
const Graphic3d_IndexedMapOfStructure& aStructures = aMapIter.Value();
|
||||||
for (OpenGl_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
for (Graphic3d_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_Structure* aStructure = aStructIter.Value();
|
const Graphic3d_CStructure* aStructure = aStructIter.Value();
|
||||||
if (!aStructure->IsVisible (theViewId)
|
if (!aStructure->IsVisible (theViewId)
|
||||||
|| aStructure->TransformPersistence().IsNull()
|
|| aStructure->TransformPersistence().IsNull()
|
||||||
|| !aStructure->TransformPersistence()->IsZoomOrRotate())
|
|| !aStructure->TransformPersistence()->IsZoomOrRotate())
|
||||||
@ -417,35 +412,11 @@ Standard_Real OpenGl_Layer::considerZoomPersistenceObjects (const Standard_Integ
|
|||||||
return (aMaxCoef > 0.0) ? aMaxCoef : 1.0;
|
return (aMaxCoef > 0.0) ? aMaxCoef : 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : renderAll
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void OpenGl_Layer::renderAll (const Handle(OpenGl_Workspace)& theWorkspace) const
|
|
||||||
{
|
|
||||||
const Standard_Integer aViewId = theWorkspace->View()->Identification();
|
|
||||||
for (OpenGl_ArrayOfIndexedMapOfStructure::Iterator aMapIter (myArray); aMapIter.More(); aMapIter.Next())
|
|
||||||
{
|
|
||||||
const OpenGl_IndexedMapOfStructure& aStructures = aMapIter.Value();
|
|
||||||
for (OpenGl_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
|
||||||
{
|
|
||||||
const OpenGl_Structure* aStruct = aStructIter.Value();
|
|
||||||
if (aStruct->IsCulled()
|
|
||||||
|| !aStruct->IsVisible (aViewId))
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
aStruct->Render (theWorkspace);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : updateBVH
|
// function : updateBVH
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_Layer::updateBVH() const
|
void Graphic3d_Layer::updateBVH() const
|
||||||
{
|
{
|
||||||
if (!myIsBVHPrimitivesNeedsReset)
|
if (!myIsBVHPrimitivesNeedsReset)
|
||||||
{
|
{
|
||||||
@ -456,12 +427,12 @@ void OpenGl_Layer::updateBVH() const
|
|||||||
myBVHPrimitivesTrsfPers.Clear();
|
myBVHPrimitivesTrsfPers.Clear();
|
||||||
myAlwaysRenderedMap.Clear();
|
myAlwaysRenderedMap.Clear();
|
||||||
myIsBVHPrimitivesNeedsReset = Standard_False;
|
myIsBVHPrimitivesNeedsReset = Standard_False;
|
||||||
for (OpenGl_ArrayOfIndexedMapOfStructure::Iterator aMapIter (myArray); aMapIter.More(); aMapIter.Next())
|
for (Graphic3d_ArrayOfIndexedMapOfStructure::Iterator aMapIter (myArray); aMapIter.More(); aMapIter.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_IndexedMapOfStructure& aStructures = aMapIter.Value();
|
const Graphic3d_IndexedMapOfStructure& aStructures = aMapIter.Value();
|
||||||
for (OpenGl_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
for (Graphic3d_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_Structure* aStruct = aStructIter.Value();
|
const Graphic3d_CStructure* aStruct = aStructIter.Value();
|
||||||
if (aStruct->IsAlwaysRendered())
|
if (aStruct->IsAlwaysRendered())
|
||||||
{
|
{
|
||||||
aStruct->MarkAsNotCulled();
|
aStruct->MarkAsNotCulled();
|
||||||
@ -483,8 +454,8 @@ void OpenGl_Layer::updateBVH() const
|
|||||||
// function : UpdateCulling
|
// function : UpdateCulling
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_Layer::UpdateCulling (const Standard_Integer theViewId,
|
void Graphic3d_Layer::UpdateCulling (Standard_Integer theViewId,
|
||||||
const OpenGl_BVHTreeSelector& theSelector,
|
const Graphic3d_CullingTool& theSelector,
|
||||||
const Graphic3d_RenderingParams::FrustumCulling theFrustumCullingState)
|
const Graphic3d_RenderingParams::FrustumCulling theFrustumCullingState)
|
||||||
{
|
{
|
||||||
updateBVH();
|
updateBVH();
|
||||||
@ -492,16 +463,15 @@ void OpenGl_Layer::UpdateCulling (const Standard_Integer theViewId,
|
|||||||
myNbStructuresNotCulled = myNbStructures;
|
myNbStructuresNotCulled = myNbStructures;
|
||||||
if (theFrustumCullingState != Graphic3d_RenderingParams::FrustumCulling_NoUpdate)
|
if (theFrustumCullingState != Graphic3d_RenderingParams::FrustumCulling_NoUpdate)
|
||||||
{
|
{
|
||||||
Standard_Boolean toTraverse =
|
Standard_Boolean toTraverse = (theFrustumCullingState == Graphic3d_RenderingParams::FrustumCulling_On);
|
||||||
(theFrustumCullingState == Graphic3d_RenderingParams::FrustumCulling_On);
|
for (Graphic3d_IndexedMapOfStructure::Iterator aStructIter (myBVHPrimitives.Structures()); aStructIter.More(); aStructIter.Next())
|
||||||
for (OpenGl_IndexedMapOfStructure::Iterator aStructIter (myBVHPrimitives.Structures()); aStructIter.More(); aStructIter.Next())
|
|
||||||
{
|
{
|
||||||
const OpenGl_Structure* aStruct = aStructIter.Value();
|
const Graphic3d_CStructure* aStruct = aStructIter.Value();
|
||||||
aStruct->SetCulled (toTraverse);
|
aStruct->SetCulled (toTraverse);
|
||||||
}
|
}
|
||||||
for (OpenGl_IndexedMapOfStructure::Iterator aStructIter (myBVHPrimitivesTrsfPers.Structures()); aStructIter.More(); aStructIter.Next())
|
for (Graphic3d_IndexedMapOfStructure::Iterator aStructIter (myBVHPrimitivesTrsfPers.Structures()); aStructIter.More(); aStructIter.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_Structure* aStruct = aStructIter.Value();
|
const Graphic3d_CStructure* aStruct = aStructIter.Value();
|
||||||
aStruct->SetCulled (toTraverse);
|
aStruct->SetCulled (toTraverse);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -517,7 +487,7 @@ void OpenGl_Layer::UpdateCulling (const Standard_Integer theViewId,
|
|||||||
}
|
}
|
||||||
|
|
||||||
myNbStructuresNotCulled = myAlwaysRenderedMap.Extent();
|
myNbStructuresNotCulled = myAlwaysRenderedMap.Extent();
|
||||||
OpenGl_BVHTreeSelector::CullingContext aCullCtx;
|
Graphic3d_CullingTool::CullingContext aCullCtx;
|
||||||
theSelector.SetCullingDistance(aCullCtx, myLayerSettings.CullingDistance());
|
theSelector.SetCullingDistance(aCullCtx, myLayerSettings.CullingDistance());
|
||||||
theSelector.SetCullingSize (aCullCtx, myLayerSettings.CullingSize());
|
theSelector.SetCullingSize (aCullCtx, myLayerSettings.CullingSize());
|
||||||
for (Standard_Integer aBVHTreeIdx = 0; aBVHTreeIdx < 2; ++aBVHTreeIdx)
|
for (Standard_Integer aBVHTreeIdx = 0; aBVHTreeIdx < 2; ++aBVHTreeIdx)
|
||||||
@ -529,8 +499,8 @@ void OpenGl_Layer::UpdateCulling (const Standard_Integer theViewId,
|
|||||||
if (myBVHPrimitivesTrsfPers.Size() == 0)
|
if (myBVHPrimitivesTrsfPers.Size() == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
const OpenGl_Mat4d& aProjection = theSelector.ProjectionMatrix();
|
const Graphic3d_Mat4d& aProjection = theSelector.ProjectionMatrix();
|
||||||
const OpenGl_Mat4d& aWorldView = theSelector.WorldViewMatrix();
|
const Graphic3d_Mat4d& aWorldView = theSelector.WorldViewMatrix();
|
||||||
const Graphic3d_WorldViewProjState& aWVPState = theSelector.WorldViewProjState();
|
const Graphic3d_WorldViewProjState& aWVPState = theSelector.WorldViewProjState();
|
||||||
const Standard_Integer aViewportWidth = theSelector.ViewportWidth();
|
const Standard_Integer aViewportWidth = theSelector.ViewportWidth();
|
||||||
const Standard_Integer aViewportHeight = theSelector.ViewportHeight();
|
const Standard_Integer aViewportHeight = theSelector.ViewportHeight();
|
||||||
@ -586,7 +556,7 @@ void OpenGl_Layer::UpdateCulling (const Standard_Integer theViewId,
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
Standard_Integer aIdx = aBVHTree->BegPrimitive (aNode);
|
Standard_Integer aIdx = aBVHTree->BegPrimitive (aNode);
|
||||||
const OpenGl_Structure* aStruct = isTrsfPers
|
const Graphic3d_CStructure* aStruct = isTrsfPers
|
||||||
? myBVHPrimitivesTrsfPers.GetStructureById (aIdx)
|
? myBVHPrimitivesTrsfPers.GetStructureById (aIdx)
|
||||||
: myBVHPrimitives.GetStructureById (aIdx);
|
: myBVHPrimitives.GetStructureById (aIdx);
|
||||||
if (aStruct->IsVisible (theViewId))
|
if (aStruct->IsVisible (theViewId))
|
||||||
@ -609,7 +579,7 @@ void OpenGl_Layer::UpdateCulling (const Standard_Integer theViewId,
|
|||||||
// function : Append
|
// function : Append
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
Standard_Boolean OpenGl_Layer::Append (const OpenGl_Layer& theOther)
|
Standard_Boolean Graphic3d_Layer::Append (const Graphic3d_Layer& theOther)
|
||||||
{
|
{
|
||||||
// the source priority list shouldn't have more priorities
|
// the source priority list shouldn't have more priorities
|
||||||
const Standard_Integer aNbPriorities = theOther.NbPriorities();
|
const Standard_Integer aNbPriorities = theOther.NbPriorities();
|
||||||
@ -621,8 +591,8 @@ Standard_Boolean OpenGl_Layer::Append (const OpenGl_Layer& theOther)
|
|||||||
// add all structures to destination priority list
|
// add all structures to destination priority list
|
||||||
for (Standard_Integer aPriorityIter = 0; aPriorityIter < aNbPriorities; ++aPriorityIter)
|
for (Standard_Integer aPriorityIter = 0; aPriorityIter < aNbPriorities; ++aPriorityIter)
|
||||||
{
|
{
|
||||||
const OpenGl_IndexedMapOfStructure& aStructures = theOther.myArray (aPriorityIter);
|
const Graphic3d_IndexedMapOfStructure& aStructures = theOther.myArray (aPriorityIter);
|
||||||
for (OpenGl_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
for (Graphic3d_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
||||||
{
|
{
|
||||||
Add (aStructIter.Value(), aPriorityIter);
|
Add (aStructIter.Value(), aPriorityIter);
|
||||||
}
|
}
|
||||||
@ -635,139 +605,22 @@ Standard_Boolean OpenGl_Layer::Append (const OpenGl_Layer& theOther)
|
|||||||
//function : SetLayerSettings
|
//function : SetLayerSettings
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void OpenGl_Layer::SetLayerSettings (const Graphic3d_ZLayerSettings& theSettings)
|
void Graphic3d_Layer::SetLayerSettings (const Graphic3d_ZLayerSettings& theSettings)
|
||||||
{
|
{
|
||||||
const Standard_Boolean toUpdateTrsf = !myLayerSettings.Origin().IsEqual (theSettings.Origin(), gp::Resolution());
|
const Standard_Boolean toUpdateTrsf = !myLayerSettings.Origin().IsEqual (theSettings.Origin(), gp::Resolution());
|
||||||
myLayerSettings = theSettings;
|
myLayerSettings = theSettings;
|
||||||
if (toUpdateTrsf)
|
if (!toUpdateTrsf)
|
||||||
{
|
{
|
||||||
for (OpenGl_ArrayOfIndexedMapOfStructure::Iterator aMapIter (myArray); aMapIter.More(); aMapIter.Next())
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (Graphic3d_ArrayOfIndexedMapOfStructure::Iterator aMapIter (myArray); aMapIter.More(); aMapIter.Next())
|
||||||
{
|
{
|
||||||
OpenGl_IndexedMapOfStructure& aStructures = aMapIter.ChangeValue();
|
Graphic3d_IndexedMapOfStructure& aStructures = aMapIter.ChangeValue();
|
||||||
for (OpenGl_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
for (Graphic3d_IndexedMapOfStructure::Iterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
||||||
{
|
{
|
||||||
OpenGl_Structure* aStructure = const_cast<OpenGl_Structure*> (aStructIter.Value());
|
Graphic3d_CStructure* aStructure = const_cast<Graphic3d_CStructure* >(aStructIter.Value());
|
||||||
aStructure->updateLayerTransformation();
|
aStructure->updateLayerTransformation();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
//=======================================================================
|
|
||||||
//function : Render
|
|
||||||
//purpose :
|
|
||||||
//=======================================================================
|
|
||||||
void OpenGl_Layer::Render (const Handle(OpenGl_Workspace)& theWorkspace,
|
|
||||||
const OpenGl_GlobalLayerSettings& theDefaultSettings) const
|
|
||||||
{
|
|
||||||
const Handle(OpenGl_Context)& aCtx = theWorkspace->GetGlContext();
|
|
||||||
// myLayerSettings.ToClearDepth() is handled outside
|
|
||||||
|
|
||||||
// handle depth test
|
|
||||||
if (myLayerSettings.ToEnableDepthTest())
|
|
||||||
{
|
|
||||||
// assuming depth test is enabled by default
|
|
||||||
glDepthFunc (theDefaultSettings.DepthFunc);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
glDepthFunc (GL_ALWAYS);
|
|
||||||
}
|
|
||||||
|
|
||||||
// save environment texture
|
|
||||||
Handle(OpenGl_TextureSet) anEnvironmentTexture = theWorkspace->EnvironmentTexture();
|
|
||||||
if (!myLayerSettings.UseEnvironmentTexture())
|
|
||||||
{
|
|
||||||
theWorkspace->SetEnvironmentTexture (Handle(OpenGl_TextureSet)());
|
|
||||||
}
|
|
||||||
|
|
||||||
// handle depth offset
|
|
||||||
const Graphic3d_PolygonOffset anAppliedOffsetParams = theWorkspace->SetDefaultPolygonOffset (myLayerSettings.PolygonOffset());
|
|
||||||
|
|
||||||
// handle depth write
|
|
||||||
theWorkspace->UseDepthWrite() = myLayerSettings.ToEnableDepthWrite() && theDefaultSettings.DepthMask == GL_TRUE;
|
|
||||||
glDepthMask (theWorkspace->UseDepthWrite() ? GL_TRUE : GL_FALSE);
|
|
||||||
|
|
||||||
const Standard_Boolean hasLocalCS = !myLayerSettings.OriginTransformation().IsNull();
|
|
||||||
const Handle(OpenGl_ShaderManager)& aManager = aCtx->ShaderManager();
|
|
||||||
Handle(Graphic3d_LightSet) aLightsBack = aManager->LightSourceState().LightSources();
|
|
||||||
const bool hasOwnLights = aCtx->ColorMask() && !myLayerSettings.Lights().IsNull() && myLayerSettings.Lights() != aLightsBack;
|
|
||||||
if (hasOwnLights)
|
|
||||||
{
|
|
||||||
myLayerSettings.Lights()->UpdateRevision();
|
|
||||||
aManager->UpdateLightSourceStateTo (myLayerSettings.Lights());
|
|
||||||
}
|
|
||||||
|
|
||||||
const Handle(Graphic3d_Camera)& aWorldCamera = theWorkspace->View()->Camera();
|
|
||||||
if (hasLocalCS)
|
|
||||||
{
|
|
||||||
// Apply local camera transformation.
|
|
||||||
// The vertex position is computed by the following formula in GLSL program:
|
|
||||||
// gl_Position = occProjectionMatrix * occWorldViewMatrix * occModelWorldMatrix * occVertex;
|
|
||||||
// where:
|
|
||||||
// occProjectionMatrix - matrix defining orthographic/perspective/stereographic projection
|
|
||||||
// occWorldViewMatrix - world-view matrix defining Camera position and orientation
|
|
||||||
// occModelWorldMatrix - model-world matrix defining Object transformation from local coordinate system to the world coordinate system
|
|
||||||
// occVertex - input vertex position
|
|
||||||
//
|
|
||||||
// Since double precision is quite expensive on modern GPUs, and not available on old hardware,
|
|
||||||
// all these values are passed with single float precision to the shader.
|
|
||||||
// As result, single precision become insufficient for handling objects far from the world origin.
|
|
||||||
//
|
|
||||||
// Several approaches can be used to solve precision issues:
|
|
||||||
// - [Broute force] migrate to double precision for all matrices and vertex position.
|
|
||||||
// This is too expensive for most hardware.
|
|
||||||
// - Store only translation part with double precision and pass it to GLSL program.
|
|
||||||
// This requires modified GLSL programs for computing transformation
|
|
||||||
// and extra packing mechanism for hardware not supporting double precision natively.
|
|
||||||
// This solution is less expensive then previous one.
|
|
||||||
// - Move translation part of occModelWorldMatrix into occWorldViewMatrix.
|
|
||||||
// The main idea here is that while moving Camera towards the object,
|
|
||||||
// Camera translation part and Object translation part will compensate each other
|
|
||||||
// to fit into single float precision.
|
|
||||||
// But this operation should be performed with double precision - this is why we are moving
|
|
||||||
// translation part of occModelWorldMatrix to occWorldViewMatrix.
|
|
||||||
//
|
|
||||||
// All approaches might be useful in different scenarios, but for the moment we consider the last one as main scenario.
|
|
||||||
// Here we do the trick:
|
|
||||||
// - OpenGl_Layer defines the Local Origin, which is expected to be the center of objects stored within it.
|
|
||||||
// This Local Origin is included into occWorldViewMatrix during rendering.
|
|
||||||
// - OpenGl_Structure defines Object local transformation occModelWorldMatrix with subtracted Local Origin of the Layer.
|
|
||||||
// This means that Object itself should be defined within either Local Transformation equal or near to Local Origin of the Layer.
|
|
||||||
theWorkspace->View()->SetLocalOrigin (myLayerSettings.Origin());
|
|
||||||
|
|
||||||
NCollection_Mat4<Standard_Real> aWorldView = aWorldCamera->OrientationMatrix();
|
|
||||||
Graphic3d_TransformUtils::Translate (aWorldView, myLayerSettings.Origin().X(), myLayerSettings.Origin().Y(), myLayerSettings.Origin().Z());
|
|
||||||
|
|
||||||
NCollection_Mat4<Standard_ShortReal> aWorldViewF;
|
|
||||||
aWorldViewF.ConvertFrom (aWorldView);
|
|
||||||
aCtx->WorldViewState.SetCurrent (aWorldViewF);
|
|
||||||
aCtx->ShaderManager()->UpdateClippingState();
|
|
||||||
aCtx->ShaderManager()->UpdateLightSourceState();
|
|
||||||
}
|
|
||||||
|
|
||||||
// render priority list
|
|
||||||
renderAll (theWorkspace);
|
|
||||||
|
|
||||||
if (hasOwnLights)
|
|
||||||
{
|
|
||||||
aManager->UpdateLightSourceStateTo (aLightsBack);
|
|
||||||
}
|
|
||||||
if (hasLocalCS)
|
|
||||||
{
|
|
||||||
aCtx->ShaderManager()->RevertClippingState();
|
|
||||||
aCtx->ShaderManager()->UpdateLightSourceState();
|
|
||||||
|
|
||||||
aCtx->WorldViewState.SetCurrent (aWorldCamera->OrientationMatrixF());
|
|
||||||
theWorkspace->View() ->SetLocalOrigin (gp_XYZ (0.0, 0.0, 0.0));
|
|
||||||
}
|
|
||||||
|
|
||||||
// always restore polygon offset between layers rendering
|
|
||||||
theWorkspace->SetDefaultPolygonOffset (anAppliedOffsetParams);
|
|
||||||
|
|
||||||
// restore environment texture
|
|
||||||
if (!myLayerSettings.UseEnvironmentTexture())
|
|
||||||
{
|
|
||||||
theWorkspace->SetEnvironmentTexture (anEnvironmentTexture);
|
|
||||||
}
|
|
||||||
}
|
|
184
src/Graphic3d/Graphic3d_Layer.hxx
Normal file
184
src/Graphic3d/Graphic3d_Layer.hxx
Normal file
@ -0,0 +1,184 @@
|
|||||||
|
// Copyright (c) 2011-2019 OPEN CASCADE SAS
|
||||||
|
//
|
||||||
|
// This file is part of Open CASCADE Technology software library.
|
||||||
|
//
|
||||||
|
// This library is free software; you can redistribute it and/or modify it under
|
||||||
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
||||||
|
// by the Free Software Foundation, with special exception defined in the file
|
||||||
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
||||||
|
// distribution for complete text of the license and disclaimer of any warranty.
|
||||||
|
//
|
||||||
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
|
#ifndef _Graphic3d_Layer_HeaderFile
|
||||||
|
#define _Graphic3d_Layer_HeaderFile
|
||||||
|
|
||||||
|
#include <Graphic3d_BvhCStructureSet.hxx>
|
||||||
|
#include <Graphic3d_BvhCStructureSetTrsfPers.hxx>
|
||||||
|
#include <Graphic3d_Camera.hxx>
|
||||||
|
#include <Graphic3d_ZLayerSettings.hxx>
|
||||||
|
#include <Graphic3d_RenderingParams.hxx>
|
||||||
|
#include <NCollection_Array1.hxx>
|
||||||
|
#include <NCollection_IndexedMap.hxx>
|
||||||
|
#include <NCollection_Sequence.hxx>
|
||||||
|
|
||||||
|
//! Defines index map of structures.
|
||||||
|
typedef NCollection_IndexedMap<const Graphic3d_CStructure*> Graphic3d_IndexedMapOfStructure;
|
||||||
|
|
||||||
|
//! Defines array of indexed maps of structures.
|
||||||
|
typedef NCollection_Array1<Graphic3d_IndexedMapOfStructure> Graphic3d_ArrayOfIndexedMapOfStructure;
|
||||||
|
|
||||||
|
class Graphic3d_CullingTool;
|
||||||
|
|
||||||
|
//! Presentations list sorted within priorities.
|
||||||
|
class Graphic3d_Layer : public Standard_Transient
|
||||||
|
{
|
||||||
|
DEFINE_STANDARD_RTTIEXT(Graphic3d_Layer, Standard_Transient)
|
||||||
|
public:
|
||||||
|
|
||||||
|
//! Initializes associated priority list and layer properties
|
||||||
|
Standard_EXPORT Graphic3d_Layer (Standard_Integer theNbPriorities,
|
||||||
|
const Handle(Select3D_BVHBuilder3d)& theBuilder);
|
||||||
|
|
||||||
|
//! Destructor.
|
||||||
|
Standard_EXPORT virtual ~Graphic3d_Layer();
|
||||||
|
|
||||||
|
//! Returns BVH tree builder for frustom culling.
|
||||||
|
const Handle(Select3D_BVHBuilder3d)& FrustumCullingBVHBuilder() const { return myBVHPrimitivesTrsfPers.Builder(); }
|
||||||
|
|
||||||
|
//! Assigns BVH tree builder for frustom culling.
|
||||||
|
void SetFrustumCullingBVHBuilder (const Handle(Select3D_BVHBuilder3d)& theBuilder) { myBVHPrimitivesTrsfPers.SetBuilder (theBuilder); }
|
||||||
|
|
||||||
|
//! Return true if layer was marked with immediate flag.
|
||||||
|
Standard_Boolean IsImmediate() const { return myLayerSettings.IsImmediate(); }
|
||||||
|
|
||||||
|
//! Returns settings of the layer object.
|
||||||
|
const Graphic3d_ZLayerSettings& LayerSettings() const { return myLayerSettings; };
|
||||||
|
|
||||||
|
//! Sets settings of the layer object.
|
||||||
|
Standard_EXPORT void SetLayerSettings (const Graphic3d_ZLayerSettings& theSettings);
|
||||||
|
|
||||||
|
Standard_EXPORT void Add (const Graphic3d_CStructure* theStruct,
|
||||||
|
Standard_Integer thePriority,
|
||||||
|
Standard_Boolean isForChangePriority = Standard_False);
|
||||||
|
|
||||||
|
//! Remove structure and returns its priority, if the structure is not found, method returns negative value
|
||||||
|
Standard_EXPORT bool Remove (const Graphic3d_CStructure* theStruct,
|
||||||
|
Standard_Integer& thePriority,
|
||||||
|
Standard_Boolean isForChangePriority = Standard_False);
|
||||||
|
|
||||||
|
//! @return the number of structures
|
||||||
|
Standard_Integer NbStructures() const { return myNbStructures; }
|
||||||
|
|
||||||
|
//! Number of NOT culled structures in the layer.
|
||||||
|
Standard_Integer NbStructuresNotCulled() const { return myNbStructuresNotCulled; }
|
||||||
|
|
||||||
|
//! Returns the number of available priority levels
|
||||||
|
Standard_Integer NbPriorities() const { return myArray.Length(); }
|
||||||
|
|
||||||
|
//! Append layer of acceptable type (with similar number of priorities or less).
|
||||||
|
//! Returns Standard_False if the list can not be accepted.
|
||||||
|
Standard_EXPORT Standard_Boolean Append (const Graphic3d_Layer& theOther);
|
||||||
|
|
||||||
|
//! Returns array of structures.
|
||||||
|
const Graphic3d_ArrayOfIndexedMapOfStructure& ArrayOfStructures() const { return myArray; }
|
||||||
|
|
||||||
|
//! Marks BVH tree for given priority list as dirty and
|
||||||
|
//! marks primitive set for rebuild.
|
||||||
|
Standard_EXPORT void InvalidateBVHData();
|
||||||
|
|
||||||
|
//! Marks cached bounding box as obsolete.
|
||||||
|
void InvalidateBoundingBox() const
|
||||||
|
{
|
||||||
|
myIsBoundingBoxNeedsReset[0] = myIsBoundingBoxNeedsReset[1] = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//! Returns layer bounding box.
|
||||||
|
//! @param theViewId view index to consider View Affinity in structure
|
||||||
|
//! @param theCamera camera definition
|
||||||
|
//! @param theWindowWidth viewport width (for applying transformation-persistence)
|
||||||
|
//! @param theWindowHeight viewport height (for applying transformation-persistence)
|
||||||
|
//! @param theToIncludeAuxiliary consider also auxiliary presentations (with infinite flag or with trihedron transformation persistence)
|
||||||
|
//! @return computed bounding box
|
||||||
|
Standard_EXPORT Bnd_Box BoundingBox (Standard_Integer theViewId,
|
||||||
|
const Handle(Graphic3d_Camera)& theCamera,
|
||||||
|
Standard_Integer theWindowWidth,
|
||||||
|
Standard_Integer theWindowHeight,
|
||||||
|
Standard_Boolean theToIncludeAuxiliary) const;
|
||||||
|
|
||||||
|
//! Returns zoom-scale factor.
|
||||||
|
Standard_EXPORT Standard_Real considerZoomPersistenceObjects (Standard_Integer theViewId,
|
||||||
|
const Handle(Graphic3d_Camera)& theCamera,
|
||||||
|
Standard_Integer theWindowWidth,
|
||||||
|
Standard_Integer theWindowHeight) const;
|
||||||
|
|
||||||
|
//! Update culling state - should be called before rendering.
|
||||||
|
//! Traverses through BVH tree to determine which structures are in view volume.
|
||||||
|
Standard_EXPORT void UpdateCulling (Standard_Integer theViewId,
|
||||||
|
const Graphic3d_CullingTool& theSelector,
|
||||||
|
const Graphic3d_RenderingParams::FrustumCulling theFrustumCullingState);
|
||||||
|
|
||||||
|
//! Returns TRUE if layer is empty or has been discarded entirely by culling test.
|
||||||
|
bool IsCulled() const { return myNbStructuresNotCulled == 0; }
|
||||||
|
|
||||||
|
//! Returns number of transform persistence objects.
|
||||||
|
Standard_Integer NbOfTransformPersistenceObjects() const
|
||||||
|
{
|
||||||
|
return myBVHPrimitivesTrsfPers.Size();
|
||||||
|
}
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
//! Returns set of Graphic3d_CStructures structures for building BVH tree.
|
||||||
|
const Graphic3d_BvhCStructureSet& CullableStructuresBVH() const { return myBVHPrimitives; }
|
||||||
|
|
||||||
|
//! Returns set of transform persistent Graphic3d_CStructures for building BVH tree.
|
||||||
|
const Graphic3d_BvhCStructureSetTrsfPers& CullableTrsfPersStructuresBVH() const { return myBVHPrimitivesTrsfPers; }
|
||||||
|
|
||||||
|
//! Returns indexed map of always rendered structures.
|
||||||
|
const NCollection_IndexedMap<const Graphic3d_CStructure*>& NonCullableStructures() const { return myAlwaysRenderedMap; }
|
||||||
|
|
||||||
|
protected:
|
||||||
|
|
||||||
|
//! Updates BVH trees if their state has been invalidated.
|
||||||
|
Standard_EXPORT void updateBVH() const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
//! Array of Graphic3d_CStructures by priority rendered in layer.
|
||||||
|
Graphic3d_ArrayOfIndexedMapOfStructure myArray;
|
||||||
|
|
||||||
|
//! Overall number of structures rendered in the layer.
|
||||||
|
Standard_Integer myNbStructures;
|
||||||
|
|
||||||
|
//! Number of NOT culled structures in the layer.
|
||||||
|
Standard_Integer myNbStructuresNotCulled;
|
||||||
|
|
||||||
|
//! Layer setting flags.
|
||||||
|
Graphic3d_ZLayerSettings myLayerSettings;
|
||||||
|
|
||||||
|
//! Set of Graphic3d_CStructures structures for building BVH tree.
|
||||||
|
mutable Graphic3d_BvhCStructureSet myBVHPrimitives;
|
||||||
|
|
||||||
|
//! Set of transform persistent Graphic3d_CStructures for building BVH tree.
|
||||||
|
mutable Graphic3d_BvhCStructureSetTrsfPers myBVHPrimitivesTrsfPers;
|
||||||
|
|
||||||
|
//! Indexed map of always rendered structures.
|
||||||
|
mutable NCollection_IndexedMap<const Graphic3d_CStructure*> myAlwaysRenderedMap;
|
||||||
|
|
||||||
|
//! Is needed for implementation of stochastic order of BVH traverse.
|
||||||
|
Standard_Boolean myBVHIsLeftChildQueuedFirst;
|
||||||
|
|
||||||
|
//! Defines if the primitive set for BVH is outdated.
|
||||||
|
mutable Standard_Boolean myIsBVHPrimitivesNeedsReset;
|
||||||
|
|
||||||
|
//! Defines if the cached bounding box is outdated.
|
||||||
|
mutable bool myIsBoundingBoxNeedsReset[2];
|
||||||
|
|
||||||
|
//! Cached layer bounding box.
|
||||||
|
mutable Bnd_Box myBoundingBox[2];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // _Graphic3d_Layer_HeaderFile
|
@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) 2014 OPEN CASCADE SAS
|
// Copyright (c) 2019 OPEN CASCADE SAS
|
||||||
//
|
//
|
||||||
// This file is part of Open CASCADE Technology software library.
|
// This file is part of Open CASCADE Technology software library.
|
||||||
//
|
//
|
||||||
@ -11,14 +11,14 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#ifndef _OpenGl_MapOfZLayerSettings_HeaderFile
|
#ifndef _Vulkan_MapOfZLayerSettings_HeaderFile
|
||||||
#define _OpenGl_MapOfZLayerSettings_HeaderFile
|
#define _Vulkan_MapOfZLayerSettings_HeaderFile
|
||||||
|
|
||||||
#include <Standard_TypeDef.hxx>
|
#include <Standard_TypeDef.hxx>
|
||||||
#include <NCollection_Map.hxx>
|
#include <NCollection_Map.hxx>
|
||||||
#include <Graphic3d_ZLayerId.hxx>
|
#include <Graphic3d_ZLayerId.hxx>
|
||||||
#include <Graphic3d_ZLayerSettings.hxx>
|
#include <Graphic3d_ZLayerSettings.hxx>
|
||||||
|
|
||||||
typedef NCollection_DataMap<Graphic3d_ZLayerId, Graphic3d_ZLayerSettings> OpenGl_MapOfZLayerSettings;
|
typedef NCollection_DataMap<Graphic3d_ZLayerId, Graphic3d_ZLayerSettings> Graphic3d_MapOfZLayerSettings;
|
||||||
|
|
||||||
#endif // _OpenGl_MapOfZLayerSettings_HeaderFile
|
#endif // _Vulkan_MapOfZLayerSettings_HeaderFile
|
@ -18,6 +18,7 @@
|
|||||||
#include <Geom_Transformation.hxx>
|
#include <Geom_Transformation.hxx>
|
||||||
#include <Graphic3d_LightSet.hxx>
|
#include <Graphic3d_LightSet.hxx>
|
||||||
#include <Graphic3d_PolygonOffset.hxx>
|
#include <Graphic3d_PolygonOffset.hxx>
|
||||||
|
#include <Precision.hxx>
|
||||||
#include <TCollection_AsciiString.hxx>
|
#include <TCollection_AsciiString.hxx>
|
||||||
|
|
||||||
enum Graphic3d_ZLayerSetting
|
enum Graphic3d_ZLayerSetting
|
||||||
|
@ -39,7 +39,6 @@ OpenGl_View_Raytrace.cxx
|
|||||||
OpenGl_View_Redraw.cxx
|
OpenGl_View_Redraw.cxx
|
||||||
OpenGl_GraduatedTrihedron.hxx
|
OpenGl_GraduatedTrihedron.hxx
|
||||||
OpenGl_GraduatedTrihedron.cxx
|
OpenGl_GraduatedTrihedron.cxx
|
||||||
OpenGl_MapOfZLayerSettings.hxx
|
|
||||||
OpenGl_Material.hxx
|
OpenGl_Material.hxx
|
||||||
OpenGl_MaterialState.hxx
|
OpenGl_MaterialState.hxx
|
||||||
OpenGl_Matrix.hxx
|
OpenGl_Matrix.hxx
|
||||||
@ -63,12 +62,6 @@ OpenGl_Font.hxx
|
|||||||
OpenGl_Font.cxx
|
OpenGl_Font.cxx
|
||||||
OpenGl_BackgroundArray.cxx
|
OpenGl_BackgroundArray.cxx
|
||||||
OpenGl_BackgroundArray.hxx
|
OpenGl_BackgroundArray.hxx
|
||||||
OpenGl_BVHClipPrimitiveSet.cxx
|
|
||||||
OpenGl_BVHClipPrimitiveSet.hxx
|
|
||||||
OpenGl_BVHClipPrimitiveTrsfPersSet.cxx
|
|
||||||
OpenGl_BVHClipPrimitiveTrsfPersSet.hxx
|
|
||||||
OpenGl_BVHTreeSelector.cxx
|
|
||||||
OpenGl_BVHTreeSelector.hxx
|
|
||||||
OpenGl_CappingAlgo.cxx
|
OpenGl_CappingAlgo.cxx
|
||||||
OpenGl_CappingAlgo.hxx
|
OpenGl_CappingAlgo.hxx
|
||||||
OpenGl_CappingPlaneResource.cxx
|
OpenGl_CappingPlaneResource.cxx
|
||||||
@ -109,7 +102,6 @@ OpenGl_GraphicDriver.cxx
|
|||||||
OpenGl_GraphicDriver.hxx
|
OpenGl_GraphicDriver.hxx
|
||||||
OpenGl_IndexBuffer.cxx
|
OpenGl_IndexBuffer.cxx
|
||||||
OpenGl_IndexBuffer.hxx
|
OpenGl_IndexBuffer.hxx
|
||||||
OpenGl_Layer.cxx
|
|
||||||
OpenGl_Layer.hxx
|
OpenGl_Layer.hxx
|
||||||
OpenGl_RenderFilter.hxx
|
OpenGl_RenderFilter.hxx
|
||||||
OpenGl_Sampler.cxx
|
OpenGl_Sampler.cxx
|
||||||
|
@ -60,7 +60,7 @@ public: //! @name context creation parameters
|
|||||||
* (see OpenGl_Context - messages will be printed to standard output).
|
* (see OpenGl_Context - messages will be printed to standard output).
|
||||||
* Affects performance - thus should not be turned on by products in released state.
|
* Affects performance - thus should not be turned on by products in released state.
|
||||||
*
|
*
|
||||||
* OFF by default. Currently implemented only for Windows (WGL).
|
* OFF by default.
|
||||||
*/
|
*/
|
||||||
Standard_Boolean contextDebug;
|
Standard_Boolean contextDebug;
|
||||||
|
|
||||||
|
@ -186,12 +186,12 @@ void OpenGl_FrameStats::updateStatistics (const Handle(Graphic3d_CView)& theView
|
|||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void OpenGl_FrameStats::updateStructures (Standard_Integer theViewId,
|
void OpenGl_FrameStats::updateStructures (Standard_Integer theViewId,
|
||||||
const OpenGl_IndexedMapOfStructure& theStructures,
|
const NCollection_IndexedMap<const Graphic3d_CStructure*>& theStructures,
|
||||||
Standard_Boolean theToCountElems,
|
Standard_Boolean theToCountElems,
|
||||||
Standard_Boolean theToCountTris,
|
Standard_Boolean theToCountTris,
|
||||||
Standard_Boolean theToCountMem)
|
Standard_Boolean theToCountMem)
|
||||||
{
|
{
|
||||||
for (OpenGl_IndexedMapOfStructure::Iterator aStructIter (theStructures); aStructIter.More(); aStructIter.Next())
|
for (OpenGl_Structure::StructIterator aStructIter (theStructures); aStructIter.More(); aStructIter.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_Structure* aStruct = aStructIter.Value();
|
const OpenGl_Structure* aStruct = aStructIter.Value();
|
||||||
const bool isStructHidden = aStruct->IsCulled()
|
const bool isStructHidden = aStruct->IsCulled()
|
||||||
|
@ -17,9 +17,7 @@
|
|||||||
#include <Graphic3d_FrameStats.hxx>
|
#include <Graphic3d_FrameStats.hxx>
|
||||||
#include <NCollection_IndexedMap.hxx>
|
#include <NCollection_IndexedMap.hxx>
|
||||||
|
|
||||||
class OpenGl_Workspace;
|
class Graphic3d_CStructure;
|
||||||
class OpenGl_Structure;
|
|
||||||
typedef NCollection_IndexedMap<const OpenGl_Structure*> OpenGl_IndexedMapOfStructure;
|
|
||||||
|
|
||||||
//! Class storing the frame statistics.
|
//! Class storing the frame statistics.
|
||||||
class OpenGl_FrameStats : public Graphic3d_FrameStats
|
class OpenGl_FrameStats : public Graphic3d_FrameStats
|
||||||
@ -48,7 +46,7 @@ protected:
|
|||||||
|
|
||||||
//! Updates counters for structures.
|
//! Updates counters for structures.
|
||||||
Standard_EXPORT virtual void updateStructures (Standard_Integer theViewId,
|
Standard_EXPORT virtual void updateStructures (Standard_Integer theViewId,
|
||||||
const OpenGl_IndexedMapOfStructure& theStructures,
|
const NCollection_IndexedMap<const Graphic3d_CStructure*>& theStructures,
|
||||||
Standard_Boolean theToCountElems,
|
Standard_Boolean theToCountElems,
|
||||||
Standard_Boolean theToCountTris,
|
Standard_Boolean theToCountTris,
|
||||||
Standard_Boolean theToCountMem);
|
Standard_Boolean theToCountMem);
|
||||||
|
@ -139,72 +139,6 @@ OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnectio
|
|||||||
{
|
{
|
||||||
throw Aspect_GraphicDeviceDefinitionError("OpenGl_GraphicDriver: default context can not be initialized!");
|
throw Aspect_GraphicDeviceDefinitionError("OpenGl_GraphicDriver: default context can not be initialized!");
|
||||||
}
|
}
|
||||||
|
|
||||||
// default layers are always presented in display layer sequence it can not be removed
|
|
||||||
{
|
|
||||||
Graphic3d_ZLayerSettings aSettings;
|
|
||||||
aSettings.SetImmediate (Standard_False);
|
|
||||||
aSettings.SetEnvironmentTexture (Standard_False);
|
|
||||||
aSettings.SetEnableDepthTest (Standard_False);
|
|
||||||
aSettings.SetEnableDepthWrite (Standard_False);
|
|
||||||
aSettings.SetClearDepth (Standard_False);
|
|
||||||
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
|
|
||||||
myLayerIds.Add (Graphic3d_ZLayerId_BotOSD);
|
|
||||||
myLayerSeq.Append (Graphic3d_ZLayerId_BotOSD);
|
|
||||||
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_BotOSD, aSettings);
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
Graphic3d_ZLayerSettings aSettings;
|
|
||||||
aSettings.SetImmediate (Standard_False);
|
|
||||||
aSettings.SetEnvironmentTexture (Standard_True);
|
|
||||||
aSettings.SetEnableDepthTest (Standard_True);
|
|
||||||
aSettings.SetEnableDepthWrite (Standard_True);
|
|
||||||
aSettings.SetClearDepth (Standard_False);
|
|
||||||
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
|
|
||||||
myLayerIds.Add (Graphic3d_ZLayerId_Default);
|
|
||||||
myLayerSeq.Append (Graphic3d_ZLayerId_Default);
|
|
||||||
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_Default, aSettings);
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
Graphic3d_ZLayerSettings aSettings;
|
|
||||||
aSettings.SetImmediate (Standard_True);
|
|
||||||
aSettings.SetEnvironmentTexture (Standard_True);
|
|
||||||
aSettings.SetEnableDepthTest (Standard_True);
|
|
||||||
aSettings.SetEnableDepthWrite (Standard_True);
|
|
||||||
aSettings.SetClearDepth (Standard_False);
|
|
||||||
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
|
|
||||||
myLayerIds.Add (Graphic3d_ZLayerId_Top);
|
|
||||||
myLayerSeq.Append (Graphic3d_ZLayerId_Top);
|
|
||||||
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_Top, aSettings);
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
Graphic3d_ZLayerSettings aSettings;
|
|
||||||
aSettings.SetImmediate (Standard_True);
|
|
||||||
aSettings.SetEnvironmentTexture (Standard_True);
|
|
||||||
aSettings.SetEnableDepthTest (Standard_True);
|
|
||||||
aSettings.SetEnableDepthWrite (Standard_True);
|
|
||||||
aSettings.SetClearDepth (Standard_True);
|
|
||||||
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
|
|
||||||
myLayerIds.Add (Graphic3d_ZLayerId_Topmost);
|
|
||||||
myLayerSeq.Append (Graphic3d_ZLayerId_Topmost);
|
|
||||||
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_Topmost, aSettings);
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
Graphic3d_ZLayerSettings aSettings;
|
|
||||||
aSettings.SetImmediate (Standard_True);
|
|
||||||
aSettings.SetEnvironmentTexture (Standard_False);
|
|
||||||
aSettings.SetEnableDepthTest (Standard_False);
|
|
||||||
aSettings.SetEnableDepthWrite (Standard_False);
|
|
||||||
aSettings.SetClearDepth (Standard_False);
|
|
||||||
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
|
|
||||||
myLayerIds.Add (Graphic3d_ZLayerId_TopOSD);
|
|
||||||
myLayerSeq.Append (Graphic3d_ZLayerId_TopOSD);
|
|
||||||
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_TopOSD, aSettings);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -570,50 +504,6 @@ void OpenGl_GraphicDriver::TextSize (const Handle(Graphic3d_CView)& theView,
|
|||||||
OpenGl_Text::StringSize(aCtx, aText, aTextAspect, aTextParam, theView->RenderingParams().Resolution, theWidth, theAscent, theDescent);
|
OpenGl_Text::StringSize(aCtx, aText, aTextAspect, aTextParam, theView->RenderingParams().Resolution, theWidth, theAscent, theDescent);
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
|
||||||
//function : addZLayerIndex
|
|
||||||
//purpose :
|
|
||||||
//=======================================================================
|
|
||||||
void OpenGl_GraphicDriver::addZLayerIndex (const Graphic3d_ZLayerId theLayerId)
|
|
||||||
{
|
|
||||||
// remove index
|
|
||||||
for (TColStd_SequenceOfInteger::Iterator aLayerIt (myLayerSeq); aLayerIt.More(); aLayerIt.Next())
|
|
||||||
{
|
|
||||||
if (aLayerIt.Value() == theLayerId)
|
|
||||||
{
|
|
||||||
myLayerSeq.Remove (aLayerIt);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (myMapOfZLayerSettings.Find (theLayerId).IsImmediate())
|
|
||||||
{
|
|
||||||
myLayerSeq.Append (theLayerId);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (TColStd_SequenceOfInteger::Iterator aLayerIt (myLayerSeq); aLayerIt.More(); aLayerIt.Next())
|
|
||||||
{
|
|
||||||
const Graphic3d_ZLayerSettings& aSettings = myMapOfZLayerSettings.Find (aLayerIt.Value());
|
|
||||||
if (aSettings.IsImmediate())
|
|
||||||
{
|
|
||||||
aLayerIt.Previous();
|
|
||||||
if (aLayerIt.More())
|
|
||||||
{
|
|
||||||
myLayerSeq.InsertAfter (aLayerIt, theLayerId);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// first non-immediate layer
|
|
||||||
myLayerSeq.Prepend (theLayerId);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// no immediate layers
|
|
||||||
myLayerSeq.Append (theLayerId);
|
|
||||||
}
|
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : AddZLayer
|
//function : AddZLayer
|
||||||
//purpose :
|
//purpose :
|
||||||
@ -686,15 +576,6 @@ void OpenGl_GraphicDriver::RemoveZLayer (const Graphic3d_ZLayerId theLayerId)
|
|||||||
myLayerIds.Remove (theLayerId);
|
myLayerIds.Remove (theLayerId);
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
|
||||||
//function : ZLayers
|
|
||||||
//purpose :
|
|
||||||
//=======================================================================
|
|
||||||
void OpenGl_GraphicDriver::ZLayers (TColStd_SequenceOfInteger& theLayerSeq) const
|
|
||||||
{
|
|
||||||
theLayerSeq.Assign (myLayerSeq);
|
|
||||||
}
|
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : SetZLayerSettings
|
//function : SetZLayerSettings
|
||||||
//purpose :
|
//purpose :
|
||||||
@ -702,22 +583,7 @@ void OpenGl_GraphicDriver::ZLayers (TColStd_SequenceOfInteger& theLayerSeq) cons
|
|||||||
void OpenGl_GraphicDriver::SetZLayerSettings (const Graphic3d_ZLayerId theLayerId,
|
void OpenGl_GraphicDriver::SetZLayerSettings (const Graphic3d_ZLayerId theLayerId,
|
||||||
const Graphic3d_ZLayerSettings& theSettings)
|
const Graphic3d_ZLayerSettings& theSettings)
|
||||||
{
|
{
|
||||||
Graphic3d_ZLayerSettings* aSettings = myMapOfZLayerSettings.ChangeSeek (theLayerId);
|
base_type::SetZLayerSettings (theLayerId, theSettings);
|
||||||
if (aSettings != NULL)
|
|
||||||
{
|
|
||||||
const bool isChanged = (aSettings->IsImmediate() != theSettings.IsImmediate());
|
|
||||||
*aSettings = theSettings;
|
|
||||||
if (isChanged)
|
|
||||||
{
|
|
||||||
addZLayerIndex (theLayerId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// abnormal case
|
|
||||||
myMapOfZLayerSettings.Bind (theLayerId, theSettings);
|
|
||||||
addZLayerIndex (theLayerId);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Change Z layer settings in all managed views
|
// Change Z layer settings in all managed views
|
||||||
for (NCollection_Map<Handle(OpenGl_View)>::Iterator aViewIt (myMapOfView); aViewIt.More(); aViewIt.Next())
|
for (NCollection_Map<Handle(OpenGl_View)>::Iterator aViewIt (myMapOfView); aViewIt.More(); aViewIt.Next())
|
||||||
@ -726,19 +592,6 @@ void OpenGl_GraphicDriver::SetZLayerSettings (const Graphic3d_ZLayerId theLayerI
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
|
||||||
//function : ZLayerSettings
|
|
||||||
//purpose :
|
|
||||||
//=======================================================================
|
|
||||||
const Graphic3d_ZLayerSettings& OpenGl_GraphicDriver::ZLayerSettings (const Graphic3d_ZLayerId theLayerId) const
|
|
||||||
{
|
|
||||||
Standard_ASSERT_RAISE (myLayerIds.Contains (theLayerId),
|
|
||||||
"OpenGl_GraphicDriver::ZLayerSettings, "
|
|
||||||
"Layer with theLayerId does not exist");
|
|
||||||
|
|
||||||
return myMapOfZLayerSettings.Find (theLayerId);
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : Structure
|
// function : Structure
|
||||||
// purpose :
|
// purpose :
|
||||||
|
@ -20,39 +20,15 @@
|
|||||||
|
|
||||||
#include <Aspect_Display.hxx>
|
#include <Aspect_Display.hxx>
|
||||||
#include <Aspect_DisplayConnection.hxx>
|
#include <Aspect_DisplayConnection.hxx>
|
||||||
#include <Aspect_GradientFillMethod.hxx>
|
|
||||||
#include <Aspect_FillMethod.hxx>
|
|
||||||
#include <Aspect_TypeOfTriedronPosition.hxx>
|
|
||||||
#include <Aspect_Handle.hxx>
|
|
||||||
#include <Aspect_RenderingContext.hxx>
|
#include <Aspect_RenderingContext.hxx>
|
||||||
#include <gp_Ax2.hxx>
|
|
||||||
#include <Graphic3d_CView.hxx>
|
#include <Graphic3d_CView.hxx>
|
||||||
#include <Graphic3d_CStructure.hxx>
|
#include <Graphic3d_CStructure.hxx>
|
||||||
#include <Graphic3d_TextPath.hxx>
|
|
||||||
#include <Graphic3d_HorizontalTextAlignment.hxx>
|
|
||||||
#include <Graphic3d_VerticalTextAlignment.hxx>
|
|
||||||
#include <Graphic3d_GraduatedTrihedron.hxx>
|
|
||||||
#include <Graphic3d_TypeOfComposition.hxx>
|
|
||||||
#include <Graphic3d_BufferType.hxx>
|
|
||||||
#include <NCollection_DataMap.hxx>
|
#include <NCollection_DataMap.hxx>
|
||||||
#include <OpenGl_Context.hxx>
|
#include <OpenGl_Context.hxx>
|
||||||
#include <OpenGl_MapOfZLayerSettings.hxx>
|
|
||||||
#include <Quantity_NameOfColor.hxx>
|
|
||||||
#include <Standard_CString.hxx>
|
|
||||||
#include <TColStd_Array1OfInteger.hxx>
|
|
||||||
#include <TColStd_Array2OfReal.hxx>
|
|
||||||
#include <TColStd_HArray1OfByte.hxx>
|
|
||||||
#include <TColStd_HArray1OfReal.hxx>
|
|
||||||
#include <TColStd_MapOfInteger.hxx>
|
|
||||||
|
|
||||||
class Aspect_Window;
|
class Aspect_Window;
|
||||||
class Quantity_Color;
|
class Quantity_Color;
|
||||||
class Graphic3d_Vertex;
|
|
||||||
class TCollection_ExtendedString;
|
|
||||||
class Image_PixMap;
|
|
||||||
class OpenGl_Element;
|
|
||||||
class OpenGl_Structure;
|
class OpenGl_Structure;
|
||||||
class OpenGl_Text;
|
|
||||||
class OpenGl_View;
|
class OpenGl_View;
|
||||||
class OpenGl_Window;
|
class OpenGl_Window;
|
||||||
|
|
||||||
@ -143,15 +119,9 @@ public:
|
|||||||
//! (reserved for default layers that can not be removed).
|
//! (reserved for default layers that can not be removed).
|
||||||
Standard_EXPORT void RemoveZLayer (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE;
|
Standard_EXPORT void RemoveZLayer (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE;
|
||||||
|
|
||||||
//! Returns list of Z layers defined for the graphical driver.
|
|
||||||
Standard_EXPORT void ZLayers (TColStd_SequenceOfInteger& theLayerSeq) const Standard_OVERRIDE;
|
|
||||||
|
|
||||||
//! Sets the settings for a single Z layer.
|
//! Sets the settings for a single Z layer.
|
||||||
Standard_EXPORT void SetZLayerSettings (const Graphic3d_ZLayerId theLayerId, const Graphic3d_ZLayerSettings& theSettings) Standard_OVERRIDE;
|
Standard_EXPORT void SetZLayerSettings (const Graphic3d_ZLayerId theLayerId, const Graphic3d_ZLayerSettings& theSettings) Standard_OVERRIDE;
|
||||||
|
|
||||||
//! Returns the settings of a single Z layer.
|
|
||||||
Standard_EXPORT virtual const Graphic3d_ZLayerSettings& ZLayerSettings (const Graphic3d_ZLayerId theLayerId) const Standard_OVERRIDE;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//! @return the visualization options
|
//! @return the visualization options
|
||||||
@ -191,9 +161,6 @@ public:
|
|||||||
void* getRawGlConfig() const { return myEglConfig; }
|
void* getRawGlConfig() const { return myEglConfig; }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//! Insert index layer at proper position.
|
|
||||||
Standard_EXPORT void addZLayerIndex (const Graphic3d_ZLayerId theLayerId);
|
|
||||||
|
|
||||||
//! Set device lost flag for redrawn views.
|
//! Set device lost flag for redrawn views.
|
||||||
Standard_EXPORT void setDeviceLost();
|
Standard_EXPORT void setDeviceLost();
|
||||||
|
|
||||||
@ -218,10 +185,6 @@ protected:
|
|||||||
NCollection_Map<Handle(OpenGl_View)> myMapOfView;
|
NCollection_Map<Handle(OpenGl_View)> myMapOfView;
|
||||||
NCollection_DataMap<Standard_Integer, OpenGl_Structure*> myMapOfStructure;
|
NCollection_DataMap<Standard_Integer, OpenGl_Structure*> myMapOfStructure;
|
||||||
|
|
||||||
TColStd_MapOfInteger myLayerIds;
|
|
||||||
TColStd_SequenceOfInteger myLayerSeq;
|
|
||||||
OpenGl_MapOfZLayerSettings myMapOfZLayerSettings;
|
|
||||||
|
|
||||||
mutable OpenGl_StateCounter myStateCounter; //!< State counter for OpenGl structures.
|
mutable OpenGl_StateCounter myStateCounter; //!< State counter for OpenGl structures.
|
||||||
mutable OpenGl_StateCounter myUIDGenerator; //!< Unique ID counter for primitive arrays.
|
mutable OpenGl_StateCounter myUIDGenerator; //!< Unique ID counter for primitive arrays.
|
||||||
|
|
||||||
|
@ -16,185 +16,8 @@
|
|||||||
#ifndef _OpenGl_Layer_Header
|
#ifndef _OpenGl_Layer_Header
|
||||||
#define _OpenGl_Layer_Header
|
#define _OpenGl_Layer_Header
|
||||||
|
|
||||||
#include <NCollection_Sequence.hxx>
|
#include <Graphic3d_Layer.hxx>
|
||||||
#include <NCollection_Array1.hxx>
|
|
||||||
|
|
||||||
#include <OpenGl_BVHClipPrimitiveSet.hxx>
|
typedef Graphic3d_Layer OpenGl_Layer;
|
||||||
#include <OpenGl_BVHClipPrimitiveTrsfPersSet.hxx>
|
|
||||||
#include <OpenGl_BVHTreeSelector.hxx>
|
|
||||||
|
|
||||||
#include <Graphic3d_ZLayerSettings.hxx>
|
|
||||||
#include <Graphic3d_Camera.hxx>
|
|
||||||
#include <OpenGl_GlCore11.hxx>
|
|
||||||
|
|
||||||
|
|
||||||
struct OpenGl_GlobalLayerSettings
|
|
||||||
{
|
|
||||||
GLint DepthFunc;
|
|
||||||
GLboolean DepthMask;
|
|
||||||
};
|
|
||||||
|
|
||||||
//! Defines index map of OpenGL structures.
|
|
||||||
typedef NCollection_IndexedMap<const OpenGl_Structure*> OpenGl_IndexedMapOfStructure;
|
|
||||||
|
|
||||||
//! Defines array of indexed maps of OpenGL structures.
|
|
||||||
typedef NCollection_Array1<OpenGl_IndexedMapOfStructure> OpenGl_ArrayOfIndexedMapOfStructure;
|
|
||||||
|
|
||||||
//! Presentations list sorted within priorities.
|
|
||||||
class OpenGl_Layer : public Standard_Transient
|
|
||||||
{
|
|
||||||
DEFINE_STANDARD_RTTIEXT(OpenGl_Layer, Standard_Transient)
|
|
||||||
public:
|
|
||||||
|
|
||||||
//! Initializes associated priority list and layer properties
|
|
||||||
OpenGl_Layer (const Standard_Integer theNbPriorities,
|
|
||||||
const Handle(Select3D_BVHBuilder3d)& theBuilder);
|
|
||||||
|
|
||||||
//! Destructor.
|
|
||||||
virtual ~OpenGl_Layer();
|
|
||||||
|
|
||||||
//! Returns BVH tree builder for frustom culling.
|
|
||||||
const Handle(Select3D_BVHBuilder3d)& FrustumCullingBVHBuilder() const { return myBVHPrimitivesTrsfPers.Builder(); }
|
|
||||||
|
|
||||||
//! Assigns BVH tree builder for frustom culling.
|
|
||||||
void SetFrustumCullingBVHBuilder (const Handle(Select3D_BVHBuilder3d)& theBuilder) { myBVHPrimitivesTrsfPers.SetBuilder (theBuilder); }
|
|
||||||
|
|
||||||
//! Return true if layer was marked with immediate flag.
|
|
||||||
Standard_Boolean IsImmediate() const { return myLayerSettings.IsImmediate(); }
|
|
||||||
|
|
||||||
//! Returns settings of the layer object.
|
|
||||||
const Graphic3d_ZLayerSettings& LayerSettings() const { return myLayerSettings; };
|
|
||||||
|
|
||||||
//! Sets settings of the layer object.
|
|
||||||
void SetLayerSettings (const Graphic3d_ZLayerSettings& theSettings);
|
|
||||||
|
|
||||||
void Add (const OpenGl_Structure* theStruct,
|
|
||||||
const Standard_Integer thePriority,
|
|
||||||
Standard_Boolean isForChangePriority = Standard_False);
|
|
||||||
|
|
||||||
//! Remove structure and returns its priority, if the structure is not found, method returns negative value
|
|
||||||
bool Remove (const OpenGl_Structure* theStruct,
|
|
||||||
Standard_Integer& thePriority,
|
|
||||||
Standard_Boolean isForChangePriority = Standard_False);
|
|
||||||
|
|
||||||
//! @return the number of structures
|
|
||||||
Standard_Integer NbStructures() const { return myNbStructures; }
|
|
||||||
|
|
||||||
//! Number of NOT culled structures in the layer.
|
|
||||||
Standard_Integer NbStructuresNotCulled() const { return myNbStructuresNotCulled; }
|
|
||||||
|
|
||||||
//! Returns the number of available priority levels
|
|
||||||
Standard_Integer NbPriorities() const { return myArray.Length(); }
|
|
||||||
|
|
||||||
//! Append layer of acceptable type (with similar number of priorities or less).
|
|
||||||
//! Returns Standard_False if the list can not be accepted.
|
|
||||||
Standard_Boolean Append (const OpenGl_Layer& theOther);
|
|
||||||
|
|
||||||
//! Returns array of OpenGL structures.
|
|
||||||
const OpenGl_ArrayOfIndexedMapOfStructure& ArrayOfStructures() const { return myArray; }
|
|
||||||
|
|
||||||
//! Marks BVH tree for given priority list as dirty and
|
|
||||||
//! marks primitive set for rebuild.
|
|
||||||
void InvalidateBVHData();
|
|
||||||
|
|
||||||
//! Marks cached bounding box as obsolete.
|
|
||||||
void InvalidateBoundingBox() const
|
|
||||||
{
|
|
||||||
myIsBoundingBoxNeedsReset[0] = myIsBoundingBoxNeedsReset[1] = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
//! Returns layer bounding box.
|
|
||||||
//! @param theViewId view index to consider View Affinity in structure
|
|
||||||
//! @param theCamera camera definition
|
|
||||||
//! @param theWindowWidth viewport width (for applying transformation-persistence)
|
|
||||||
//! @param theWindowHeight viewport height (for applying transformation-persistence)
|
|
||||||
//! @param theToIncludeAuxiliary consider also auxiliary presentations (with infinite flag or with trihedron transformation persistence)
|
|
||||||
//! @return computed bounding box
|
|
||||||
Bnd_Box BoundingBox (const Standard_Integer theViewId,
|
|
||||||
const Handle(Graphic3d_Camera)& theCamera,
|
|
||||||
const Standard_Integer theWindowWidth,
|
|
||||||
const Standard_Integer theWindowHeight,
|
|
||||||
const Standard_Boolean theToIncludeAuxiliary) const;
|
|
||||||
|
|
||||||
//! Returns zoom-scale factor.
|
|
||||||
Standard_Real considerZoomPersistenceObjects (const Standard_Integer theViewId,
|
|
||||||
const Handle(Graphic3d_Camera)& theCamera,
|
|
||||||
const Standard_Integer theWindowWidth,
|
|
||||||
const Standard_Integer theWindowHeight) const;
|
|
||||||
|
|
||||||
//! Update culling state - should be called before rendering.
|
|
||||||
//! Traverses through BVH tree to determine which structures are in view volume.
|
|
||||||
void UpdateCulling (const Standard_Integer theViewId,
|
|
||||||
const OpenGl_BVHTreeSelector& theSelector,
|
|
||||||
const Graphic3d_RenderingParams::FrustumCulling theFrustumCullingState);
|
|
||||||
|
|
||||||
//! Returns TRUE if layer is empty or has been discarded entirely by culling test.
|
|
||||||
bool IsCulled() const { return myNbStructuresNotCulled == 0; }
|
|
||||||
|
|
||||||
// Render all structures.
|
|
||||||
void Render (const Handle(OpenGl_Workspace)& theWorkspace,
|
|
||||||
const OpenGl_GlobalLayerSettings& theDefaultSettings) const;
|
|
||||||
|
|
||||||
//! Returns number of transform persistence objects.
|
|
||||||
Standard_Integer NbOfTransformPersistenceObjects() const
|
|
||||||
{
|
|
||||||
return myBVHPrimitivesTrsfPers.Size();
|
|
||||||
}
|
|
||||||
|
|
||||||
public:
|
|
||||||
|
|
||||||
//! Returns set of OpenGl_Structures structures for building BVH tree.
|
|
||||||
const OpenGl_BVHClipPrimitiveSet& CullableStructuresBVH() const { return myBVHPrimitives; }
|
|
||||||
|
|
||||||
//! Returns set of transform persistent OpenGl_Structures for building BVH tree.
|
|
||||||
const OpenGl_BVHClipPrimitiveTrsfPersSet& CullableTrsfPersStructuresBVH() const { return myBVHPrimitivesTrsfPers; }
|
|
||||||
|
|
||||||
//! Returns indexed map of always rendered structures.
|
|
||||||
const NCollection_IndexedMap<const OpenGl_Structure*>& NonCullableStructures() const { return myAlwaysRenderedMap; }
|
|
||||||
|
|
||||||
protected:
|
|
||||||
|
|
||||||
//! Updates BVH trees if their state has been invalidated.
|
|
||||||
Standard_EXPORT void updateBVH() const;
|
|
||||||
|
|
||||||
//! Iterates through the hierarchical list of existing structures and renders them all.
|
|
||||||
Standard_EXPORT void renderAll (const Handle(OpenGl_Workspace)& theWorkspace) const;
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
//! Array of OpenGl_Structures by priority rendered in layer.
|
|
||||||
OpenGl_ArrayOfIndexedMapOfStructure myArray;
|
|
||||||
|
|
||||||
//! Overall number of structures rendered in the layer.
|
|
||||||
Standard_Integer myNbStructures;
|
|
||||||
|
|
||||||
//! Number of NOT culled structures in the layer.
|
|
||||||
Standard_Integer myNbStructuresNotCulled;
|
|
||||||
|
|
||||||
//! Layer setting flags.
|
|
||||||
Graphic3d_ZLayerSettings myLayerSettings;
|
|
||||||
|
|
||||||
//! Set of OpenGl_Structures structures for building BVH tree.
|
|
||||||
mutable OpenGl_BVHClipPrimitiveSet myBVHPrimitives;
|
|
||||||
|
|
||||||
//! Set of transform persistent OpenGl_Structures for building BVH tree.
|
|
||||||
mutable OpenGl_BVHClipPrimitiveTrsfPersSet myBVHPrimitivesTrsfPers;
|
|
||||||
|
|
||||||
//! Indexed map of always rendered structures.
|
|
||||||
mutable NCollection_IndexedMap<const OpenGl_Structure*> myAlwaysRenderedMap;
|
|
||||||
|
|
||||||
//! Is needed for implementation of stochastic order of BVH traverse.
|
|
||||||
Standard_Boolean myBVHIsLeftChildQueuedFirst;
|
|
||||||
|
|
||||||
//! Defines if the primitive set for BVH is outdated.
|
|
||||||
mutable Standard_Boolean myIsBVHPrimitivesNeedsReset;
|
|
||||||
|
|
||||||
//! Defines if the cached bounding box is outdated.
|
|
||||||
mutable bool myIsBoundingBoxNeedsReset[2];
|
|
||||||
|
|
||||||
//! Cached layer bounding box.
|
|
||||||
mutable Bnd_Box myBoundingBox[2];
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif //_OpenGl_Layer_Header
|
#endif //_OpenGl_Layer_Header
|
||||||
|
@ -137,6 +137,12 @@ namespace
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct OpenGl_GlobalLayerSettings
|
||||||
|
{
|
||||||
|
GLint DepthFunc;
|
||||||
|
GLboolean DepthMask;
|
||||||
|
};
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : OpenGl_LayerList
|
//function : OpenGl_LayerList
|
||||||
//purpose : Constructor
|
//purpose : Constructor
|
||||||
@ -519,7 +525,7 @@ void OpenGl_LayerList::UpdateCulling (const Handle(OpenGl_Workspace)& theWorkspa
|
|||||||
aTimer.Start();
|
aTimer.Start();
|
||||||
|
|
||||||
const Standard_Integer aViewId = theWorkspace->View()->Identification();
|
const Standard_Integer aViewId = theWorkspace->View()->Identification();
|
||||||
const OpenGl_BVHTreeSelector& aSelector = theWorkspace->View()->BVHTreeSelector();
|
const Graphic3d_CullingTool& aSelector = theWorkspace->View()->BVHTreeSelector();
|
||||||
for (OpenGl_IndexedLayerIterator anIts (myLayers); anIts.More(); anIts.Next())
|
for (OpenGl_IndexedLayerIterator anIts (myLayers); anIts.More(); anIts.Next())
|
||||||
{
|
{
|
||||||
OpenGl_Layer& aLayer = *anIts.ChangeValue();
|
OpenGl_Layer& aLayer = *anIts.ChangeValue();
|
||||||
@ -535,6 +541,143 @@ void OpenGl_LayerList::UpdateCulling (const Handle(OpenGl_Workspace)& theWorkspa
|
|||||||
aStats->ActiveDataFrame()[Graphic3d_FrameStatsTimer_CpuCulling] = aTimer.UserTimeCPU();
|
aStats->ActiveDataFrame()[Graphic3d_FrameStatsTimer_CpuCulling] = aTimer.UserTimeCPU();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : renderLayer
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
void OpenGl_LayerList::renderLayer (const Handle(OpenGl_Workspace)& theWorkspace,
|
||||||
|
const OpenGl_GlobalLayerSettings& theDefaultSettings,
|
||||||
|
const Graphic3d_Layer& theLayer) const
|
||||||
|
{
|
||||||
|
const Handle(OpenGl_Context)& aCtx = theWorkspace->GetGlContext();
|
||||||
|
|
||||||
|
const Graphic3d_ZLayerSettings& aLayerSettings = theLayer.LayerSettings();
|
||||||
|
// aLayerSettings.ToClearDepth() is handled outside
|
||||||
|
|
||||||
|
// handle depth test
|
||||||
|
if (aLayerSettings.ToEnableDepthTest())
|
||||||
|
{
|
||||||
|
// assuming depth test is enabled by default
|
||||||
|
glDepthFunc (theDefaultSettings.DepthFunc);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
glDepthFunc (GL_ALWAYS);
|
||||||
|
}
|
||||||
|
|
||||||
|
// save environment texture
|
||||||
|
Handle(OpenGl_TextureSet) anEnvironmentTexture = theWorkspace->EnvironmentTexture();
|
||||||
|
if (!aLayerSettings.UseEnvironmentTexture())
|
||||||
|
{
|
||||||
|
theWorkspace->SetEnvironmentTexture (Handle(OpenGl_TextureSet)());
|
||||||
|
}
|
||||||
|
|
||||||
|
// handle depth offset
|
||||||
|
const Graphic3d_PolygonOffset anAppliedOffsetParams = theWorkspace->SetDefaultPolygonOffset (aLayerSettings.PolygonOffset());
|
||||||
|
|
||||||
|
// handle depth write
|
||||||
|
theWorkspace->UseDepthWrite() = aLayerSettings.ToEnableDepthWrite() && theDefaultSettings.DepthMask == GL_TRUE;
|
||||||
|
glDepthMask (theWorkspace->UseDepthWrite() ? GL_TRUE : GL_FALSE);
|
||||||
|
|
||||||
|
const Standard_Boolean hasLocalCS = !aLayerSettings.OriginTransformation().IsNull();
|
||||||
|
const Handle(OpenGl_ShaderManager)& aManager = aCtx->ShaderManager();
|
||||||
|
Handle(Graphic3d_LightSet) aLightsBack = aManager->LightSourceState().LightSources();
|
||||||
|
const bool hasOwnLights = aCtx->ColorMask() && !aLayerSettings.Lights().IsNull() && aLayerSettings.Lights() != aLightsBack;
|
||||||
|
if (hasOwnLights)
|
||||||
|
{
|
||||||
|
aLayerSettings.Lights()->UpdateRevision();
|
||||||
|
aManager->UpdateLightSourceStateTo (aLayerSettings.Lights());
|
||||||
|
}
|
||||||
|
|
||||||
|
const Handle(Graphic3d_Camera)& aWorldCamera = theWorkspace->View()->Camera();
|
||||||
|
if (hasLocalCS)
|
||||||
|
{
|
||||||
|
// Apply local camera transformation.
|
||||||
|
// The vertex position is computed by the following formula in GLSL program:
|
||||||
|
// gl_Position = occProjectionMatrix * occWorldViewMatrix * occModelWorldMatrix * occVertex;
|
||||||
|
// where:
|
||||||
|
// occProjectionMatrix - matrix defining orthographic/perspective/stereographic projection
|
||||||
|
// occWorldViewMatrix - world-view matrix defining Camera position and orientation
|
||||||
|
// occModelWorldMatrix - model-world matrix defining Object transformation from local coordinate system to the world coordinate system
|
||||||
|
// occVertex - input vertex position
|
||||||
|
//
|
||||||
|
// Since double precision is quite expensive on modern GPUs, and not available on old hardware,
|
||||||
|
// all these values are passed with single float precision to the shader.
|
||||||
|
// As result, single precision become insufficient for handling objects far from the world origin.
|
||||||
|
//
|
||||||
|
// Several approaches can be used to solve precision issues:
|
||||||
|
// - [Broute force] migrate to double precision for all matrices and vertex position.
|
||||||
|
// This is too expensive for most hardware.
|
||||||
|
// - Store only translation part with double precision and pass it to GLSL program.
|
||||||
|
// This requires modified GLSL programs for computing transformation
|
||||||
|
// and extra packing mechanism for hardware not supporting double precision natively.
|
||||||
|
// This solution is less expensive then previous one.
|
||||||
|
// - Move translation part of occModelWorldMatrix into occWorldViewMatrix.
|
||||||
|
// The main idea here is that while moving Camera towards the object,
|
||||||
|
// Camera translation part and Object translation part will compensate each other
|
||||||
|
// to fit into single float precision.
|
||||||
|
// But this operation should be performed with double precision - this is why we are moving
|
||||||
|
// translation part of occModelWorldMatrix to occWorldViewMatrix.
|
||||||
|
//
|
||||||
|
// All approaches might be useful in different scenarios, but for the moment we consider the last one as main scenario.
|
||||||
|
// Here we do the trick:
|
||||||
|
// - OpenGl_Layer defines the Local Origin, which is expected to be the center of objects stored within it.
|
||||||
|
// This Local Origin is included into occWorldViewMatrix during rendering.
|
||||||
|
// - OpenGl_Structure defines Object local transformation occModelWorldMatrix with subtracted Local Origin of the Layer.
|
||||||
|
// This means that Object itself should be defined within either Local Transformation equal or near to Local Origin of the Layer.
|
||||||
|
theWorkspace->View()->SetLocalOrigin (aLayerSettings.Origin());
|
||||||
|
|
||||||
|
NCollection_Mat4<Standard_Real> aWorldView = aWorldCamera->OrientationMatrix();
|
||||||
|
Graphic3d_TransformUtils::Translate (aWorldView, aLayerSettings.Origin().X(), aLayerSettings.Origin().Y(), aLayerSettings.Origin().Z());
|
||||||
|
|
||||||
|
NCollection_Mat4<Standard_ShortReal> aWorldViewF;
|
||||||
|
aWorldViewF.ConvertFrom (aWorldView);
|
||||||
|
aCtx->WorldViewState.SetCurrent (aWorldViewF);
|
||||||
|
aCtx->ShaderManager()->UpdateClippingState();
|
||||||
|
aCtx->ShaderManager()->UpdateLightSourceState();
|
||||||
|
}
|
||||||
|
|
||||||
|
// render priority list
|
||||||
|
const Standard_Integer aViewId = theWorkspace->View()->Identification();
|
||||||
|
for (Graphic3d_ArrayOfIndexedMapOfStructure::Iterator aMapIter (theLayer.ArrayOfStructures()); aMapIter.More(); aMapIter.Next())
|
||||||
|
{
|
||||||
|
const Graphic3d_IndexedMapOfStructure& aStructures = aMapIter.Value();
|
||||||
|
for (OpenGl_Structure::StructIterator aStructIter (aStructures); aStructIter.More(); aStructIter.Next())
|
||||||
|
{
|
||||||
|
const OpenGl_Structure* aStruct = aStructIter.Value();
|
||||||
|
if (aStruct->IsCulled()
|
||||||
|
|| !aStruct->IsVisible (aViewId))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
aStruct->Render (theWorkspace);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hasOwnLights)
|
||||||
|
{
|
||||||
|
aManager->UpdateLightSourceStateTo (aLightsBack);
|
||||||
|
}
|
||||||
|
if (hasLocalCS)
|
||||||
|
{
|
||||||
|
aCtx->ShaderManager()->RevertClippingState();
|
||||||
|
aCtx->ShaderManager()->UpdateLightSourceState();
|
||||||
|
|
||||||
|
aCtx->WorldViewState.SetCurrent (aWorldCamera->OrientationMatrixF());
|
||||||
|
theWorkspace->View() ->SetLocalOrigin (gp_XYZ (0.0, 0.0, 0.0));
|
||||||
|
}
|
||||||
|
|
||||||
|
// always restore polygon offset between layers rendering
|
||||||
|
theWorkspace->SetDefaultPolygonOffset (anAppliedOffsetParams);
|
||||||
|
|
||||||
|
// restore environment texture
|
||||||
|
if (!aLayerSettings.UseEnvironmentTexture())
|
||||||
|
{
|
||||||
|
theWorkspace->SetEnvironmentTexture (anEnvironmentTexture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : Render
|
//function : Render
|
||||||
//purpose :
|
//purpose :
|
||||||
@ -652,7 +795,7 @@ void OpenGl_LayerList::Render (const Handle(OpenGl_Workspace)& theWorkspace,
|
|||||||
// the transparency post-processing stack.
|
// the transparency post-processing stack.
|
||||||
theWorkspace->ResetSkippedCounter();
|
theWorkspace->ResetSkippedCounter();
|
||||||
|
|
||||||
aLayer.Render (theWorkspace, aDefaultSettings);
|
renderLayer (theWorkspace, aDefaultSettings, aLayer);
|
||||||
|
|
||||||
if (aPassIter != 0
|
if (aPassIter != 0
|
||||||
&& theWorkspace->NbSkippedTransparentElements() > 0)
|
&& theWorkspace->NbSkippedTransparentElements() > 0)
|
||||||
@ -751,7 +894,7 @@ void OpenGl_LayerList::renderTransparent (const Handle(OpenGl_Workspace)& theW
|
|||||||
|
|
||||||
for (; theLayerIter != myTransparentToProcess.Back(); ++theLayerIter)
|
for (; theLayerIter != myTransparentToProcess.Back(); ++theLayerIter)
|
||||||
{
|
{
|
||||||
(*theLayerIter)->Render (theWorkspace, aGlobalSettings);
|
renderLayer (theWorkspace, aGlobalSettings, *(*theLayerIter));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Revert state of rendering.
|
// Revert state of rendering.
|
||||||
|
@ -19,12 +19,15 @@
|
|||||||
#include <OpenGl_Layer.hxx>
|
#include <OpenGl_Layer.hxx>
|
||||||
#include <OpenGl_LayerFilter.hxx>
|
#include <OpenGl_LayerFilter.hxx>
|
||||||
|
|
||||||
|
#include <Graphic3d_ZLayerId.hxx>
|
||||||
#include <NCollection_Array1.hxx>
|
#include <NCollection_Array1.hxx>
|
||||||
#include <NCollection_Handle.hxx>
|
#include <NCollection_Handle.hxx>
|
||||||
#include <NCollection_Sequence.hxx>
|
#include <NCollection_Sequence.hxx>
|
||||||
#include <NCollection_DataMap.hxx>
|
#include <NCollection_DataMap.hxx>
|
||||||
|
|
||||||
class OpenGl_Structure;
|
class OpenGl_Structure;
|
||||||
|
class OpenGl_Workspace;
|
||||||
|
struct OpenGl_GlobalLayerSettings;
|
||||||
|
|
||||||
typedef NCollection_Sequence<Handle(OpenGl_Layer)> OpenGl_SequenceOfLayers;
|
typedef NCollection_Sequence<Handle(OpenGl_Layer)> OpenGl_SequenceOfLayers;
|
||||||
typedef NCollection_DataMap<int, int> OpenGl_LayerSeqIds;
|
typedef NCollection_DataMap<int, int> OpenGl_LayerSeqIds;
|
||||||
@ -124,14 +127,14 @@ protected:
|
|||||||
class OpenGl_LayerStack
|
class OpenGl_LayerStack
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef NCollection_Array1<const OpenGl_Layer*>::iterator iterator;
|
typedef NCollection_Array1<const Graphic3d_Layer*>::iterator iterator;
|
||||||
|
|
||||||
//! Reallocate internal buffer of the stack.
|
//! Reallocate internal buffer of the stack.
|
||||||
void Allocate (Standard_Integer theSize)
|
void Allocate (Standard_Integer theSize)
|
||||||
{
|
{
|
||||||
if (theSize > 0)
|
if (theSize > 0)
|
||||||
{
|
{
|
||||||
myStackSpace = new NCollection_Array1<const OpenGl_Layer*> (1, theSize);
|
myStackSpace = new NCollection_Array1<const Graphic3d_Layer*> (1, theSize);
|
||||||
myStackSpace->Init (NULL);
|
myStackSpace->Init (NULL);
|
||||||
myBackPtr = myStackSpace->begin();
|
myBackPtr = myStackSpace->begin();
|
||||||
}
|
}
|
||||||
@ -185,6 +188,11 @@ protected:
|
|||||||
OpenGl_FrameBuffer* theReadDrawFbo,
|
OpenGl_FrameBuffer* theReadDrawFbo,
|
||||||
OpenGl_FrameBuffer* theOitAccumFbo) const;
|
OpenGl_FrameBuffer* theOitAccumFbo) const;
|
||||||
|
|
||||||
|
// Render structures within specified layer.
|
||||||
|
void renderLayer (const Handle(OpenGl_Workspace)& theWorkspace,
|
||||||
|
const OpenGl_GlobalLayerSettings& theDefaultSettings,
|
||||||
|
const Graphic3d_Layer& theLayer) const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
// number of structures temporary put to default layer
|
// number of structures temporary put to default layer
|
||||||
|
@ -107,7 +107,6 @@ OpenGl_Structure::OpenGl_Structure (const Handle(Graphic3d_StructureManager)& th
|
|||||||
myInstancedStructure (NULL),
|
myInstancedStructure (NULL),
|
||||||
myIsRaytracable (Standard_False),
|
myIsRaytracable (Standard_False),
|
||||||
myModificationState (0),
|
myModificationState (0),
|
||||||
myIsCulled (Standard_True),
|
|
||||||
myIsMirrored (Standard_False)
|
myIsMirrored (Standard_False)
|
||||||
{
|
{
|
||||||
updateLayerTransformation();
|
updateLayerTransformation();
|
||||||
|
@ -29,33 +29,23 @@
|
|||||||
|
|
||||||
#include <NCollection_List.hxx>
|
#include <NCollection_List.hxx>
|
||||||
|
|
||||||
class OpenGl_Structure;
|
|
||||||
class OpenGl_GraphicDriver;
|
class OpenGl_GraphicDriver;
|
||||||
|
|
||||||
|
DEFINE_STANDARD_HANDLE(OpenGl_Structure, Graphic3d_CStructure)
|
||||||
typedef NCollection_List<const OpenGl_Structure* > OpenGl_ListOfStructure;
|
typedef NCollection_List<const OpenGl_Structure* > OpenGl_ListOfStructure;
|
||||||
|
|
||||||
//! Implementation of low-level graphic structure.
|
//! Implementation of low-level graphic structure.
|
||||||
class OpenGl_Structure : public Graphic3d_CStructure
|
class OpenGl_Structure : public Graphic3d_CStructure
|
||||||
{
|
{
|
||||||
friend class OpenGl_Group;
|
friend class OpenGl_Group;
|
||||||
|
DEFINE_STANDARD_RTTIEXT(OpenGl_Structure, Graphic3d_CStructure)
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
//! Auxiliary wrapper to iterate OpenGl_Structure sequence.
|
||||||
|
typedef SubclassStructIterator<OpenGl_Structure> StructIterator;
|
||||||
|
|
||||||
//! Auxiliary wrapper to iterate OpenGl_Group sequence.
|
//! Auxiliary wrapper to iterate OpenGl_Group sequence.
|
||||||
class GroupIterator
|
typedef SubclassGroupIterator<OpenGl_Group> GroupIterator;
|
||||||
{
|
|
||||||
|
|
||||||
public:
|
|
||||||
GroupIterator (const Graphic3d_SequenceOfGroup& theGroups) : myIter (theGroups) {}
|
|
||||||
Standard_Boolean More() const { return myIter.More(); }
|
|
||||||
void Next() { myIter.Next(); }
|
|
||||||
const OpenGl_Group* Value() const { return (const OpenGl_Group* )(myIter.Value().operator->()); }
|
|
||||||
OpenGl_Group* ChangeValue() { return (OpenGl_Group* )(myIter.ChangeValue().operator->()); }
|
|
||||||
|
|
||||||
private:
|
|
||||||
Graphic3d_SequenceOfGroup::Iterator myIter;
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -115,28 +105,6 @@ public:
|
|||||||
//! Releases structure resources.
|
//! Releases structure resources.
|
||||||
virtual void Release (const Handle(OpenGl_Context)& theGlCtx);
|
virtual void Release (const Handle(OpenGl_Context)& theGlCtx);
|
||||||
|
|
||||||
//! Marks structure as culled/not culled - note that IsAlwaysRendered() is ignored here!
|
|
||||||
void SetCulled (Standard_Boolean theIsCulled) const { myIsCulled = theIsCulled; }
|
|
||||||
|
|
||||||
//! Marks structure as overlapping the current view volume one.
|
|
||||||
//! The method is called during traverse of BVH tree.
|
|
||||||
void MarkAsNotCulled() const { myIsCulled = Standard_False; }
|
|
||||||
|
|
||||||
//! Returns Standard_False if the structure hits the current view volume, otherwise
|
|
||||||
//! returns Standard_True. The default value for all structures before each traverse
|
|
||||||
//! of BVH tree is Standard_True.
|
|
||||||
Standard_Boolean IsCulled() const { return myIsCulled; }
|
|
||||||
|
|
||||||
//! Checks if the structure should be included into BVH tree or not.
|
|
||||||
Standard_Boolean IsAlwaysRendered() const
|
|
||||||
{
|
|
||||||
return IsInfinite
|
|
||||||
|| IsForHighlight
|
|
||||||
|| IsMutable
|
|
||||||
|| Is2dText
|
|
||||||
|| (!myTrsfPers.IsNull() && myTrsfPers->IsTrihedronOr2d());
|
|
||||||
}
|
|
||||||
|
|
||||||
//! This method releases GL resources without actual elements destruction.
|
//! This method releases GL resources without actual elements destruction.
|
||||||
//! As result structure could be correctly destroyed layer without GL context
|
//! As result structure could be correctly destroyed layer without GL context
|
||||||
//! (after last window was closed for example).
|
//! (after last window was closed for example).
|
||||||
@ -158,7 +126,7 @@ public:
|
|||||||
Standard_Boolean IsRaytracable() const;
|
Standard_Boolean IsRaytracable() const;
|
||||||
|
|
||||||
//! Update render transformation matrix.
|
//! Update render transformation matrix.
|
||||||
Standard_EXPORT void updateLayerTransformation();
|
Standard_EXPORT virtual void updateLayerTransformation() Standard_OVERRIDE;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
@ -184,16 +152,8 @@ protected:
|
|||||||
mutable Standard_Boolean myIsRaytracable;
|
mutable Standard_Boolean myIsRaytracable;
|
||||||
mutable Standard_Size myModificationState;
|
mutable Standard_Size myModificationState;
|
||||||
|
|
||||||
mutable Standard_Boolean myIsCulled; //!< A status specifying is structure needs to be rendered after BVH tree traverse.
|
|
||||||
|
|
||||||
Standard_Boolean myIsMirrored; //!< Used to tell OpenGl to interpret polygons in clockwise order.
|
Standard_Boolean myIsMirrored; //!< Used to tell OpenGl to interpret polygons in clockwise order.
|
||||||
|
|
||||||
public:
|
|
||||||
|
|
||||||
DEFINE_STANDARD_RTTIEXT(OpenGl_Structure,Graphic3d_CStructure) // Type definition
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
DEFINE_STANDARD_HANDLE(OpenGl_Structure, Graphic3d_CStructure)
|
|
||||||
|
|
||||||
#endif // OpenGl_Structure_Header
|
#endif // OpenGl_Structure_Header
|
||||||
|
@ -51,8 +51,6 @@ OpenGl_View::OpenGl_View (const Handle(Graphic3d_StructureManager)& theMgr,
|
|||||||
myCaps (theCaps),
|
myCaps (theCaps),
|
||||||
myWasRedrawnGL (Standard_False),
|
myWasRedrawnGL (Standard_False),
|
||||||
myBackfacing (Graphic3d_TOBM_AUTOMATIC),
|
myBackfacing (Graphic3d_TOBM_AUTOMATIC),
|
||||||
myBgColor (Quantity_NOC_BLACK),
|
|
||||||
myCamera (new Graphic3d_Camera()),
|
|
||||||
myToShowGradTrihedron (false),
|
myToShowGradTrihedron (false),
|
||||||
myZLayers (Structure_MAX_PRIORITY - Structure_MIN_PRIORITY + 1),
|
myZLayers (Structure_MAX_PRIORITY - Structure_MIN_PRIORITY + 1),
|
||||||
myStateCounter (theCounter),
|
myStateCounter (theCounter),
|
||||||
@ -192,15 +190,6 @@ void OpenGl_View::Remove()
|
|||||||
Graphic3d_CView::Remove();
|
Graphic3d_CView::Remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : SetTextureEnv
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void OpenGl_View::SetCamera(const Handle(Graphic3d_Camera)& theCamera)
|
|
||||||
{
|
|
||||||
myCamera = theCamera;
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : SetLocalOrigin
|
// function : SetLocalOrigin
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -420,24 +409,6 @@ Standard_Boolean OpenGl_View::BufferDump (Image_PixMap& theImage, const Graphic3
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : Background
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
Aspect_Background OpenGl_View::Background() const
|
|
||||||
{
|
|
||||||
return Aspect_Background (myBgColor.GetRGB());
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : SetBackground
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void OpenGl_View::SetBackground (const Aspect_Background& theBackground)
|
|
||||||
{
|
|
||||||
myBgColor.SetRGB (theBackground.Color());
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : GradientBackground
|
// function : GradientBackground
|
||||||
// purpose :
|
// purpose :
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
#include <Aspect_GradientFillMethod.hxx>
|
#include <Aspect_GradientFillMethod.hxx>
|
||||||
|
|
||||||
#include <Graphic3d_CView.hxx>
|
#include <Graphic3d_CView.hxx>
|
||||||
|
#include <Graphic3d_CullingTool.hxx>
|
||||||
#include <Graphic3d_GraduatedTrihedron.hxx>
|
#include <Graphic3d_GraduatedTrihedron.hxx>
|
||||||
#include <Graphic3d_SequenceOfHClipPlane.hxx>
|
#include <Graphic3d_SequenceOfHClipPlane.hxx>
|
||||||
#include <Graphic3d_ToneMappingMethod.hxx>
|
#include <Graphic3d_ToneMappingMethod.hxx>
|
||||||
@ -37,7 +38,6 @@
|
|||||||
|
|
||||||
#include <OpenGl_Aspects.hxx>
|
#include <OpenGl_Aspects.hxx>
|
||||||
#include <OpenGl_BackgroundArray.hxx>
|
#include <OpenGl_BackgroundArray.hxx>
|
||||||
#include <OpenGl_BVHTreeSelector.hxx>
|
|
||||||
#include <OpenGl_Context.hxx>
|
#include <OpenGl_Context.hxx>
|
||||||
#include <OpenGl_FrameBuffer.hxx>
|
#include <OpenGl_FrameBuffer.hxx>
|
||||||
#include <OpenGl_FrameStatsPrs.hxx>
|
#include <OpenGl_FrameStatsPrs.hxx>
|
||||||
@ -127,21 +127,6 @@ public:
|
|||||||
//! Return true if view content cache has been invalidated.
|
//! Return true if view content cache has been invalidated.
|
||||||
virtual Standard_Boolean IsInvalidated() Standard_OVERRIDE { return !myBackBufferRestored; }
|
virtual Standard_Boolean IsInvalidated() Standard_OVERRIDE { return !myBackBufferRestored; }
|
||||||
|
|
||||||
//! Returns data of a graduated trihedron
|
|
||||||
const Graphic3d_GraduatedTrihedron& GetGraduatedTrihedron() Standard_OVERRIDE
|
|
||||||
{ return myGTrihedronData; }
|
|
||||||
|
|
||||||
//! Displays Graduated Trihedron.
|
|
||||||
Standard_EXPORT virtual void GraduatedTrihedronDisplay (const Graphic3d_GraduatedTrihedron& theTrihedronData) Standard_OVERRIDE;
|
|
||||||
|
|
||||||
//! Erases Graduated Trihedron.
|
|
||||||
Standard_EXPORT virtual void GraduatedTrihedronErase() Standard_OVERRIDE;
|
|
||||||
|
|
||||||
//! Sets minimum and maximum points of scene bounding box for Graduated Trihedron stored in graphic view object.
|
|
||||||
//! @param theMin [in] the minimum point of scene.
|
|
||||||
//! @param theMax [in] the maximum point of scene.
|
|
||||||
Standard_EXPORT virtual void GraduatedTrihedronMinMaxValues (const Graphic3d_Vec3 theMin, const Graphic3d_Vec3 theMax) Standard_OVERRIDE;
|
|
||||||
|
|
||||||
//! Dump active rendering buffer into specified memory buffer.
|
//! Dump active rendering buffer into specified memory buffer.
|
||||||
//! In Ray-Tracing allow to get a raw HDR buffer using Graphic3d_BT_RGB_RayTraceHdrLeft buffer type,
|
//! In Ray-Tracing allow to get a raw HDR buffer using Graphic3d_BT_RGB_RayTraceHdrLeft buffer type,
|
||||||
//! only Left view will be dumped ignoring stereoscopic parameter.
|
//! only Left view will be dumped ignoring stereoscopic parameter.
|
||||||
@ -211,12 +196,6 @@ public:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//! Returns background fill color.
|
|
||||||
Standard_EXPORT virtual Aspect_Background Background() const Standard_OVERRIDE;
|
|
||||||
|
|
||||||
//! Sets background fill color.
|
|
||||||
Standard_EXPORT virtual void SetBackground (const Aspect_Background& theBackground) Standard_OVERRIDE;
|
|
||||||
|
|
||||||
//! Returns gradient background fill colors.
|
//! Returns gradient background fill colors.
|
||||||
Standard_EXPORT virtual Aspect_GradientBackground GradientBackground() const Standard_OVERRIDE;
|
Standard_EXPORT virtual Aspect_GradientBackground GradientBackground() const Standard_OVERRIDE;
|
||||||
|
|
||||||
@ -247,18 +226,12 @@ public:
|
|||||||
//! Sets backfacing model for the view.
|
//! Sets backfacing model for the view.
|
||||||
virtual void SetBackfacingModel (const Graphic3d_TypeOfBackfacingModel theModel) Standard_OVERRIDE { myBackfacing = theModel; }
|
virtual void SetBackfacingModel (const Graphic3d_TypeOfBackfacingModel theModel) Standard_OVERRIDE { myBackfacing = theModel; }
|
||||||
|
|
||||||
//! Returns camera object of the view.
|
|
||||||
virtual const Handle(Graphic3d_Camera)& Camera() const Standard_OVERRIDE { return myCamera; }
|
|
||||||
|
|
||||||
//! Returns local camera origin currently set for rendering, might be modified during rendering.
|
//! Returns local camera origin currently set for rendering, might be modified during rendering.
|
||||||
const gp_XYZ& LocalOrigin() const { return myLocalOrigin; }
|
const gp_XYZ& LocalOrigin() const { return myLocalOrigin; }
|
||||||
|
|
||||||
//! Setup local camera origin currently set for rendering.
|
//! Setup local camera origin currently set for rendering.
|
||||||
Standard_EXPORT void SetLocalOrigin (const gp_XYZ& theOrigin);
|
Standard_EXPORT void SetLocalOrigin (const gp_XYZ& theOrigin);
|
||||||
|
|
||||||
//! Sets camera used by the view.
|
|
||||||
Standard_EXPORT virtual void SetCamera (const Handle(Graphic3d_Camera)& theCamera) Standard_OVERRIDE;
|
|
||||||
|
|
||||||
//! Returns list of lights of the view.
|
//! Returns list of lights of the view.
|
||||||
virtual const Handle(Graphic3d_LightSet)& Lights() const Standard_OVERRIDE { return myLights; }
|
virtual const Handle(Graphic3d_LightSet)& Lights() const Standard_OVERRIDE { return myLights; }
|
||||||
|
|
||||||
@ -319,7 +292,7 @@ public:
|
|||||||
|
|
||||||
//! Returns selector for BVH tree, providing a possibility to store information
|
//! Returns selector for BVH tree, providing a possibility to store information
|
||||||
//! about current view volume and to detect which objects are overlapping it.
|
//! about current view volume and to detect which objects are overlapping it.
|
||||||
const OpenGl_BVHTreeSelector& BVHTreeSelector() const { return myBVHSelector; }
|
const Graphic3d_CullingTool& BVHTreeSelector() const { return myBVHSelector; }
|
||||||
|
|
||||||
//! Returns true if there are immediate structures to display
|
//! Returns true if there are immediate structures to display
|
||||||
bool HasImmediateStructures() const
|
bool HasImmediateStructures() const
|
||||||
@ -327,6 +300,19 @@ public:
|
|||||||
return myZLayers.NbImmediateStructures() != 0;
|
return myZLayers.NbImmediateStructures() != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public: //! @name obsolete Graduated Trihedron functionality
|
||||||
|
|
||||||
|
//! Displays Graduated Trihedron.
|
||||||
|
Standard_EXPORT virtual void GraduatedTrihedronDisplay (const Graphic3d_GraduatedTrihedron& theTrihedronData) Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Erases Graduated Trihedron.
|
||||||
|
Standard_EXPORT virtual void GraduatedTrihedronErase() Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Sets minimum and maximum points of scene bounding box for Graduated Trihedron stored in graphic view object.
|
||||||
|
//! @param theMin [in] the minimum point of scene.
|
||||||
|
//! @param theMax [in] the maximum point of scene.
|
||||||
|
Standard_EXPORT virtual void GraduatedTrihedronMinMaxValues (const Graphic3d_Vec3 theMin, const Graphic3d_Vec3 theMax) Standard_OVERRIDE;
|
||||||
|
|
||||||
protected: //! @name Internal methods for managing GL resources
|
protected: //! @name Internal methods for managing GL resources
|
||||||
|
|
||||||
//! Initializes OpenGl resource for environment texture.
|
//! Initializes OpenGl resource for environment texture.
|
||||||
@ -458,9 +444,7 @@ protected:
|
|||||||
Standard_Boolean myWasRedrawnGL;
|
Standard_Boolean myWasRedrawnGL;
|
||||||
|
|
||||||
Graphic3d_TypeOfBackfacingModel myBackfacing;
|
Graphic3d_TypeOfBackfacingModel myBackfacing;
|
||||||
Quantity_ColorRGBA myBgColor;
|
|
||||||
Handle(Graphic3d_SequenceOfHClipPlane) myClipPlanes;
|
Handle(Graphic3d_SequenceOfHClipPlane) myClipPlanes;
|
||||||
Handle(Graphic3d_Camera) myCamera;
|
|
||||||
gp_XYZ myLocalOrigin;
|
gp_XYZ myLocalOrigin;
|
||||||
Handle(OpenGl_FrameBuffer) myFBO;
|
Handle(OpenGl_FrameBuffer) myFBO;
|
||||||
Standard_Boolean myToShowGradTrihedron;
|
Standard_Boolean myToShowGradTrihedron;
|
||||||
@ -484,7 +468,7 @@ protected:
|
|||||||
StateInfo myLastLightSourceState;
|
StateInfo myLastLightSourceState;
|
||||||
|
|
||||||
//! Is needed for selection of overlapping objects and storage of the current view volume
|
//! Is needed for selection of overlapping objects and storage of the current view volume
|
||||||
OpenGl_BVHTreeSelector myBVHSelector;
|
Graphic3d_CullingTool myBVHSelector;
|
||||||
|
|
||||||
OpenGl_GraduatedTrihedron myGraduatedTrihedron;
|
OpenGl_GraduatedTrihedron myGraduatedTrihedron;
|
||||||
OpenGl_FrameStatsPrs myFrameStatsPrs;
|
OpenGl_FrameStatsPrs myFrameStatsPrs;
|
||||||
|
@ -111,11 +111,11 @@ Standard_Boolean OpenGl_View::updateRaytraceGeometry (const RaytraceUpdateMode
|
|||||||
|
|
||||||
if (aLayer.NbStructures() != 0)
|
if (aLayer.NbStructures() != 0)
|
||||||
{
|
{
|
||||||
const OpenGl_ArrayOfIndexedMapOfStructure& aStructArray = aLayer.ArrayOfStructures();
|
const Graphic3d_ArrayOfIndexedMapOfStructure& aStructArray = aLayer.ArrayOfStructures();
|
||||||
|
|
||||||
for (Standard_Integer anIndex = 0; anIndex < aStructArray.Length(); ++anIndex)
|
for (Standard_Integer anIndex = 0; anIndex < aStructArray.Length(); ++anIndex)
|
||||||
{
|
{
|
||||||
for (OpenGl_IndexedMapOfStructure::Iterator aStructIt (aStructArray (anIndex)); aStructIt.More(); aStructIt.Next())
|
for (OpenGl_Structure::StructIterator aStructIt (aStructArray.Value (anIndex)); aStructIt.More(); aStructIt.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_Structure* aStructure = aStructIt.Value();
|
const OpenGl_Structure* aStructure = aStructIt.Value();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user