1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0030668: Visualization - revise adding ZLayer API

V3d_Viewer::AddZLayer() has been replaced by
V3d_Viewer::InsertLayerBefore() and V3d_Viewer::InsertLayerAfter() methods
allowing to specify Layer settings and index of existing layer to insert new one before/after.
The behavior of V3d_Viewer::AddZLayer() has been adjusted to append
new Layer before Graphic3d_ZLayerId_Top
(between Graphic3d_ZLayerId_Default and Graphic3d_ZLayerId_Top).

Graphic3d_Layer now provides LayerId() property.
Graphic3d_ZLayerSettings has been extended with IsRaytracable() property;
Ray-Tracing now processes multiple layers instead of Graphic3d_ZLayerId_Default.

Moved some methods from OpenGl_View to the base class Graphic3d_CView.
This commit is contained in:
kgv 2019-07-15 21:06:05 +03:00 committed by bugmaster
parent 6b9b7e3c92
commit 1c728f2d6d
24 changed files with 684 additions and 560 deletions

View File

@ -48,25 +48,6 @@ Aspect_GenId::Aspect_GenId (const Standard_Integer theLow,
} }
} }
// =======================================================================
// function : HasFree
// purpose :
// =======================================================================
Standard_Boolean Aspect_GenId::HasFree() const
{
return myFreeCount > 0
|| myFreeIds.Extent() > 0;
}
// =======================================================================
// function : Available
// purpose :
// =======================================================================
Standard_Integer Aspect_GenId::Available() const
{
return myFreeCount + myFreeIds.Extent();
}
// ======================================================================= // =======================================================================
// function : Free // function : Free
// purpose : // purpose :
@ -99,41 +80,37 @@ void Aspect_GenId::Free (const Standard_Integer theId)
} }
// ======================================================================= // =======================================================================
// function : Lower // function : Next
// purpose : // purpose :
// ======================================================================= // =======================================================================
Standard_Integer Aspect_GenId::Lower() const Standard_Integer Aspect_GenId::Next()
{ {
return myLowerBound; Standard_Integer aNewId = 0;
if (!Next (aNewId))
{
throw Aspect_IdentDefinitionError("Aspect_GenId::Next(), Error: Available == 0");
}
return aNewId;
} }
// ======================================================================= // =======================================================================
// function : Next // function : Next
// purpose : // purpose :
// ======================================================================= // =======================================================================
Standard_Integer Aspect_GenId::Next() Standard_Boolean Aspect_GenId::Next (Standard_Integer& theId)
{ {
if (!myFreeIds.IsEmpty()) if (!myFreeIds.IsEmpty())
{ {
const Standard_Integer anId = myFreeIds.First(); theId = myFreeIds.First();
myFreeIds.RemoveFirst(); myFreeIds.RemoveFirst();
return anId; return Standard_True;
} }
else if (myFreeCount < 1) else if (myFreeCount < 1)
{ {
throw Aspect_IdentDefinitionError("GenId Next Error: Available == 0"); return Standard_False;
} }
--myFreeCount; --myFreeCount;
const Standard_Integer anId = myLowerBound + myLength - myFreeCount - 1; theId = myLowerBound + myLength - myFreeCount - 1;
return anId; return Standard_True;
}
// =======================================================================
// function : Upper
// purpose :
// =======================================================================
Standard_Integer Aspect_GenId::Upper() const
{
return myUpperBound;
} }

View File

@ -49,47 +49,38 @@ public:
Standard_EXPORT void Free (const Standard_Integer theId); Standard_EXPORT void Free (const Standard_Integer theId);
//! Returns true if there are available identifiers in range. //! Returns true if there are available identifiers in range.
Standard_EXPORT Standard_Boolean HasFree() const; Standard_Boolean HasFree() const
{
return myFreeCount > 0
|| myFreeIds.Extent() > 0;
}
//! Returns the number of available identifiers. //! Returns the number of available identifiers.
Standard_EXPORT Standard_Integer Available() const; Standard_Integer Available() const { return myFreeCount + myFreeIds.Extent(); }
//! Returns the lower identifier in range. //! Returns the lower identifier in range.
Standard_EXPORT Standard_Integer Lower() const; Standard_Integer Lower() const { return myLowerBound; }
//! Returns the next available identifier. //! Returns the next available identifier.
//! Warning: Raises IdentDefinitionError if all identifiers are busy. //! Warning: Raises IdentDefinitionError if all identifiers are busy.
Standard_EXPORT Standard_Integer Next(); Standard_EXPORT Standard_Integer Next();
//! Generates the next available identifier.
//! @param theId [out] generated identifier
//! @return FALSE if all identifiers are busy.
Standard_EXPORT Standard_Boolean Next (Standard_Integer& theId);
//! Returns the upper identifier in range. //! Returns the upper identifier in range.
Standard_EXPORT Standard_Integer Upper() const; Standard_Integer Upper() const { return myUpperBound; }
protected:
private: private:
Standard_Integer myFreeCount; Standard_Integer myFreeCount;
Standard_Integer myLength; Standard_Integer myLength;
Standard_Integer myLowerBound; Standard_Integer myLowerBound;
Standard_Integer myUpperBound; Standard_Integer myUpperBound;
TColStd_ListOfInteger myFreeIds; TColStd_ListOfInteger myFreeIds;
}; };
#endif // _Aspect_GenId_HeaderFile #endif // _Aspect_GenId_HeaderFile

View File

@ -44,22 +44,17 @@ D3DHost_GraphicDriver::~D3DHost_GraphicDriver()
} }
// ======================================================================= // =======================================================================
// function : View // function : CreateView
// purpose : // purpose :
// ======================================================================= // =======================================================================
Handle(Graphic3d_CView) D3DHost_GraphicDriver::CreateView (const Handle(Graphic3d_StructureManager)& theMgr) Handle(Graphic3d_CView) D3DHost_GraphicDriver::CreateView (const Handle(Graphic3d_StructureManager)& theMgr)
{ {
Handle(D3DHost_View) aView = new D3DHost_View (theMgr, this, myCaps, &myStateCounter); Handle(D3DHost_View) aView = new D3DHost_View (theMgr, this, myCaps, &myStateCounter);
myMapOfView.Add (aView); myMapOfView.Add (aView);
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
for (TColStd_SequenceOfInteger::Iterator aLayerIt (myLayerSeq); aLayerIt.More(); aLayerIt.Next())
{ {
const Graphic3d_ZLayerId aLayerID = aLayerIt.Value(); const Handle(Graphic3d_Layer)& aLayer = aLayerIter.Value();
const Graphic3d_ZLayerSettings& aSettings = myMapOfZLayerSettings.Find (aLayerID); aView->InsertLayerAfter (aLayer->LayerId(), aLayer->LayerSettings(), Graphic3d_ZLayerId_UNKNOWN);
aView->AddZLayer (aLayerID);
aView->SetZLayerSettings (aLayerID, aSettings);
} }
return aView; return aView;
} }

View File

@ -12,22 +12,13 @@
// commercial license or contractual agreement. // commercial license or contractual agreement.
#include <Graphic3d_CView.hxx> #include <Graphic3d_CView.hxx>
#include <Graphic3d_Layer.hxx>
#include <Graphic3d_MapIteratorOfMapOfStructure.hxx> #include <Graphic3d_MapIteratorOfMapOfStructure.hxx>
#include <Graphic3d_StructureManager.hxx> #include <Graphic3d_StructureManager.hxx>
IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_CView,Graphic3d_DataStructureManager) IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_CView,Graphic3d_DataStructureManager)
namespace
{
static const int THE_DEFAULT_LAYERS[] = { Graphic3d_ZLayerId_Top,
Graphic3d_ZLayerId_Topmost,
Graphic3d_ZLayerId_BotOSD,
Graphic3d_ZLayerId_TopOSD };
static const int THE_NB_DEFAULT_LAYERS = sizeof(THE_DEFAULT_LAYERS) / sizeof(*THE_DEFAULT_LAYERS);
}
//======================================================================= //=======================================================================
//function : Constructor //function : Constructor
//purpose : //purpose :
@ -357,6 +348,28 @@ void Graphic3d_CView::Update (const Graphic3d_ZLayerId theLayerId)
InvalidateZLayerBoundingBox (theLayerId); InvalidateZLayerBoundingBox (theLayerId);
} }
// =======================================================================
// function : InvalidateZLayerBoundingBox
// purpose :
// =======================================================================
void Graphic3d_CView::InvalidateZLayerBoundingBox (const Graphic3d_ZLayerId theLayerId)
{
if (Handle(Graphic3d_Layer) aLayer = Layer (theLayerId))
{
aLayer->InvalidateBoundingBox();
return;
}
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (Layers()); aLayerIter.More(); aLayerIter.Next())
{
const Handle(Graphic3d_Layer)& aLayer = aLayerIter.Value();
if (aLayer->NbOfTransformPersistenceObjects() > 0)
{
aLayer->InvalidateBoundingBox();
}
}
}
// ======================================================================= // =======================================================================
// function : ContainsFacet // function : ContainsFacet
// purpose : // purpose :
@ -407,40 +420,25 @@ void Graphic3d_CView::DisplayedStructures (Graphic3d_MapOfStructure& theStructur
// ======================================================================= // =======================================================================
Bnd_Box Graphic3d_CView::MinMaxValues (const Standard_Boolean theToIncludeAuxiliary) const Bnd_Box Graphic3d_CView::MinMaxValues (const Standard_Boolean theToIncludeAuxiliary) const
{ {
Bnd_Box aResult;
if (!IsDefined()) if (!IsDefined())
{ {
return aResult; return Bnd_Box();
} }
Handle(Graphic3d_Camera) aCamera = Camera(); const Handle(Graphic3d_Camera)& aCamera = Camera();
Standard_Integer aWinWidth = 0; Graphic3d_Vec2i aWinSize;
Standard_Integer aWinHeight = 0; Window()->Size (aWinSize.x(), aWinSize.y());
Window()->Size (aWinWidth, aWinHeight); Bnd_Box aResult;
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (Layers()); aLayerIter.More(); aLayerIter.Next())
for (Standard_Integer aLayer = 0; aLayer < THE_NB_DEFAULT_LAYERS; ++aLayer)
{ {
Bnd_Box aBox = ZLayerBoundingBox (THE_DEFAULT_LAYERS[aLayer], const Handle(Graphic3d_Layer)& aLayer = aLayerIter.Value();
Bnd_Box aBox = aLayer->BoundingBox (Identification(),
aCamera, aCamera,
aWinWidth, aWinSize.x(), aWinSize.y(),
aWinHeight,
theToIncludeAuxiliary); theToIncludeAuxiliary);
aResult.Add (aBox); aResult.Add (aBox);
} }
Standard_Integer aMaxZLayer = ZLayerMax();
for (Standard_Integer aLayerId = Graphic3d_ZLayerId_Default; aLayerId <= aMaxZLayer; ++aLayerId)
{
Bnd_Box aBox = ZLayerBoundingBox (aLayerId,
aCamera,
aWinWidth,
aWinHeight,
theToIncludeAuxiliary);
aResult.Add(aBox);
}
return aResult; return aResult;
} }
@ -455,21 +453,15 @@ Standard_Real Graphic3d_CView::ConsiderZoomPersistenceObjects()
return 1.0; return 1.0;
} }
Handle(Graphic3d_Camera) aCamera = Camera(); const Handle(Graphic3d_Camera)& aCamera = Camera();
Standard_Integer aWinWidth = 0; Graphic3d_Vec2i aWinSize;
Standard_Integer aWinHeight = 0; Window()->Size (aWinSize.x(), aWinSize.y());
Window()->Size (aWinWidth, aWinHeight);
Standard_Real aMaxCoef = 1.0; Standard_Real aMaxCoef = 1.0;
for (Standard_Integer aLayer = 0; aLayer < THE_NB_DEFAULT_LAYERS; ++aLayer) for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (Layers()); aLayerIter.More(); aLayerIter.Next())
{ {
aMaxCoef = Max (aMaxCoef, considerZoomPersistenceObjects (THE_DEFAULT_LAYERS[aLayer], aCamera, aWinWidth, aWinHeight)); const Handle(Graphic3d_Layer)& aLayer = aLayerIter.Value();
} aMaxCoef = Max (aMaxCoef, aLayer->considerZoomPersistenceObjects (Identification(), aCamera, aWinSize.x(), aWinSize.y()));
for (Standard_Integer aLayer = Graphic3d_ZLayerId_Default; aLayer <= ZLayerMax(); ++aLayer)
{
aMaxCoef = Max (aMaxCoef, considerZoomPersistenceObjects (aLayer, aCamera, aWinWidth, aWinHeight));
} }
return aMaxCoef; return aMaxCoef;

View File

@ -46,6 +46,7 @@
class Graphic3d_CView; class Graphic3d_CView;
class Graphic3d_GraphicDriver; class Graphic3d_GraphicDriver;
class Graphic3d_Layer;
class Graphic3d_StructureManager; class Graphic3d_StructureManager;
DEFINE_STANDARD_HANDLE (Graphic3d_CView, Graphic3d_DataStructureManager) DEFINE_STANDARD_HANDLE (Graphic3d_CView, Graphic3d_DataStructureManager)
@ -267,32 +268,34 @@ public:
//! Marks BVH tree and the set of BVH primitives of correspondent priority list with id theLayerId as outdated. //! Marks BVH tree and the set of BVH primitives of correspondent priority list with id theLayerId as outdated.
virtual void InvalidateBVHData (const Graphic3d_ZLayerId theLayerId) = 0; virtual void InvalidateBVHData (const Graphic3d_ZLayerId theLayerId) = 0;
//! Add a new top-level z layer with ID <theLayerId> for //! Add a layer to the view.
//! the view. Z layers allow drawing structures in higher layers //! @param theNewLayerId [in] id of new layer, should be > 0 (negative values are reserved for default layers).
//! in foreground of structures in lower layers. To add a structure //! @param theSettings [in] new layer settings
//! to desired layer on display it is necessary to set the layer //! @param theLayerAfter [in] id of layer to append new layer before
//! ID for the structure. virtual void InsertLayerBefore (const Graphic3d_ZLayerId theNewLayerId,
virtual void AddZLayer (const Graphic3d_ZLayerId theLayerId) = 0; const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter) = 0;
//! Add a layer to the view.
//! @param theNewLayerId [in] id of new layer, should be > 0 (negative values are reserved for default layers).
//! @param theSettings [in] new layer settings
//! @param theLayerBefore [in] id of layer to append new layer after
virtual void InsertLayerAfter (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore) = 0;
//! Returns the maximum Z layer ID. //! Returns the maximum Z layer ID.
//! First layer ID is Graphic3d_ZLayerId_Default, last ID is ZLayerMax(). //! First layer ID is Graphic3d_ZLayerId_Default, last ID is ZLayerMax().
virtual Standard_Integer ZLayerMax() const = 0; virtual Standard_Integer ZLayerMax() const = 0;
//! Returns the bounding box of all structures displayed in the Z layer. //! Returns the list of layers.
virtual void InvalidateZLayerBoundingBox (const Graphic3d_ZLayerId theLayerId) const = 0; virtual const NCollection_List<Handle(Graphic3d_Layer)>& Layers() const = 0;
//! Returns layer with given ID or NULL if undefined.
virtual Handle(Graphic3d_Layer) Layer (const Graphic3d_ZLayerId theLayerId) const = 0;
//! Returns the bounding box of all structures displayed in the Z layer. //! Returns the bounding box of all structures displayed in the Z layer.
//! @param theLayerId layer identifier Standard_EXPORT virtual void InvalidateZLayerBoundingBox (const Graphic3d_ZLayerId theLayerId);
//! @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
virtual Bnd_Box ZLayerBoundingBox (const Graphic3d_ZLayerId theLayerId,
const Handle(Graphic3d_Camera)& theCamera,
const Standard_Integer theWindowWidth,
const Standard_Integer theWindowHeight,
const Standard_Boolean theToIncludeAuxiliary) const = 0;
//! Remove Z layer from the specified view. All structures //! Remove Z layer from the specified view. All structures
//! displayed at the moment in layer will be displayed in default layer //! displayed at the moment in layer will be displayed in default layer
@ -447,12 +450,6 @@ private:
virtual void changePriority (const Handle(Graphic3d_CStructure)& theCStructure, virtual void changePriority (const Handle(Graphic3d_CStructure)& theCStructure,
const Standard_Integer theNewPriority) = 0; const Standard_Integer theNewPriority) = 0;
//! Returns zoom-scale factor.
virtual Standard_Real considerZoomPersistenceObjects (const Graphic3d_ZLayerId theLayerId,
const Handle(Graphic3d_Camera)& theCamera,
const Standard_Integer theWindowWidth,
const Standard_Integer theWindowHeight) const = 0;
protected: protected:
Standard_Integer myId; Standard_Integer myId;

View File

@ -16,6 +16,8 @@
#include <Graphic3d_GraphicDriver.hxx> #include <Graphic3d_GraphicDriver.hxx>
#include <Graphic3d_Layer.hxx>
IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_GraphicDriver,Standard_Transient) IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_GraphicDriver,Standard_Transient)
// ======================================================================= // =======================================================================
@ -25,70 +27,85 @@ 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 // default layers are always presented in display layer sequence and cannot be removed
{ {
Graphic3d_ZLayerSettings aSettings; Graphic3d_ZLayerSettings aSettings;
aSettings.SetName ("UNDERLAY");
aSettings.SetImmediate (Standard_False); aSettings.SetImmediate (Standard_False);
aSettings.SetRaytracable (Standard_False);
aSettings.SetEnvironmentTexture (Standard_False); aSettings.SetEnvironmentTexture (Standard_False);
aSettings.SetEnableDepthTest (Standard_False); aSettings.SetEnableDepthTest (Standard_False);
aSettings.SetEnableDepthWrite (Standard_False); aSettings.SetEnableDepthWrite (Standard_False);
aSettings.SetClearDepth (Standard_False); aSettings.SetClearDepth (Standard_False);
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset()); aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
myLayerIds.Add (Graphic3d_ZLayerId_BotOSD); Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_BotOSD, 1, Handle(Select3D_BVHBuilder3d)());
myLayerSeq.Append (Graphic3d_ZLayerId_BotOSD); aLayer->SetLayerSettings (aSettings);
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_BotOSD, aSettings); myLayers.Append (aLayer);
myLayerIds.Bind (aLayer->LayerId(), aLayer);
} }
{ {
Graphic3d_ZLayerSettings aSettings; Graphic3d_ZLayerSettings aSettings;
aSettings.SetName ("DEFAULT");
aSettings.SetImmediate (Standard_False); aSettings.SetImmediate (Standard_False);
aSettings.SetRaytracable (Standard_True);
aSettings.SetEnvironmentTexture (Standard_True); aSettings.SetEnvironmentTexture (Standard_True);
aSettings.SetEnableDepthTest (Standard_True); aSettings.SetEnableDepthTest (Standard_True);
aSettings.SetEnableDepthWrite (Standard_True); aSettings.SetEnableDepthWrite (Standard_True);
aSettings.SetClearDepth (Standard_False); aSettings.SetClearDepth (Standard_False);
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset()); aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
myLayerIds.Add (Graphic3d_ZLayerId_Default); Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_Default, 1, Handle(Select3D_BVHBuilder3d)());
myLayerSeq.Append (Graphic3d_ZLayerId_Default); aLayer->SetLayerSettings (aSettings);
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_Default, aSettings); myLayers.Append (aLayer);
myLayerIds.Bind (aLayer->LayerId(), aLayer);
} }
{ {
Graphic3d_ZLayerSettings aSettings; Graphic3d_ZLayerSettings aSettings;
aSettings.SetName ("TOP");
aSettings.SetImmediate (Standard_True); aSettings.SetImmediate (Standard_True);
aSettings.SetRaytracable (Standard_False);
aSettings.SetEnvironmentTexture (Standard_True); aSettings.SetEnvironmentTexture (Standard_True);
aSettings.SetEnableDepthTest (Standard_True); aSettings.SetEnableDepthTest (Standard_True);
aSettings.SetEnableDepthWrite (Standard_True); aSettings.SetEnableDepthWrite (Standard_True);
aSettings.SetClearDepth (Standard_False); aSettings.SetClearDepth (Standard_False);
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset()); aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
myLayerIds.Add (Graphic3d_ZLayerId_Top); Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_Top, 1, Handle(Select3D_BVHBuilder3d)());
myLayerSeq.Append (Graphic3d_ZLayerId_Top); aLayer->SetLayerSettings (aSettings);
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_Top, aSettings); myLayers.Append (aLayer);
myLayerIds.Bind (aLayer->LayerId(), aLayer);
} }
{ {
Graphic3d_ZLayerSettings aSettings; Graphic3d_ZLayerSettings aSettings;
aSettings.SetName ("TOPMOST");
aSettings.SetImmediate (Standard_True); aSettings.SetImmediate (Standard_True);
aSettings.SetRaytracable (Standard_False);
aSettings.SetEnvironmentTexture (Standard_True); aSettings.SetEnvironmentTexture (Standard_True);
aSettings.SetEnableDepthTest (Standard_True); aSettings.SetEnableDepthTest (Standard_True);
aSettings.SetEnableDepthWrite (Standard_True); aSettings.SetEnableDepthWrite (Standard_True);
aSettings.SetClearDepth (Standard_True); aSettings.SetClearDepth (Standard_True);
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset()); aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
myLayerIds.Add (Graphic3d_ZLayerId_Topmost); Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_Topmost, 1, Handle(Select3D_BVHBuilder3d)());
myLayerSeq.Append (Graphic3d_ZLayerId_Topmost); aLayer->SetLayerSettings (aSettings);
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_Topmost, aSettings); myLayers.Append (aLayer);
myLayerIds.Bind (aLayer->LayerId(), aLayer);
} }
{ {
Graphic3d_ZLayerSettings aSettings; Graphic3d_ZLayerSettings aSettings;
aSettings.SetName ("OVERLAY");
aSettings.SetImmediate (Standard_True); aSettings.SetImmediate (Standard_True);
aSettings.SetRaytracable (Standard_False);
aSettings.SetEnvironmentTexture (Standard_False); aSettings.SetEnvironmentTexture (Standard_False);
aSettings.SetEnableDepthTest (Standard_False); aSettings.SetEnableDepthTest (Standard_False);
aSettings.SetEnableDepthWrite (Standard_False); aSettings.SetEnableDepthWrite (Standard_False);
aSettings.SetClearDepth (Standard_False); aSettings.SetClearDepth (Standard_False);
aSettings.SetPolygonOffset (Graphic3d_PolygonOffset()); aSettings.SetPolygonOffset (Graphic3d_PolygonOffset());
myLayerIds.Add (Graphic3d_ZLayerId_TopOSD); Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_TopOSD, 1, Handle(Select3D_BVHBuilder3d)());
myLayerSeq.Append (Graphic3d_ZLayerId_TopOSD); aLayer->SetLayerSettings (aSettings);
myMapOfZLayerSettings.Bind (Graphic3d_ZLayerId_TopOSD, aSettings); myLayers.Append (aLayer);
myLayerIds.Bind (aLayer->LayerId(), aLayer);
} }
} }
@ -125,52 +142,130 @@ void Graphic3d_GraphicDriver::RemoveIdentification(const Standard_Integer theId)
//======================================================================= //=======================================================================
const Graphic3d_ZLayerSettings& Graphic3d_GraphicDriver::ZLayerSettings (const Graphic3d_ZLayerId theLayerId) const 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"); const Handle(Graphic3d_Layer)* aLayer = myLayerIds.Seek (theLayerId);
return myMapOfZLayerSettings.Find (theLayerId); if (aLayer == NULL)
{
throw Standard_OutOfRange ("Graphic3d_GraphicDriver::ZLayerSettings, Layer with theLayerId does not exist");
}
return (*aLayer)->LayerSettings();
} }
//======================================================================= //=======================================================================
//function : addZLayerIndex //function : ZLayers
//purpose : //purpose :
//======================================================================= //=======================================================================
void Graphic3d_GraphicDriver::addZLayerIndex (const Graphic3d_ZLayerId theLayerId) void Graphic3d_GraphicDriver::ZLayers (TColStd_SequenceOfInteger& theLayerSeq) const
{ {
// remove index theLayerSeq.Clear();
for (TColStd_SequenceOfInteger::Iterator aLayerIt (myLayerSeq); aLayerIt.More(); aLayerIt.Next())
// append normal layers
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{ {
if (aLayerIt.Value() == theLayerId) const Handle(Graphic3d_Layer)& aLayer = aLayerIter.Value();
if (!aLayer->IsImmediate())
{ {
myLayerSeq.Remove (aLayerIt); theLayerSeq.Append (aLayer->LayerId());
}
}
// append immediate layers
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{
const Handle(Graphic3d_Layer)& aLayer = aLayerIter.Value();
if (aLayer->IsImmediate())
{
theLayerSeq.Append (aLayer->LayerId());
}
}
}
//=======================================================================
//function : InsertLayerBefore
//purpose :
//=======================================================================
void Graphic3d_GraphicDriver::InsertLayerBefore (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter)
{
Standard_ASSERT_RAISE (theNewLayerId > 0,
"Graphic3d_GraphicDriver::InsertLayerBefore, negative and zero IDs are reserved");
Standard_ASSERT_RAISE (!myLayerIds.IsBound (theNewLayerId),
"Graphic3d_GraphicDriver::InsertLayerBefore, Layer with theLayerId already exists");
Handle(Graphic3d_Layer) aNewLayer = new Graphic3d_Layer (theNewLayerId, 1, Handle(Select3D_BVHBuilder3d)());
aNewLayer->SetLayerSettings (theSettings);
Handle(Graphic3d_Layer) anOtherLayer;
if (theLayerAfter != Graphic3d_ZLayerId_UNKNOWN
&& myLayerIds.Find (theLayerAfter, anOtherLayer))
{
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{
if (aLayerIter.Value() == anOtherLayer)
{
myLayers.InsertBefore (aNewLayer, aLayerIter);
break; break;
} }
} }
if (myMapOfZLayerSettings.Find (theLayerId).IsImmediate())
{
myLayerSeq.Append (theLayerId);
return;
} }
else
for (TColStd_SequenceOfInteger::Iterator aLayerIt (myLayerSeq); aLayerIt.More(); aLayerIt.Next())
{ {
const Graphic3d_ZLayerSettings& aSettings = myMapOfZLayerSettings.Find (aLayerIt.Value()); myLayers.Prepend (aNewLayer);
if (aSettings.IsImmediate())
{
aLayerIt.Previous();
if (aLayerIt.More())
{
myLayerSeq.InsertAfter (aLayerIt, theLayerId);
return;
} }
myLayerIds.Bind (theNewLayerId, aNewLayer);
}
// first non-immediate layer //=======================================================================
myLayerSeq.Prepend (theLayerId); //function : InsertLayerAfter
return; //purpose :
//=======================================================================
void Graphic3d_GraphicDriver::InsertLayerAfter (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore)
{
Standard_ASSERT_RAISE (theNewLayerId > 0,
"Graphic3d_GraphicDriver::InsertLayerAfter, negative and zero IDs are reserved");
Standard_ASSERT_RAISE (!myLayerIds.IsBound (theNewLayerId),
"Graphic3d_GraphicDriver::InsertLayerAfter, Layer with theLayerId already exists");
Handle(Graphic3d_Layer) aNewLayer = new Graphic3d_Layer (theNewLayerId, 1, Handle(Select3D_BVHBuilder3d)());
aNewLayer->SetLayerSettings (theSettings);
Handle(Graphic3d_Layer) anOtherLayer;
if (theLayerBefore != Graphic3d_ZLayerId_UNKNOWN
&& myLayerIds.Find (theLayerBefore, anOtherLayer))
{
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{
if (aLayerIter.Value() == anOtherLayer)
{
myLayers.InsertAfter (aNewLayer, aLayerIter);
break;
} }
} }
}
else
{
myLayers.Append (aNewLayer);
}
myLayerIds.Bind (theNewLayerId, aNewLayer);
}
// no immediate layers //=======================================================================
myLayerSeq.Append (theLayerId); //function : RemoveZLayer
//purpose :
//=======================================================================
void Graphic3d_GraphicDriver::RemoveZLayer (const Graphic3d_ZLayerId theLayerId)
{
Standard_ASSERT_RAISE (theLayerId > 0,
"Graphic3d_GraphicDriver::RemoveZLayer, negative and zero IDs are reserved and cannot be removed");
Handle(Graphic3d_Layer) aLayerDef;
myLayerIds.Find (theLayerId, aLayerDef);
Standard_ASSERT_RAISE (!aLayerDef.IsNull(),
"Graphic3d_GraphicDriver::RemoveZLayer, Layer with theLayerId does not exist");
myLayers.Remove (aLayerDef);
myLayerIds.UnBind (theLayerId);
} }
//======================================================================= //=======================================================================
@ -180,20 +275,9 @@ void Graphic3d_GraphicDriver::addZLayerIndex (const Graphic3d_ZLayerId theLayerI
void Graphic3d_GraphicDriver::SetZLayerSettings (const Graphic3d_ZLayerId theLayerId, void Graphic3d_GraphicDriver::SetZLayerSettings (const Graphic3d_ZLayerId theLayerId,
const Graphic3d_ZLayerSettings& theSettings) const Graphic3d_ZLayerSettings& theSettings)
{ {
Graphic3d_ZLayerSettings* aSettings = myMapOfZLayerSettings.ChangeSeek (theLayerId); Handle(Graphic3d_Layer) aLayerDef;
if (aSettings != NULL) myLayerIds.Find (theLayerId, aLayerDef);
{ Standard_ASSERT_RAISE (!aLayerDef.IsNull(),
const bool isChanged = (aSettings->IsImmediate() != theSettings.IsImmediate()); "Graphic3d_GraphicDriver::SetZLayerSettings, Layer with theLayerId does not exist");
*aSettings = theSettings; aLayerDef->SetLayerSettings (theSettings);
if (isChanged)
{
addZLayerIndex (theLayerId);
}
}
else
{
// abnormal case
myMapOfZLayerSettings.Bind (theLayerId, theSettings);
addZLayerIndex (theLayerId);
}
} }

View File

@ -52,6 +52,7 @@
class Aspect_DisplayConnection; class Aspect_DisplayConnection;
class Graphic3d_CView; class Graphic3d_CView;
class Graphic3d_GraphicDriver; class Graphic3d_GraphicDriver;
class Graphic3d_Layer;
class Graphic3d_TransformError; class Graphic3d_TransformError;
class Graphic3d_Structure; class Graphic3d_Structure;
class Graphic3d_StructureManager; class Graphic3d_StructureManager;
@ -65,7 +66,7 @@ DEFINE_STANDARD_HANDLE(Graphic3d_GraphicDriver, Standard_Transient)
//! for 3d interface (currently only OpenGl driver is used). //! for 3d interface (currently only OpenGl driver is used).
class Graphic3d_GraphicDriver : public Standard_Transient class Graphic3d_GraphicDriver : public Standard_Transient
{ {
DEFINE_STANDARD_RTTIEXT(Graphic3d_GraphicDriver, Standard_Transient)
public: public:
//! Request limit of graphic resource of specific type. //! Request limit of graphic resource of specific type.
@ -110,24 +111,31 @@ public:
Standard_ShortReal& theAscent, Standard_ShortReal& theAscent,
Standard_ShortReal& theDescent) const = 0; Standard_ShortReal& theDescent) const = 0;
//! Add a new top-level z layer with ID <theLayerId> for //! Adds a layer to all views.
//! the view. Z layers allow drawing structures in higher layers //! To add a structure to desired layer on display it is necessary to set the layer ID for the structure.
//! in foreground of structures in lower layers. To add a structure //! @param theNewLayerId [in] id of new layer, should be > 0 (negative values are reserved for default layers).
//! to desired layer on display it is necessary to set the layer //! @param theSettings [in] new layer settings
//! ID for the structure. //! @param theLayerAfter [in] id of layer to append new layer before
virtual void AddZLayer (const Graphic3d_ZLayerId theLayerId) = 0; Standard_EXPORT virtual void InsertLayerBefore (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter) = 0;
//! Adds a layer to all views.
//! @param theNewLayerId [in] id of new layer, should be > 0 (negative values are reserved for default layers).
//! @param theSettings [in] new layer settings
//! @param theLayerBefore [in] id of layer to append new layer after
Standard_EXPORT virtual void InsertLayerAfter (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore) = 0;
//! Removes Z layer. All structures displayed at the moment in layer will be displayed in //! Removes Z layer. All structures displayed at the moment in layer will be displayed in
//! default layer (the bottom-level z layer). By default, there are always default //! default layer (the bottom-level z layer). By default, there are always default
//! bottom-level layer that can't be removed. The passed theLayerId should be not less than 0 //! bottom-level layer that can't be removed. The passed theLayerId should be not less than 0
//! (reserved for default layers that can not be removed). //! (reserved for default layers that can not be removed).
virtual void RemoveZLayer (const Graphic3d_ZLayerId theLayerId) = 0; Standard_EXPORT 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 Standard_EXPORT 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.
Standard_EXPORT 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;
@ -148,23 +156,17 @@ public:
//! Frees the identifier of a structure. //! Frees the identifier of a structure.
Standard_EXPORT void RemoveIdentification(const Standard_Integer theId); Standard_EXPORT void RemoveIdentification(const Standard_Integer theId);
DEFINE_STANDARD_RTTIEXT(Graphic3d_GraphicDriver,Standard_Transient)
protected: 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; NCollection_List<Handle(Graphic3d_Layer)> myLayers;
TColStd_SequenceOfInteger myLayerSeq; NCollection_DataMap<Graphic3d_ZLayerId, Handle(Graphic3d_Layer)> myLayerIds;
Graphic3d_MapOfZLayerSettings myMapOfZLayerSettings;
}; };

View File

@ -22,11 +22,13 @@ IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_Layer, Standard_Transient)
// function : Graphic3d_Layer // function : Graphic3d_Layer
// purpose : // purpose :
// ======================================================================= // =======================================================================
Graphic3d_Layer::Graphic3d_Layer (Standard_Integer theNbPriorities, Graphic3d_Layer::Graphic3d_Layer (Graphic3d_ZLayerId theId,
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),
myNbStructuresNotCulled (0), myNbStructuresNotCulled (0),
myLayerId (theId),
myBVHPrimitivesTrsfPers (theBuilder), myBVHPrimitivesTrsfPers (theBuilder),
myBVHIsLeftChildQueuedFirst (Standard_True), myBVHIsLeftChildQueuedFirst (Standard_True),
myIsBVHPrimitivesNeedsReset (Standard_False) myIsBVHPrimitivesNeedsReset (Standard_False)

View File

@ -17,6 +17,7 @@
#include <Graphic3d_BvhCStructureSet.hxx> #include <Graphic3d_BvhCStructureSet.hxx>
#include <Graphic3d_BvhCStructureSetTrsfPers.hxx> #include <Graphic3d_BvhCStructureSetTrsfPers.hxx>
#include <Graphic3d_Camera.hxx> #include <Graphic3d_Camera.hxx>
#include <Graphic3d_ZLayerId.hxx>
#include <Graphic3d_ZLayerSettings.hxx> #include <Graphic3d_ZLayerSettings.hxx>
#include <Graphic3d_RenderingParams.hxx> #include <Graphic3d_RenderingParams.hxx>
#include <NCollection_Array1.hxx> #include <NCollection_Array1.hxx>
@ -38,12 +39,16 @@ class Graphic3d_Layer : public Standard_Transient
public: public:
//! Initializes associated priority list and layer properties //! Initializes associated priority list and layer properties
Standard_EXPORT Graphic3d_Layer (Standard_Integer theNbPriorities, Standard_EXPORT Graphic3d_Layer (Graphic3d_ZLayerId theId,
Standard_Integer theNbPriorities,
const Handle(Select3D_BVHBuilder3d)& theBuilder); const Handle(Select3D_BVHBuilder3d)& theBuilder);
//! Destructor. //! Destructor.
Standard_EXPORT virtual ~Graphic3d_Layer(); Standard_EXPORT virtual ~Graphic3d_Layer();
//! Return layer id.
Graphic3d_ZLayerId LayerId() const { return myLayerId; }
//! Returns BVH tree builder for frustom culling. //! Returns BVH tree builder for frustom culling.
const Handle(Select3D_BVHBuilder3d)& FrustumCullingBVHBuilder() const { return myBVHPrimitivesTrsfPers.Builder(); } const Handle(Select3D_BVHBuilder3d)& FrustumCullingBVHBuilder() const { return myBVHPrimitivesTrsfPers.Builder(); }
@ -158,6 +163,9 @@ private:
//! Layer setting flags. //! Layer setting flags.
Graphic3d_ZLayerSettings myLayerSettings; Graphic3d_ZLayerSettings myLayerSettings;
//! Layer id.
Graphic3d_ZLayerId myLayerId;
//! Set of Graphic3d_CStructures structures for building BVH tree. //! Set of Graphic3d_CStructures structures for building BVH tree.
mutable Graphic3d_BvhCStructureSet myBVHPrimitives; mutable Graphic3d_BvhCStructureSet myBVHPrimitives;

View File

@ -38,6 +38,7 @@ struct Graphic3d_ZLayerSettings
: myCullingDistance (Precision::Infinite()), : myCullingDistance (Precision::Infinite()),
myCullingSize (Precision::Infinite()), myCullingSize (Precision::Infinite()),
myIsImmediate (Standard_False), myIsImmediate (Standard_False),
myToRaytrace (Standard_True),
myUseEnvironmentTexture (Standard_True), myUseEnvironmentTexture (Standard_True),
myToEnableDepthTest (Standard_True), myToEnableDepthTest (Standard_True),
myToEnableDepthWrite(Standard_True), myToEnableDepthWrite(Standard_True),
@ -105,6 +106,13 @@ struct Graphic3d_ZLayerSettings
//! Set the flag indicating the immediate layer, which should be drawn after all normal (non-immediate) layers. //! Set the flag indicating the immediate layer, which should be drawn after all normal (non-immediate) layers.
void SetImmediate (const Standard_Boolean theValue) { myIsImmediate = theValue; } void SetImmediate (const Standard_Boolean theValue) { myIsImmediate = theValue; }
//! Returns TRUE if layer should be processed by ray-tracing renderer; TRUE by default.
//! Note that this flag is IGNORED for layers with IsImmediate() flag.
Standard_Boolean IsRaytracable() const { return myToRaytrace; }
//! Sets if layer should be processed by ray-tracing renderer.
void SetRaytracable (Standard_Boolean theToRaytrace) { myToRaytrace = theToRaytrace; }
//! Return flag to allow/prevent environment texture mapping usage for specific layer. //! Return flag to allow/prevent environment texture mapping usage for specific layer.
Standard_Boolean UseEnvironmentTexture() const { return myUseEnvironmentTexture; } Standard_Boolean UseEnvironmentTexture() const { return myUseEnvironmentTexture; }
@ -210,6 +218,7 @@ protected:
Standard_Real myCullingSize; //!< size to discard objects Standard_Real myCullingSize; //!< size to discard objects
Graphic3d_PolygonOffset myPolygonOffset; //!< glPolygonOffset() arguments Graphic3d_PolygonOffset myPolygonOffset; //!< glPolygonOffset() arguments
Standard_Boolean myIsImmediate; //!< immediate layer will be drawn after all normal layers Standard_Boolean myIsImmediate; //!< immediate layer will be drawn after all normal layers
Standard_Boolean myToRaytrace; //!< option to render layer within ray-tracing engine
Standard_Boolean myUseEnvironmentTexture; //!< flag to allow/prevent environment texture mapping usage for specific layer Standard_Boolean myUseEnvironmentTexture; //!< flag to allow/prevent environment texture mapping usage for specific layer
Standard_Boolean myToEnableDepthTest; //!< option to enable depth test Standard_Boolean myToEnableDepthTest; //!< option to enable depth test
Standard_Boolean myToEnableDepthWrite; //!< option to enable write depth values Standard_Boolean myToEnableDepthWrite; //!< option to enable write depth values

View File

@ -103,7 +103,7 @@ void OpenGl_FrameStats::updateStatistics (const Handle(Graphic3d_CView)& theView
|| (aBits & Graphic3d_RenderingParams::PerfCounters_Layers) != 0) || (aBits & Graphic3d_RenderingParams::PerfCounters_Layers) != 0)
{ {
const Standard_Integer aViewId = aView->Identification(); const Standard_Integer aViewId = aView->Identification();
for (OpenGl_SequenceOfLayers::Iterator aLayerIter (aView->LayerList().Layers()); aLayerIter.More(); aLayerIter.Next()) for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (aView->LayerList().Layers()); aLayerIter.More(); aLayerIter.Next())
{ {
const Handle(OpenGl_Layer)& aLayer = aLayerIter.Value(); const Handle(OpenGl_Layer)& aLayer = aLayerIter.Value();
myCountersTmp[Graphic3d_FrameStatsCounter_NbStructs] += aLayer->NbStructures(); myCountersTmp[Graphic3d_FrameStatsCounter_NbStructs] += aLayer->NbStructures();

View File

@ -526,29 +526,36 @@ void OpenGl_GraphicDriver::TextSize (const Handle(Graphic3d_CView)& theView,
} }
//======================================================================= //=======================================================================
//function : AddZLayer //function : InsertLayerBefore
//purpose : //purpose :
//======================================================================= //=======================================================================
void OpenGl_GraphicDriver::AddZLayer (const Graphic3d_ZLayerId theLayerId) void OpenGl_GraphicDriver::InsertLayerBefore (const Graphic3d_ZLayerId theLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter)
{ {
if (theLayerId < 1) base_type::InsertLayerBefore (theLayerId, theSettings, theLayerAfter);
{
Standard_ASSERT_RAISE (theLayerId > 0,
"OpenGl_GraphicDriver::AddZLayer, "
"negative and zero IDs are reserved");
}
myLayerIds.Add (theLayerId);
// Default z-layer settings
myMapOfZLayerSettings.Bind (theLayerId, Graphic3d_ZLayerSettings());
addZLayerIndex (theLayerId);
// Add layer to all views // Add layer to all views
NCollection_Map<Handle(OpenGl_View)>::Iterator aViewIt (myMapOfView); for (NCollection_Map<Handle(OpenGl_View)>::Iterator aViewIt (myMapOfView); aViewIt.More(); aViewIt.Next())
for (; aViewIt.More(); aViewIt.Next())
{ {
aViewIt.Value()->AddZLayer (theLayerId); aViewIt.Value()->InsertLayerBefore (theLayerId, theSettings, theLayerAfter);
}
}
//=======================================================================
//function : InsertLayerAfter
//purpose :
//=======================================================================
void OpenGl_GraphicDriver::InsertLayerAfter (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore)
{
base_type::InsertLayerAfter (theNewLayerId, theSettings, theLayerBefore);
// Add layer to all views
for (NCollection_Map<Handle(OpenGl_View)>::Iterator aViewIt (myMapOfView); aViewIt.More(); aViewIt.Next())
{
aViewIt.Value()->InsertLayerAfter (theNewLayerId, theSettings, theLayerBefore);
} }
} }
@ -558,43 +565,21 @@ void OpenGl_GraphicDriver::AddZLayer (const Graphic3d_ZLayerId theLayerId)
//======================================================================= //=======================================================================
void OpenGl_GraphicDriver::RemoveZLayer (const Graphic3d_ZLayerId theLayerId) void OpenGl_GraphicDriver::RemoveZLayer (const Graphic3d_ZLayerId theLayerId)
{ {
Standard_ASSERT_RAISE (theLayerId > 0, base_type::RemoveZLayer (theLayerId);
"OpenGl_GraphicDriver::AddZLayer, "
"negative and zero IDs are reserved"
"and can not be removed");
Standard_ASSERT_RAISE (myLayerIds.Contains (theLayerId),
"OpenGl_GraphicDriver::RemoveZLayer, "
"Layer with theLayerId does not exist");
// Remove layer from all of the views // Remove layer from all of the views
NCollection_Map<Handle(OpenGl_View)>::Iterator aViewIt (myMapOfView); for (NCollection_Map<Handle(OpenGl_View)>::Iterator aViewIt (myMapOfView); aViewIt.More(); aViewIt.Next())
for (; aViewIt.More(); aViewIt.Next())
{ {
aViewIt.Value()->RemoveZLayer (theLayerId); aViewIt.Value()->RemoveZLayer (theLayerId);
} }
// Unset Z layer for all of the structures. // Unset Z layer for all of the structures.
NCollection_DataMap<Standard_Integer, OpenGl_Structure*>::Iterator aStructIt (myMapOfStructure); for (NCollection_DataMap<Standard_Integer, OpenGl_Structure*>::Iterator aStructIt (myMapOfStructure); aStructIt.More(); aStructIt.Next())
for( ; aStructIt.More (); aStructIt.Next ())
{ {
OpenGl_Structure* aStruct = aStructIt.ChangeValue (); OpenGl_Structure* aStruct = aStructIt.ChangeValue ();
if (aStruct->ZLayer() == theLayerId) if (aStruct->ZLayer() == theLayerId)
aStruct->SetZLayer (Graphic3d_ZLayerId_Default); aStruct->SetZLayer (Graphic3d_ZLayerId_Default);
} }
// Remove index
for (TColStd_SequenceOfInteger::Iterator aLayerIt (myLayerSeq); aLayerIt.More(); aLayerIt.Next())
{
if (aLayerIt.Value() == theLayerId)
{
myLayerSeq.Remove (aLayerIt);
break;
}
}
myMapOfZLayerSettings.UnBind (theLayerId);
myLayerIds.Remove (theLayerId);
} }
//======================================================================= //=======================================================================
@ -642,23 +627,18 @@ void OpenGl_GraphicDriver::RemoveStructure (Handle(Graphic3d_CStructure)& theCSt
} }
// ======================================================================= // =======================================================================
// function : View // function : CreateView
// purpose : // purpose :
// ======================================================================= // =======================================================================
Handle(Graphic3d_CView) OpenGl_GraphicDriver::CreateView (const Handle(Graphic3d_StructureManager)& theMgr) Handle(Graphic3d_CView) OpenGl_GraphicDriver::CreateView (const Handle(Graphic3d_StructureManager)& theMgr)
{ {
Handle(OpenGl_View) aView = new OpenGl_View (theMgr, this, myCaps, &myStateCounter); Handle(OpenGl_View) aView = new OpenGl_View (theMgr, this, myCaps, &myStateCounter);
myMapOfView.Add (aView); myMapOfView.Add (aView);
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
for (TColStd_SequenceOfInteger::Iterator aLayerIt (myLayerSeq); aLayerIt.More(); aLayerIt.Next())
{ {
const Graphic3d_ZLayerId aLayerID = aLayerIt.Value(); const Handle(Graphic3d_Layer)& aLayer = aLayerIter.Value();
const Graphic3d_ZLayerSettings& aSettings = myMapOfZLayerSettings.Find (aLayerID); aView->InsertLayerAfter (aLayer->LayerId(), aLayer->LayerSettings(), Graphic3d_ZLayerId_UNKNOWN);
aView->AddZLayer (aLayerID);
aView->SetZLayerSettings (aLayerID, aSettings);
} }
return aView; return aView;
} }

View File

@ -108,10 +108,21 @@ public:
public: public:
//! Adds a new top-level z layer with ID theLayerId for all views. Z layers allow drawing structures in higher layers //! Adds a layer to all views.
//! in foreground of structures in lower layers. To add a structure to desired layer on display it is necessary to //! @param theLayerId [in] id of new layer, should be > 0 (negative values are reserved for default layers).
//! set the layer index for the structure. The passed theLayerId should be not less than 0 (reserved for default layers). //! @param theSettings [in] new layer settings
Standard_EXPORT void AddZLayer (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE; //! @param theLayerAfter [in] id of layer to append new layer before
Standard_EXPORT virtual void InsertLayerBefore (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter) Standard_OVERRIDE;
//! Adds a layer to all views.
//! @param theLayerId [in] id of created layer
//! @param theSettings [in] new layer settings
//! @param theLayerBefore [in] id of layer to append new layer after
Standard_EXPORT virtual void InsertLayerAfter (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore) Standard_OVERRIDE;
//! Removes Z layer. All structures displayed at the moment in layer will be displayed in //! Removes Z layer. All structures displayed at the moment in layer will be displayed in
//! default layer (the bottom-level z layer). By default, there are always default //! default layer (the bottom-level z layer). By default, there are always default

View File

@ -16,13 +16,14 @@
#ifndef _OpenGl_LayerFilter_H__ #ifndef _OpenGl_LayerFilter_H__
#define _OpenGl_LayerFilter_H__ #define _OpenGl_LayerFilter_H__
//! Tool object to specify processed OpenGL layers. //! Tool object to specify processed OpenGL layers
//! for intermixed rendering of raytracable and non-raytracable layers.
enum OpenGl_LayerFilter enum OpenGl_LayerFilter
{ {
OpenGl_LF_All, //!< process all layers OpenGl_LF_All, //!< process all layers
OpenGl_LF_Upper, //!< process only top layers OpenGl_LF_Upper, //!< process only top non-raytracable layers
OpenGl_LF_Bottom, //!< process only bottom layer OpenGl_LF_Bottom, //!< process only Graphic3d_ZLayerId_BotOSD
OpenGl_LF_Default //!< process only default layer OpenGl_LF_RayTracable //!< process only normal raytracable layers (save the bottom layer)
}; };
#endif //_OpenGl_LayerFilter_H__ #endif //_OpenGl_LayerFilter_H__

View File

@ -29,13 +29,13 @@
namespace namespace
{ {
//! Auxiliary class extending sequence iterator with index. //! Auxiliary class extending sequence iterator with index.
class OpenGl_IndexedLayerIterator : public OpenGl_SequenceOfLayers::Iterator class OpenGl_IndexedLayerIterator : public NCollection_List<Handle(Graphic3d_Layer)>::Iterator
{ {
public: public:
//! Main constructor. //! Main constructor.
OpenGl_IndexedLayerIterator (const OpenGl_SequenceOfLayers& theSeq) OpenGl_IndexedLayerIterator (const NCollection_List<Handle(Graphic3d_Layer)>& theSeq)
: OpenGl_SequenceOfLayers::Iterator (theSeq), : NCollection_List<Handle(Graphic3d_Layer)>::Iterator (theSeq),
myIndex (theSeq.Lower()) {} myIndex (1) {}
//! Return index of current position. //! Return index of current position.
Standard_Integer Index() const { return myIndex; } Standard_Integer Index() const { return myIndex; }
@ -43,7 +43,7 @@ namespace
//! Move to the next position. //! Move to the next position.
void Next() void Next()
{ {
OpenGl_SequenceOfLayers::Iterator::Next(); NCollection_List<Handle(Graphic3d_Layer)>::Iterator::Next();
++myIndex; ++myIndex;
} }
@ -56,12 +56,10 @@ namespace
{ {
public: public:
//! Main constructor. //! Main constructor.
OpenGl_FilteredIndexedLayerIterator (const OpenGl_SequenceOfLayers& theSeq, OpenGl_FilteredIndexedLayerIterator (const NCollection_List<Handle(Graphic3d_Layer)>& theSeq,
Standard_Integer theDefaultLayerIndex,
Standard_Boolean theToDrawImmediate, Standard_Boolean theToDrawImmediate,
OpenGl_LayerFilter theLayersToProcess) OpenGl_LayerFilter theLayersToProcess)
: myIter (theSeq), : myIter (theSeq),
myDefaultLayerIndex (theDefaultLayerIndex),
myLayersToProcess (theLayersToProcess), myLayersToProcess (theLayersToProcess),
myToDrawImmediate (theToDrawImmediate) myToDrawImmediate (theToDrawImmediate)
{ {
@ -90,7 +88,8 @@ namespace
{ {
for (; myIter.More(); myIter.Next()) for (; myIter.More(); myIter.Next())
{ {
if (myIter.Value()->IsImmediate() != myToDrawImmediate) const Handle(Graphic3d_Layer)& aLayer = myIter.Value();
if (aLayer->IsImmediate() != myToDrawImmediate)
{ {
continue; continue;
} }
@ -99,39 +98,41 @@ namespace
{ {
case OpenGl_LF_All: case OpenGl_LF_All:
{ {
break; return;
} }
case OpenGl_LF_Upper: case OpenGl_LF_Upper:
{ {
if (myIter.Index() <= myDefaultLayerIndex) if (aLayer->LayerId() != Graphic3d_ZLayerId_BotOSD
&& (!aLayer->LayerSettings().IsRaytracable()
|| aLayer->IsImmediate()))
{ {
continue; return;
} }
break; break;
} }
case OpenGl_LF_Bottom: case OpenGl_LF_Bottom:
{ {
if (myIter.Index() >= myDefaultLayerIndex) if (aLayer->LayerId() == Graphic3d_ZLayerId_BotOSD
&& !aLayer->LayerSettings().IsRaytracable())
{ {
continue;
}
break;
}
case OpenGl_LF_Default:
{
if (myIter.Index() != myDefaultLayerIndex)
{
continue;
}
break;
}
}
return; return;
} }
break;
}
case OpenGl_LF_RayTracable:
{
if (aLayer->LayerSettings().IsRaytracable()
&& !aLayer->IsImmediate())
{
return;
}
break;
}
}
}
} }
private: private:
OpenGl_IndexedLayerIterator myIter; OpenGl_IndexedLayerIterator myIter;
Standard_Integer myDefaultLayerIndex;
OpenGl_LayerFilter myLayersToProcess; OpenGl_LayerFilter myLayersToProcess;
Standard_Boolean myToDrawImmediate; Standard_Boolean myToDrawImmediate;
}; };
@ -150,31 +151,12 @@ struct OpenGl_GlobalLayerSettings
OpenGl_LayerList::OpenGl_LayerList (const Standard_Integer theNbPriorities) OpenGl_LayerList::OpenGl_LayerList (const Standard_Integer theNbPriorities)
: myBVHBuilder (new BVH_LinearBuilder<Standard_Real, 3> (BVH_Constants_LeafNodeSizeSingle, BVH_Constants_MaxTreeDepth)), : myBVHBuilder (new BVH_LinearBuilder<Standard_Real, 3> (BVH_Constants_LeafNodeSizeSingle, BVH_Constants_MaxTreeDepth)),
myDefaultLayerIndex (0),
myNbPriorities (theNbPriorities), myNbPriorities (theNbPriorities),
myNbStructures (0), myNbStructures (0),
myImmediateNbStructures (0), myImmediateNbStructures (0),
myModifStateOfRaytraceable (0) myModifStateOfRaytraceable (0)
{ {
// insert default priority layers //
myLayers.Append (new OpenGl_Layer (myNbPriorities, myBVHBuilder));
myLayerIds.Bind (Graphic3d_ZLayerId_BotOSD, myLayers.Upper());
myLayers.Append (new OpenGl_Layer (myNbPriorities, myBVHBuilder));
myLayerIds.Bind (Graphic3d_ZLayerId_Default, myLayers.Upper());
myLayers.Append (new OpenGl_Layer (myNbPriorities, myBVHBuilder));
myLayerIds.Bind (Graphic3d_ZLayerId_Top, myLayers.Upper());
myLayers.Append (new OpenGl_Layer (myNbPriorities, myBVHBuilder));
myLayerIds.Bind (Graphic3d_ZLayerId_Topmost, myLayers.Upper());
myLayers.Append (new OpenGl_Layer (myNbPriorities, myBVHBuilder));
myLayerIds.Bind (Graphic3d_ZLayerId_TopOSD, myLayers.Upper());
myDefaultLayerIndex = myLayerIds.Find (Graphic3d_ZLayerId_Default);
myTransparentToProcess.Allocate (myLayers.Length());
} }
//======================================================================= //=======================================================================
@ -193,85 +175,109 @@ OpenGl_LayerList::~OpenGl_LayerList()
void OpenGl_LayerList::SetFrustumCullingBVHBuilder (const Handle(Select3D_BVHBuilder3d)& theBuilder) void OpenGl_LayerList::SetFrustumCullingBVHBuilder (const Handle(Select3D_BVHBuilder3d)& theBuilder)
{ {
myBVHBuilder = theBuilder; myBVHBuilder = theBuilder;
for (OpenGl_SequenceOfLayers::Iterator anIts (myLayers); anIts.More(); anIts.Next()) for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{ {
anIts.ChangeValue()->SetFrustumCullingBVHBuilder (theBuilder); aLayerIter.ChangeValue()->SetFrustumCullingBVHBuilder (theBuilder);
} }
} }
//======================================================================= //=======================================================================
//function : AddLayer //function : InsertLayerBefore
//purpose : //purpose :
//======================================================================= //=======================================================================
void OpenGl_LayerList::InsertLayerBefore (const Graphic3d_ZLayerId theNewLayerId,
void OpenGl_LayerList::AddLayer (const Graphic3d_ZLayerId theLayerId) const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter)
{ {
if (myLayerIds.IsBound (theLayerId)) if (myLayerIds.IsBound (theNewLayerId))
{ {
return; return;
} }
// add the new layer Handle(Graphic3d_Layer) aNewLayer = new Graphic3d_Layer (theNewLayerId, myNbPriorities, myBVHBuilder);
myLayers.Append (new OpenGl_Layer (myNbPriorities, myBVHBuilder)); aNewLayer->SetLayerSettings (theSettings);
myLayerIds.Bind (theLayerId, myLayers.Length());
myTransparentToProcess.Allocate (myLayers.Length()); Handle(Graphic3d_Layer) anOtherLayer;
if (theLayerAfter != Graphic3d_ZLayerId_UNKNOWN
&& myLayerIds.Find (theLayerAfter, anOtherLayer))
{
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{
if (aLayerIter.Value() == anOtherLayer)
{
myLayers.InsertBefore (aNewLayer, aLayerIter);
break;
}
}
}
else
{
myLayers.Prepend (aNewLayer);
}
myLayerIds.Bind (theNewLayerId, aNewLayer);
myTransparentToProcess.Allocate (myLayers.Size());
} }
//======================================================================= //=======================================================================
//function : Layer //function : InsertLayerAfter
//purpose : //purpose :
//======================================================================= //=======================================================================
OpenGl_Layer& OpenGl_LayerList::Layer (const Graphic3d_ZLayerId theLayerId) void OpenGl_LayerList::InsertLayerAfter (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore)
{ {
return *myLayers.ChangeValue (myLayerIds.Find (theLayerId)); if (myLayerIds.IsBound (theNewLayerId))
} {
return;
}
//======================================================================= Handle(Graphic3d_Layer) aNewLayer = new Graphic3d_Layer (theNewLayerId, myNbPriorities, myBVHBuilder);
//function : Layer aNewLayer->SetLayerSettings (theSettings);
//purpose :
//======================================================================= Handle(Graphic3d_Layer) anOtherLayer;
const OpenGl_Layer& OpenGl_LayerList::Layer (const Graphic3d_ZLayerId theLayerId) const if (theLayerBefore != Graphic3d_ZLayerId_UNKNOWN
{ && myLayerIds.Find (theLayerBefore, anOtherLayer))
return *myLayers.Value (myLayerIds.Find (theLayerId)); {
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{
if (aLayerIter.Value() == anOtherLayer)
{
myLayers.InsertAfter (aNewLayer, aLayerIter);
break;
}
}
}
else
{
myLayers.Append (aNewLayer);
}
myLayerIds.Bind (theNewLayerId, aNewLayer);
myTransparentToProcess.Allocate (myLayers.Size());
} }
//======================================================================= //=======================================================================
//function : RemoveLayer //function : RemoveLayer
//purpose : //purpose :
//======================================================================= //=======================================================================
void OpenGl_LayerList::RemoveLayer (const Graphic3d_ZLayerId theLayerId) void OpenGl_LayerList::RemoveLayer (const Graphic3d_ZLayerId theLayerId)
{ {
if (!myLayerIds.IsBound (theLayerId) Handle(Graphic3d_Layer) aLayerToRemove;
|| theLayerId <= 0) if (theLayerId <= 0
|| !myLayerIds.Find (theLayerId, aLayerToRemove))
{ {
return; return;
} }
const Standard_Integer aRemovePos = myLayerIds.Find (theLayerId);
// move all displayed structures to first layer // move all displayed structures to first layer
{ myLayerIds.Find (Graphic3d_ZLayerId_Default)->Append (*aLayerToRemove);
const OpenGl_Layer& aLayerToMove = *myLayers.Value (aRemovePos);
myLayers.ChangeFirst()->Append (aLayerToMove);
}
// remove layer // remove layer
myLayers.Remove (aRemovePos); myLayers.Remove (aLayerToRemove);
myLayerIds.UnBind (theLayerId); myLayerIds.UnBind (theLayerId);
// updated sequence indexes in map myTransparentToProcess.Allocate (myLayers.Size());
for (OpenGl_LayerSeqIds::Iterator aMapIt (myLayerIds); aMapIt.More(); aMapIt.Next())
{
Standard_Integer& aSeqIdx = aMapIt.ChangeValue();
if (aSeqIdx > aRemovePos)
aSeqIdx--;
}
myDefaultLayerIndex = myLayerIds.Find (Graphic3d_ZLayerId_Default);
myTransparentToProcess.Allocate (myLayers.Length());
} }
//======================================================================= //=======================================================================
@ -286,13 +292,11 @@ void OpenGl_LayerList::AddStructure (const OpenGl_Structure* theStruct,
{ {
// add structure to associated layer, // add structure to associated layer,
// if layer doesn't exists, display structure in default layer // if layer doesn't exists, display structure in default layer
Standard_Integer aSeqPos = myLayers.Lower(); const Handle(Graphic3d_Layer)* aLayerPtr = myLayerIds.Seek (theLayerId);
myLayerIds.Find (theLayerId, aSeqPos); const Handle(Graphic3d_Layer)& aLayer = aLayerPtr != NULL ? *aLayerPtr : myLayerIds.Find (Graphic3d_ZLayerId_Default);
aLayer->Add (theStruct, thePriority, isForChangePriority);
OpenGl_Layer& aLayer = *myLayers.ChangeValue (aSeqPos);
aLayer.Add (theStruct, thePriority, isForChangePriority);
++myNbStructures; ++myNbStructures;
if (aLayer.IsImmediate()) if (aLayer->IsImmediate())
{ {
++myImmediateNbStructures; ++myImmediateNbStructures;
} }
@ -310,25 +314,23 @@ void OpenGl_LayerList::AddStructure (const OpenGl_Structure* theStruct,
void OpenGl_LayerList::RemoveStructure (const OpenGl_Structure* theStructure) void OpenGl_LayerList::RemoveStructure (const OpenGl_Structure* theStructure)
{ {
const Graphic3d_ZLayerId aLayerId = theStructure->ZLayer(); const Graphic3d_ZLayerId aLayerId = theStructure->ZLayer();
const Handle(Graphic3d_Layer)* aLayerPtr = myLayerIds.Seek (aLayerId);
const Handle(Graphic3d_Layer)& aLayer = aLayerPtr != NULL ? *aLayerPtr : myLayerIds.Find (Graphic3d_ZLayerId_Default);
Standard_Integer aSeqPos = myLayers.Lower();
myLayerIds.Find (aLayerId, aSeqPos);
OpenGl_Layer& aLayer = *myLayers.ChangeValue (aSeqPos);
Standard_Integer aPriority = -1; Standard_Integer aPriority = -1;
// remove structure from associated list // remove structure from associated list
// if the structure is not found there, // if the structure is not found there,
// scan through layers and remove it // scan through layers and remove it
if (aLayer.Remove (theStructure, aPriority)) if (aLayer->Remove (theStructure, aPriority))
{ {
--myNbStructures; --myNbStructures;
if (aLayer.IsImmediate()) if (aLayer->IsImmediate())
{ {
--myImmediateNbStructures; --myImmediateNbStructures;
} }
if (aLayerId == Graphic3d_ZLayerId_Default if (aLayer->LayerSettings().IsRaytracable()
&& theStructure->IsRaytracable()) && theStructure->IsRaytracable())
{ {
++myModifStateOfRaytraceable; ++myModifStateOfRaytraceable;
@ -338,23 +340,23 @@ void OpenGl_LayerList::RemoveStructure (const OpenGl_Structure* theStructure)
} }
// scan through layers and remove it // scan through layers and remove it
for (OpenGl_IndexedLayerIterator anIts (myLayers); anIts.More(); anIts.Next()) for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{ {
OpenGl_Layer& aLayerEx = *anIts.ChangeValue(); const Handle(Graphic3d_Layer)& aLayerEx = aLayerIter.ChangeValue();
if (aSeqPos == anIts.Index()) if (aLayerEx == aLayer)
{ {
continue; continue;
} }
if (aLayerEx.Remove (theStructure, aPriority)) if (aLayerEx->Remove (theStructure, aPriority))
{ {
--myNbStructures; --myNbStructures;
if (aLayerEx.IsImmediate()) if (aLayerEx->IsImmediate())
{ {
--myImmediateNbStructures; --myImmediateNbStructures;
} }
if (anIts.Index() == myDefaultLayerIndex if (aLayerEx->LayerSettings().IsRaytracable()
&& theStructure->IsRaytracable()) && theStructure->IsRaytracable())
{ {
++myModifStateOfRaytraceable; ++myModifStateOfRaytraceable;
@ -370,10 +372,9 @@ void OpenGl_LayerList::RemoveStructure (const OpenGl_Structure* theStructure)
//======================================================================= //=======================================================================
void OpenGl_LayerList::InvalidateBVHData (const Graphic3d_ZLayerId theLayerId) void OpenGl_LayerList::InvalidateBVHData (const Graphic3d_ZLayerId theLayerId)
{ {
Standard_Integer aSeqPos = myLayers.Lower(); const Handle(Graphic3d_Layer)* aLayerPtr = myLayerIds.Seek (theLayerId);
myLayerIds.Find (theLayerId, aSeqPos); const Handle(Graphic3d_Layer)& aLayer = aLayerPtr != NULL ? *aLayerPtr : myLayerIds.Find (Graphic3d_ZLayerId_Default);
OpenGl_Layer& aLayer = *myLayers.ChangeValue (aSeqPos); aLayer->InvalidateBVHData();
aLayer.InvalidateBVHData();
} }
//======================================================================= //=======================================================================
@ -385,23 +386,24 @@ void OpenGl_LayerList::ChangeLayer (const OpenGl_Structure* theStructure,
const Graphic3d_ZLayerId theOldLayerId, const Graphic3d_ZLayerId theOldLayerId,
const Graphic3d_ZLayerId theNewLayerId) const Graphic3d_ZLayerId theNewLayerId)
{ {
Standard_Integer aSeqPos = myLayers.Lower(); const Handle(Graphic3d_Layer)* aLayerPtr = myLayerIds.Seek (theOldLayerId);
myLayerIds.Find (theOldLayerId, aSeqPos); const Handle(Graphic3d_Layer)& aLayer = aLayerPtr != NULL ? *aLayerPtr : myLayerIds.Find (Graphic3d_ZLayerId_Default);
OpenGl_Layer& aLayer = *myLayers.ChangeValue (aSeqPos);
Standard_Integer aPriority = -1; Standard_Integer aPriority = -1;
// take priority and remove structure from list found by <theOldLayerId> // take priority and remove structure from list found by <theOldLayerId>
// if the structure is not found there, scan through all other layers // if the structure is not found there, scan through all other layers
if (aLayer.Remove (theStructure, aPriority, Standard_False)) if (aLayer->Remove (theStructure, aPriority, Standard_False))
{ {
if (theOldLayerId == Graphic3d_ZLayerId_Default if (aLayer->LayerSettings().IsRaytracable()
&& !aLayer->LayerSettings().IsImmediate()
&& theStructure->IsRaytracable()) && theStructure->IsRaytracable())
{ {
++myModifStateOfRaytraceable; ++myModifStateOfRaytraceable;
} }
--myNbStructures; --myNbStructures;
if (aLayer.IsImmediate()) if (aLayer->IsImmediate())
{ {
--myImmediateNbStructures; --myImmediateNbStructures;
} }
@ -413,25 +415,26 @@ void OpenGl_LayerList::ChangeLayer (const OpenGl_Structure* theStructure,
} }
// scan through layers and remove it // scan through layers and remove it
for (OpenGl_IndexedLayerIterator anIts (myLayers); anIts.More(); anIts.Next()) for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{ {
if (aSeqPos == anIts.Index()) const Handle(OpenGl_Layer)& aLayerEx = aLayerIter.ChangeValue();
if (aLayerEx == aLayer)
{ {
continue; continue;
} }
// try to remove structure and get priority value from this layer // try to remove structure and get priority value from this layer
OpenGl_Layer& aLayerEx = *anIts.ChangeValue(); if (aLayerEx->Remove (theStructure, aPriority, Standard_True))
if (aLayerEx.Remove (theStructure, aPriority, Standard_True))
{ {
if (anIts.Index() == myDefaultLayerIndex if (aLayerEx->LayerSettings().IsRaytracable()
&& !aLayerEx->LayerSettings().IsImmediate()
&& theStructure->IsRaytracable()) && theStructure->IsRaytracable())
{ {
++myModifStateOfRaytraceable; ++myModifStateOfRaytraceable;
} }
--myNbStructures; --myNbStructures;
if (aLayerEx.IsImmediate()) if (aLayerEx->IsImmediate())
{ {
--myImmediateNbStructures; --myImmediateNbStructures;
} }
@ -452,15 +455,15 @@ void OpenGl_LayerList::ChangePriority (const OpenGl_Structure* theStructure,
const Graphic3d_ZLayerId theLayerId, const Graphic3d_ZLayerId theLayerId,
const Standard_Integer theNewPriority) const Standard_Integer theNewPriority)
{ {
Standard_Integer aSeqPos = myLayers.Lower(); const Handle(Graphic3d_Layer)* aLayerPtr = myLayerIds.Seek (theLayerId);
myLayerIds.Find (theLayerId, aSeqPos); const Handle(Graphic3d_Layer)& aLayer = aLayerPtr != NULL ? *aLayerPtr : myLayerIds.Find (Graphic3d_ZLayerId_Default);
OpenGl_Layer& aLayer = *myLayers.ChangeValue (aSeqPos);
Standard_Integer anOldPriority = -1; Standard_Integer anOldPriority = -1;
if (aLayer.Remove (theStructure, anOldPriority, Standard_True)) if (aLayer->Remove (theStructure, anOldPriority, Standard_True))
{ {
--myNbStructures; --myNbStructures;
if (aLayer.IsImmediate()) if (aLayer->IsImmediate())
{ {
--myImmediateNbStructures; --myImmediateNbStructures;
} }
@ -469,18 +472,18 @@ void OpenGl_LayerList::ChangePriority (const OpenGl_Structure* theStructure,
return; return;
} }
for (OpenGl_IndexedLayerIterator anIts (myLayers); anIts.More(); anIts.Next()) for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{ {
if (aSeqPos == anIts.Index()) const Handle(OpenGl_Layer)& aLayerEx = aLayerIter.ChangeValue();
if (aLayerEx == aLayer)
{ {
continue; continue;
} }
OpenGl_Layer& aLayerEx = *anIts.ChangeValue(); if (aLayerEx->Remove (theStructure, anOldPriority, Standard_True))
if (aLayerEx.Remove (theStructure, anOldPriority, Standard_True))
{ {
--myNbStructures; --myNbStructures;
if (aLayerEx.IsImmediate()) if (aLayerEx->IsImmediate())
{ {
--myImmediateNbStructures; --myImmediateNbStructures;
} }
@ -498,7 +501,12 @@ void OpenGl_LayerList::ChangePriority (const OpenGl_Structure* theStructure,
void OpenGl_LayerList::SetLayerSettings (const Graphic3d_ZLayerId theLayerId, void OpenGl_LayerList::SetLayerSettings (const Graphic3d_ZLayerId theLayerId,
const Graphic3d_ZLayerSettings& theSettings) const Graphic3d_ZLayerSettings& theSettings)
{ {
OpenGl_Layer& aLayer = Layer (theLayerId); Graphic3d_Layer& aLayer = Layer (theLayerId);
if (aLayer.LayerSettings().IsRaytracable() != theSettings.IsRaytracable()
&& aLayer.NbStructures() != 0)
{
++myModifStateOfRaytraceable;
}
if (aLayer.LayerSettings().IsImmediate() != theSettings.IsImmediate()) if (aLayer.LayerSettings().IsImmediate() != theSettings.IsImmediate())
{ {
if (theSettings.IsImmediate()) if (theSettings.IsImmediate())
@ -526,15 +534,15 @@ void OpenGl_LayerList::UpdateCulling (const Handle(OpenGl_Workspace)& theWorkspa
const Standard_Integer aViewId = theWorkspace->View()->Identification(); const Standard_Integer aViewId = theWorkspace->View()->Identification();
const Graphic3d_CullingTool& aSelector = theWorkspace->View()->BVHTreeSelector(); const Graphic3d_CullingTool& aSelector = theWorkspace->View()->BVHTreeSelector();
for (OpenGl_IndexedLayerIterator anIts (myLayers); anIts.More(); anIts.Next()) for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
{ {
OpenGl_Layer& aLayer = *anIts.ChangeValue(); const Handle(Graphic3d_Layer)& aLayer = aLayerIter.ChangeValue();
if (aLayer.IsImmediate() != theToDrawImmediate) if (aLayer->IsImmediate() != theToDrawImmediate)
{ {
continue; continue;
} }
aLayer.UpdateCulling (aViewId, aSelector, theWorkspace->View()->RenderingParams().FrustumCullingState); aLayer->UpdateCulling (aViewId, aSelector, theWorkspace->View()->RenderingParams().FrustumCullingState);
} }
aTimer.Stop(); aTimer.Stop();
@ -716,7 +724,7 @@ void OpenGl_LayerList::Render (const Handle(OpenGl_Workspace)& theWorkspace,
const bool toPerformDepthPrepass = theWorkspace->View()->RenderingParams().ToEnableDepthPrepass const bool toPerformDepthPrepass = theWorkspace->View()->RenderingParams().ToEnableDepthPrepass
&& aPrevSettings.DepthMask == GL_TRUE; && aPrevSettings.DepthMask == GL_TRUE;
const Handle(Graphic3d_LightSet) aLightsBack = aCtx->ShaderManager()->LightSourceState().LightSources(); const Handle(Graphic3d_LightSet) aLightsBack = aCtx->ShaderManager()->LightSourceState().LightSources();
for (OpenGl_FilteredIndexedLayerIterator aLayerIterStart (myLayers, myDefaultLayerIndex, theToDrawImmediate, theLayersToProcess); aLayerIterStart.More();) for (OpenGl_FilteredIndexedLayerIterator aLayerIterStart (myLayers, theToDrawImmediate, theLayersToProcess); aLayerIterStart.More();)
{ {
bool hasSkippedDepthLayers = false; bool hasSkippedDepthLayers = false;
for (int aPassIter = toPerformDepthPrepass ? 0 : 2; aPassIter < 3; ++aPassIter) for (int aPassIter = toPerformDepthPrepass ? 0 : 2; aPassIter < 3; ++aPassIter)

View File

@ -29,9 +29,6 @@ class OpenGl_Structure;
class OpenGl_Workspace; class OpenGl_Workspace;
struct OpenGl_GlobalLayerSettings; struct OpenGl_GlobalLayerSettings;
typedef NCollection_Sequence<Handle(OpenGl_Layer)> OpenGl_SequenceOfLayers;
typedef NCollection_DataMap<int, int> OpenGl_LayerSeqIds;
//! Class defining the list of layers. //! Class defining the list of layers.
class OpenGl_LayerList class OpenGl_LayerList
{ {
@ -53,7 +50,14 @@ public:
Standard_Integer NbImmediateStructures() const { return myImmediateNbStructures; } Standard_Integer NbImmediateStructures() const { return myImmediateNbStructures; }
//! Insert a new layer with id. //! Insert a new layer with id.
void AddLayer (const Graphic3d_ZLayerId theLayerId); void InsertLayerBefore (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter);
//! Insert a new layer with id.
void InsertLayerAfter (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore);
//! Remove layer by its id. //! Remove layer by its id.
void RemoveLayer (const Graphic3d_ZLayerId theLayerId); void RemoveLayer (const Graphic3d_ZLayerId theLayerId);
@ -82,10 +86,10 @@ public:
const Standard_Integer theNewPriority); const Standard_Integer theNewPriority);
//! Returns reference to the layer with given ID. //! Returns reference to the layer with given ID.
OpenGl_Layer& Layer (const Graphic3d_ZLayerId theLayerId); OpenGl_Layer& Layer (const Graphic3d_ZLayerId theLayerId) { return *myLayerIds.Find (theLayerId); }
//! Returns reference to the layer with given ID. //! Returns reference to the layer with given ID.
const OpenGl_Layer& Layer (const Graphic3d_ZLayerId theLayerId) const; const OpenGl_Layer& Layer (const Graphic3d_ZLayerId theLayerId) const { return *myLayerIds.Find (theLayerId); }
//! Assign new settings to the layer. //! Assign new settings to the layer.
void SetLayerSettings (const Graphic3d_ZLayerId theLayerId, void SetLayerSettings (const Graphic3d_ZLayerId theLayerId,
@ -103,10 +107,10 @@ public:
OpenGl_FrameBuffer* theOitAccumFbo) const; OpenGl_FrameBuffer* theOitAccumFbo) const;
//! Returns the set of OpenGL Z-layers. //! Returns the set of OpenGL Z-layers.
const OpenGl_SequenceOfLayers& Layers() const { return myLayers; } const NCollection_List<Handle(Graphic3d_Layer)>& Layers() const { return myLayers; }
//! Returns the map of Z-layer IDs to indexes. //! Returns the map of Z-layer IDs to indexes.
const OpenGl_LayerSeqIds& LayerIDs() const { return myLayerIds; } const NCollection_DataMap<Graphic3d_ZLayerId, Handle(Graphic3d_Layer)>& LayerIDs() const { return myLayerIds; }
//! Marks BVH tree for given priority list as dirty and //! Marks BVH tree for given priority list as dirty and
//! marks primitive set for rebuild. //! marks primitive set for rebuild.
@ -134,13 +138,14 @@ protected:
{ {
if (theSize > 0) if (theSize > 0)
{ {
myStackSpace = new NCollection_Array1<const Graphic3d_Layer*> (1, theSize); myStackSpace.Resize (1, theSize, false);
myStackSpace->Init (NULL); myStackSpace.Init (NULL);
myBackPtr = myStackSpace->begin(); myBackPtr = myStackSpace.begin();
} }
else else
{ {
myStackSpace.Nullify(); NCollection_Array1<const Graphic3d_Layer*> aDummy;
myStackSpace.Move (aDummy);
myBackPtr = iterator(); myBackPtr = iterator();
} }
} }
@ -148,18 +153,15 @@ protected:
//! Clear stack. //! Clear stack.
void Clear() void Clear()
{ {
if (!myStackSpace.IsNull()) myStackSpace.Init (NULL);
{ myBackPtr = myStackSpace.begin();
myStackSpace->Init (NULL);
myBackPtr = myStackSpace->begin();
}
} }
//! Push a new layer reference to the stack. //! Push a new layer reference to the stack.
void Push (const OpenGl_Layer* theLayer) { (*myBackPtr++) = theLayer; } void Push (const OpenGl_Layer* theLayer) { (*myBackPtr++) = theLayer; }
//! Returns iterator to the origin of the stack. //! Returns iterator to the origin of the stack.
iterator Origin() const { return myStackSpace.IsNull() ? iterator() : myStackSpace->begin(); } iterator Origin() const { return myStackSpace.IsEmpty() ? iterator() : myStackSpace.begin(); }
//! Returns iterator to the back of the stack (after last item added). //! Returns iterator to the back of the stack (after last item added).
iterator Back() const { return myBackPtr; } iterator Back() const { return myBackPtr; }
@ -169,7 +171,7 @@ protected:
private: private:
NCollection_Handle<NCollection_Array1<const OpenGl_Layer*> > myStackSpace; NCollection_Array1<const OpenGl_Layer*> myStackSpace;
iterator myBackPtr; iterator myBackPtr;
}; };
@ -195,11 +197,9 @@ protected:
protected: protected:
// number of structures temporary put to default layer NCollection_List<Handle(Graphic3d_Layer)> myLayers;
OpenGl_SequenceOfLayers myLayers; NCollection_DataMap<Graphic3d_ZLayerId, Handle(Graphic3d_Layer)> myLayerIds;
OpenGl_LayerSeqIds myLayerIds;
Handle(Select3D_BVHBuilder3d) myBVHBuilder; //!< BVH tree builder for frustom culling Handle(Select3D_BVHBuilder3d) myBVHBuilder; //!< BVH tree builder for frustom culling
Standard_Integer myDefaultLayerIndex; //!< index of Graphic3d_ZLayerId_Default layer in myLayers sequence
Standard_Integer myNbPriorities; Standard_Integer myNbPriorities;
Standard_Integer myNbStructures; Standard_Integer myNbStructures;

View File

@ -488,12 +488,25 @@ void OpenGl_View::SetBackgroundImageStyle (const Aspect_FillMethod theFillStyle)
} }
//======================================================================= //=======================================================================
//function : AddZLayer //function : InsertLayerBefore
//purpose : //purpose :
//======================================================================= //=======================================================================
void OpenGl_View::AddZLayer (const Graphic3d_ZLayerId theLayerId) void OpenGl_View::InsertLayerBefore (const Graphic3d_ZLayerId theLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter)
{ {
myZLayers.AddLayer (theLayerId); myZLayers.InsertLayerBefore (theLayerId, theSettings, theLayerAfter);
}
//=======================================================================
//function : InsertLayerAfter
//purpose :
//=======================================================================
void OpenGl_View::InsertLayerAfter (const Graphic3d_ZLayerId theLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore)
{
myZLayers.InsertLayerAfter (theLayerId, theSettings, theLayerBefore);
} }
//======================================================================= //=======================================================================
@ -522,83 +535,74 @@ void OpenGl_View::SetZLayerSettings (const Graphic3d_ZLayerId theLayerId,
Standard_Integer OpenGl_View::ZLayerMax() const Standard_Integer OpenGl_View::ZLayerMax() const
{ {
Standard_Integer aLayerMax = Graphic3d_ZLayerId_Default; Standard_Integer aLayerMax = Graphic3d_ZLayerId_Default;
for (OpenGl_LayerSeqIds::Iterator aMapIt(myZLayers.LayerIDs()); aMapIt.More(); aMapIt.Next()) for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myZLayers.Layers()); aLayerIter.More(); aLayerIter.Next())
{ {
aLayerMax = Max (aLayerMax, aMapIt.Value()); aLayerMax = Max (aLayerMax, aLayerIter.Value()->LayerId());
} }
return aLayerMax; return aLayerMax;
} }
//======================================================================= //=======================================================================
//function : InvalidateZLayerBoundingBox //function : Layers
//purpose : //purpose :
//======================================================================= //=======================================================================
void OpenGl_View::InvalidateZLayerBoundingBox (const Graphic3d_ZLayerId theLayerId) const const NCollection_List<Handle(Graphic3d_Layer)>& OpenGl_View::Layers() const
{ {
if (myZLayers.LayerIDs().IsBound (theLayerId)) return myZLayers.Layers();
{
myZLayers.Layer (theLayerId).InvalidateBoundingBox();
}
else
{
const Standard_Integer aLayerMax = ZLayerMax();
for (Standard_Integer aLayerId = Graphic3d_ZLayerId_Default; aLayerId < aLayerMax; ++aLayerId)
{
if (myZLayers.LayerIDs().IsBound (aLayerId))
{
const OpenGl_Layer& aLayer = myZLayers.Layer (aLayerId);
if (aLayer.NbOfTransformPersistenceObjects() > 0)
{
aLayer.InvalidateBoundingBox();
}
}
}
}
} }
//======================================================================= //=======================================================================
//function : ZLayerBoundingBox //function : Layer
//purpose : //purpose :
//======================================================================= //=======================================================================
Bnd_Box OpenGl_View::ZLayerBoundingBox (const Graphic3d_ZLayerId theLayerId, Handle(Graphic3d_Layer) OpenGl_View::Layer (const Graphic3d_ZLayerId theLayerId) const
const Handle(Graphic3d_Camera)& theCamera,
const Standard_Integer theWindowWidth,
const Standard_Integer theWindowHeight,
const Standard_Boolean theToIncludeAuxiliary) const
{ {
Bnd_Box aBox; Handle(Graphic3d_Layer) aLayer;
if (myZLayers.LayerIDs().IsBound (theLayerId)) if (theLayerId != Graphic3d_ZLayerId_UNKNOWN)
{ {
aBox = myZLayers.Layer (theLayerId).BoundingBox (Identification(), myZLayers.LayerIDs().Find (theLayerId, aLayer);
theCamera,
theWindowWidth,
theWindowHeight,
theToIncludeAuxiliary);
} }
return aLayer;
}
//=======================================================================
//function : MinMaxValues
//purpose :
//=======================================================================
Bnd_Box OpenGl_View::MinMaxValues (const Standard_Boolean theToIncludeAuxiliary) const
{
if (!IsDefined())
{
return Bnd_Box();
}
Bnd_Box aBox = base_type::MinMaxValues (theToIncludeAuxiliary);
// add bounding box of gradient/texture background for proper Z-fit // add bounding box of gradient/texture background for proper Z-fit
if (theToIncludeAuxiliary if (theToIncludeAuxiliary
&& theLayerId == Graphic3d_ZLayerId_BotOSD
&& (myBgTextureArray->IsDefined() && (myBgTextureArray->IsDefined()
|| myBgGradientArray->IsDefined())) || myBgGradientArray->IsDefined()))
{ {
const Handle(Graphic3d_Camera)& aCamera = Camera();
Graphic3d_Vec2i aWinSize;
Window()->Size (aWinSize.x(), aWinSize.y());
// Background is drawn using 2D transformation persistence // Background is drawn using 2D transformation persistence
// (e.g. it is actually placed in 3D coordinates within active camera position). // (e.g. it is actually placed in 3D coordinates within active camera position).
// We add here full-screen plane with 2D transformation persistence // We add here full-screen plane with 2D transformation persistence
// for simplicity (myBgTextureArray might define a little bit different options // for simplicity (myBgTextureArray might define a little bit different options
// but it is updated within ::Render()) // but it is updated within ::Render())
const Graphic3d_Mat4d& aProjectionMat = theCamera->ProjectionMatrix(); const Graphic3d_Mat4d& aProjectionMat = aCamera->ProjectionMatrix();
const Graphic3d_Mat4d& aWorldViewMat = theCamera->OrientationMatrix(); const Graphic3d_Mat4d& aWorldViewMat = aCamera->OrientationMatrix();
Graphic3d_BndBox3d aBox2d (Graphic3d_Vec3d (0.0, 0.0, 0.0), Graphic3d_BndBox3d aBox2d (Graphic3d_Vec3d (0.0, 0.0, 0.0),
Graphic3d_Vec3d (double(theWindowWidth), double(theWindowHeight), 0.0)); Graphic3d_Vec3d (double(aWinSize.x()), double(aWinSize.y()), 0.0));
Graphic3d_TransformPers aTrsfPers (Graphic3d_TMF_2d, Aspect_TOTP_LEFT_LOWER); Graphic3d_TransformPers aTrsfPers (Graphic3d_TMF_2d, Aspect_TOTP_LEFT_LOWER);
aTrsfPers.Apply (theCamera, aTrsfPers.Apply (aCamera,
aProjectionMat, aProjectionMat,
aWorldViewMat, aWorldViewMat,
theWindowWidth, aWinSize.x(),
theWindowHeight, aWinSize.y(),
aBox2d); aBox2d);
aBox.Add (gp_Pnt (aBox2d.CornerMin().x(), aBox2d.CornerMin().y(), aBox2d.CornerMin().z())); aBox.Add (gp_Pnt (aBox2d.CornerMin().x(), aBox2d.CornerMin().y(), aBox2d.CornerMin().z()));
aBox.Add (gp_Pnt (aBox2d.CornerMax().x(), aBox2d.CornerMax().y(), aBox2d.CornerMax().z())); aBox.Add (gp_Pnt (aBox2d.CornerMax().x(), aBox2d.CornerMax().y(), aBox2d.CornerMax().z()));
@ -607,26 +611,6 @@ Bnd_Box OpenGl_View::ZLayerBoundingBox (const Graphic3d_ZLayerId theLayer
return aBox; return aBox;
} }
//=======================================================================
//function : considerZoomPersistenceObjects
//purpose :
//=======================================================================
Standard_Real OpenGl_View::considerZoomPersistenceObjects (const Graphic3d_ZLayerId theLayerId,
const Handle(Graphic3d_Camera)& theCamera,
const Standard_Integer theWindowWidth,
const Standard_Integer theWindowHeight) const
{
if (myZLayers.LayerIDs().IsBound (theLayerId))
{
return myZLayers.Layer (theLayerId).considerZoomPersistenceObjects (Identification(),
theCamera,
theWindowWidth,
theWindowHeight);
}
return 1.0;
}
//======================================================================= //=======================================================================
//function : FBO //function : FBO
//purpose : //purpose :

View File

@ -136,8 +136,21 @@ public:
//! Marks BVH tree and the set of BVH primitives of correspondent priority list with id theLayerId as outdated. //! Marks BVH tree and the set of BVH primitives of correspondent priority list with id theLayerId as outdated.
Standard_EXPORT virtual void InvalidateBVHData (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE; Standard_EXPORT virtual void InvalidateBVHData (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE;
//! Insert a new top-level z layer with the given ID. //! Add a layer to the view.
Standard_EXPORT virtual void AddZLayer (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE; //! @param theNewLayerId [in] id of new layer, should be > 0 (negative values are reserved for default layers).
//! @param theSettings [in] new layer settings
//! @param theLayerAfter [in] id of layer to append new layer before
Standard_EXPORT virtual void InsertLayerBefore (const Graphic3d_ZLayerId theLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter) Standard_OVERRIDE;
//! Add a layer to the view.
//! @param theNewLayerId [in] id of new layer, should be > 0 (negative values are reserved for default layers).
//! @param theSettings [in] new layer settings
//! @param theLayerBefore [in] id of layer to append new layer after
Standard_EXPORT virtual void InsertLayerAfter (const Graphic3d_ZLayerId theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore) Standard_OVERRIDE;
//! Remove a z layer with the given ID. //! Remove a z layer with the given ID.
Standard_EXPORT virtual void RemoveZLayer (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE; Standard_EXPORT virtual void RemoveZLayer (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE;
@ -150,23 +163,18 @@ public:
//! First layer ID is Graphic3d_ZLayerId_Default, last ID is ZLayerMax(). //! First layer ID is Graphic3d_ZLayerId_Default, last ID is ZLayerMax().
Standard_EXPORT virtual Standard_Integer ZLayerMax() const Standard_OVERRIDE; Standard_EXPORT virtual Standard_Integer ZLayerMax() const Standard_OVERRIDE;
//! Returns the bounding box of all structures displayed in the Z layer. //! Returns the list of layers.
//! Never fails. If Z layer does not exist nothing happens. Standard_EXPORT virtual const NCollection_List<Handle(Graphic3d_Layer)>& Layers() const Standard_OVERRIDE;
Standard_EXPORT virtual void InvalidateZLayerBoundingBox (const Graphic3d_ZLayerId theLayerId) const Standard_OVERRIDE;
//! Returns the bounding box of all structures displayed in the Z layer. //! Returns layer with given ID or NULL if undefined.
//! If Z layer does not exist the empty box is returned. Standard_EXPORT virtual Handle(Graphic3d_Layer) Layer (const Graphic3d_ZLayerId theLayerId) const Standard_OVERRIDE;
//! @param theLayerId layer identifier
//! @param theCamera camera definition //! Returns the bounding box of all structures displayed in the view.
//! @param theWindowWidth viewport width (for applying transformation-persistence) //! If theToIncludeAuxiliary is TRUE, then the boundary box also includes minimum and maximum limits
//! @param theWindowHeight viewport height (for applying transformation-persistence) //! of graphical elements forming parts of infinite and other auxiliary structures.
//! @param theToIncludeAuxiliary consider also auxiliary presentations (with infinite flag or with trihedron transformation persistence) //! @param theToIncludeAuxiliary consider also auxiliary presentations (with infinite flag or with trihedron transformation persistence)
//! @return computed bounding box //! @return computed bounding box
Standard_EXPORT virtual Bnd_Box ZLayerBoundingBox (const Graphic3d_ZLayerId theLayerId, Standard_EXPORT virtual Bnd_Box MinMaxValues (const Standard_Boolean theToIncludeAuxiliary) const Standard_OVERRIDE;
const Handle(Graphic3d_Camera)& theCamera,
const Standard_Integer theWindowWidth,
const Standard_Integer theWindowHeight,
const Standard_Boolean theToIncludeAuxiliary) const Standard_OVERRIDE;
//! Returns pointer to an assigned framebuffer object. //! Returns pointer to an assigned framebuffer object.
Standard_EXPORT virtual Handle(Standard_Transient) FBO() const Standard_OVERRIDE; Standard_EXPORT virtual Handle(Standard_Transient) FBO() const Standard_OVERRIDE;
@ -409,12 +417,6 @@ private:
Standard_EXPORT virtual void changePriority (const Handle(Graphic3d_CStructure)& theCStructure, Standard_EXPORT virtual void changePriority (const Handle(Graphic3d_CStructure)& theCStructure,
const Standard_Integer theNewPriority) Standard_OVERRIDE; const Standard_Integer theNewPriority) Standard_OVERRIDE;
//! Returns zoom-scale factor.
Standard_EXPORT virtual Standard_Real considerZoomPersistenceObjects (const Graphic3d_ZLayerId theLayerId,
const Handle(Graphic3d_Camera)& theCamera,
const Standard_Integer theWindowWidth,
const Standard_Integer theWindowHeight) const Standard_OVERRIDE;
private: private:
//! Copy content of Back buffer to the Front buffer. //! Copy content of Back buffer to the Front buffer.

View File

@ -107,12 +107,17 @@ Standard_Boolean OpenGl_View::updateRaytraceGeometry (const RaytraceUpdateMode
// of changes in OpenGL scene (only for path tracing) // of changes in OpenGL scene (only for path tracing)
std::set<Standard_Integer> aNonRaytraceIDs; std::set<Standard_Integer> aNonRaytraceIDs;
const OpenGl_Layer& aLayer = myZLayers.Layer (Graphic3d_ZLayerId_Default); for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myZLayers.Layers()); aLayerIter.More(); aLayerIter.Next())
if (aLayer.NbStructures() != 0)
{ {
const Graphic3d_ArrayOfIndexedMapOfStructure& aStructArray = aLayer.ArrayOfStructures(); const Handle(OpenGl_Layer)& aLayer = aLayerIter.Value();
if (aLayer->NbStructures() == 0
|| !aLayer->LayerSettings().IsRaytracable()
|| aLayer->LayerSettings().IsImmediate())
{
continue;
}
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_Structure::StructIterator aStructIt (aStructArray.Value (anIndex)); aStructIt.More(); aStructIt.Next()) for (OpenGl_Structure::StructIterator aStructIt (aStructArray.Value (anIndex)); aStructIt.More(); aStructIt.Next())

View File

@ -1129,7 +1129,7 @@ void OpenGl_View::renderStructs (Graphic3d_Camera::Projection theProjection,
} }
// Render non-polygonal elements in default layer // Render non-polygonal elements in default layer
myZLayers.Render (myWorkspace, theToDrawImmediate, OpenGl_LF_Default, theReadDrawFbo, theOitAccumFbo); myZLayers.Render (myWorkspace, theToDrawImmediate, OpenGl_LF_RayTracable, theReadDrawFbo, theOitAccumFbo);
} }
myWorkspace->SetRenderFilter (aPrevFilter); myWorkspace->SetRenderFilter (aPrevFilter);
} }

View File

@ -275,26 +275,37 @@ void V3d_Viewer::DelView (const Handle(V3d_View)& theView)
} }
//======================================================================= //=======================================================================
//function : AddZLayer //function : InsertLayerBefore
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_Boolean V3d_Viewer::AddZLayer (Graphic3d_ZLayerId& theLayerId) Standard_Boolean V3d_Viewer::InsertLayerBefore (Graphic3d_ZLayerId& theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter)
{ {
try if (myZLayerGenId.Next (theNewLayerId))
{ {
OCC_CATCH_SIGNALS myLayerIds.Add (theNewLayerId);
theLayerId = myZLayerGenId.Next(); myDriver->InsertLayerBefore (theNewLayerId, theSettings, theLayerAfter);
}
catch (Aspect_IdentDefinitionError const&)
{
// new index can't be generated
return Standard_False;
}
myLayerIds.Add (theLayerId);
myDriver->AddZLayer (theLayerId);
return Standard_True; return Standard_True;
}
return Standard_False;
}
//=======================================================================
//function : InsertLayerAfter
//purpose :
//=======================================================================
Standard_Boolean V3d_Viewer::InsertLayerAfter (Graphic3d_ZLayerId& theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore)
{
if (myZLayerGenId.Next (theNewLayerId))
{
myLayerIds.Add (theNewLayerId);
myDriver->InsertLayerAfter (theNewLayerId, theSettings, theLayerBefore);
return Standard_True;
}
return Standard_False;
} }
//======================================================================= //=======================================================================
@ -339,7 +350,7 @@ void V3d_Viewer::SetZLayerSettings (const Graphic3d_ZLayerId theLayerId, const G
//function : ZLayerSettings //function : ZLayerSettings
//purpose : //purpose :
//======================================================================= //=======================================================================
Graphic3d_ZLayerSettings V3d_Viewer::ZLayerSettings (const Graphic3d_ZLayerId theLayerId) const Graphic3d_ZLayerSettings& V3d_Viewer::ZLayerSettings (const Graphic3d_ZLayerId theLayerId) const
{ {
return myDriver->ZLayerSettings (theLayerId); return myDriver->ZLayerSettings (theLayerId);
} }

View File

@ -190,9 +190,39 @@ public:
//! Add a new top-level Z layer to all managed views and get its ID as <theLayerId> value. //! Add a new top-level Z layer to all managed views and get its ID as <theLayerId> value.
//! The Z layers are controlled entirely by viewer, it is not possible to add a layer to a particular view. //! The Z layers are controlled entirely by viewer, it is not possible to add a layer to a particular view.
//! The method returns Standard_False if the layer can not be created. //! Custom layers will be inserted before Graphic3d_ZLayerId_Top (e.g. between Graphic3d_ZLayerId_Default and before Graphic3d_ZLayerId_Top).
//! The layer mechanism allows to display structures in higher layers in overlay of structures in lower layers. //! @param theLayerId [out] id of created layer
Standard_EXPORT Standard_Boolean AddZLayer (Graphic3d_ZLayerId& theLayerId); //! @param theSettings [in] new layer settings
//! @return FALSE if the layer can not be created
Standard_Boolean AddZLayer (Graphic3d_ZLayerId& theLayerId,
const Graphic3d_ZLayerSettings& theSettings = Graphic3d_ZLayerSettings())
{
return InsertLayerBefore (theLayerId, theSettings, Graphic3d_ZLayerId_Top);
}
//! Add a new top-level Z layer to all managed views and get its ID as <theLayerId> value.
//! The Z layers are controlled entirely by viewer, it is not possible to add a layer to a particular view.
//! Layer rendering order is defined by its position in list (altered by theLayerAfter)
//! and IsImmediate() flag (all layers with IsImmediate() flag are drawn afterwards);
//! @param theNewLayerId [out] id of created layer; layer id is arbitrary and does not depend on layer position in the list
//! @param theSettings [in] new layer settings
//! @param theLayerAfter [in] id of layer to append new layer before
//! @return FALSE if the layer can not be created
Standard_EXPORT Standard_Boolean InsertLayerBefore (Graphic3d_ZLayerId& theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerAfter);
//! Add a new top-level Z layer to all managed views and get its ID as <theLayerId> value.
//! The Z layers are controlled entirely by viewer, it is not possible to add a layer to a particular view.
//! Layer rendering order is defined by its position in list (altered by theLayerAfter)
//! and IsImmediate() flag (all layers with IsImmediate() flag are drawn afterwards);
//! @param theNewLayerId [out] id of created layer; layer id is arbitrary and does not depend on layer position in the list
//! @param theSettings [in] new layer settings
//! @param theLayerBefore [in] id of layer to append new layer after
//! @return FALSE if the layer can not be created
Standard_EXPORT Standard_Boolean InsertLayerAfter (Graphic3d_ZLayerId& theNewLayerId,
const Graphic3d_ZLayerSettings& theSettings,
const Graphic3d_ZLayerId theLayerBefore);
//! Remove Z layer with ID <theLayerId>. //! Remove Z layer with ID <theLayerId>.
//! Method returns Standard_False if the layer can not be removed or doesn't exists. //! Method returns Standard_False if the layer can not be removed or doesn't exists.
@ -200,7 +230,7 @@ public:
Standard_EXPORT Standard_Boolean RemoveZLayer (const Graphic3d_ZLayerId theLayerId); Standard_EXPORT Standard_Boolean RemoveZLayer (const Graphic3d_ZLayerId theLayerId);
//! Returns the settings of a single Z layer. //! Returns the settings of a single Z layer.
Standard_EXPORT Graphic3d_ZLayerSettings ZLayerSettings (const Graphic3d_ZLayerId theLayerId); Standard_EXPORT const Graphic3d_ZLayerSettings& ZLayerSettings (const Graphic3d_ZLayerId theLayerId) const;
//! 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_EXPORT void SetZLayerSettings (const Graphic3d_ZLayerId theLayerId, const Graphic3d_ZLayerSettings& theSettings);

View File

@ -5322,6 +5322,7 @@ static int VZLayer (Draw_Interpretor& theDI,
} }
} }
Graphic3d_ZLayerId anOtherLayerId = Graphic3d_ZLayerId_UNKNOWN;
for (; anArgIter < theArgNb; ++anArgIter) for (; anArgIter < theArgNb; ++anArgIter)
{ {
// perform operation // perform operation
@ -5343,6 +5344,34 @@ static int VZLayer (Draw_Interpretor& theDI,
theDI << aLayerId; theDI << aLayerId;
} }
else if (anArg == "-insertbefore"
&& anArgIter + 1 < theArgNb
&& ViewerTest::ParseZLayer (theArgVec[anArgIter + 1], anOtherLayerId))
{
++anArgIter;
aLayerId = Graphic3d_ZLayerId_UNKNOWN;
if (!aViewer->InsertLayerBefore (aLayerId, Graphic3d_ZLayerSettings(), anOtherLayerId))
{
std::cout << "Error: can not add a new z layer!\n";
return 0;
}
theDI << aLayerId;
}
else if (anArg == "-insertafter"
&& anArgIter + 1 < theArgNb
&& ViewerTest::ParseZLayer (theArgVec[anArgIter + 1], anOtherLayerId))
{
++anArgIter;
aLayerId = Graphic3d_ZLayerId_UNKNOWN;
if (!aViewer->InsertLayerAfter (aLayerId, Graphic3d_ZLayerSettings(), anOtherLayerId))
{
std::cout << "Error: can not add a new z layer!\n";
return 0;
}
theDI << aLayerId;
}
else if (anArg == "-del" else if (anArg == "-del"
|| anArg == "-delete" || anArg == "-delete"
|| anArg == "del") || anArg == "del")
@ -5584,6 +5613,10 @@ static int VZLayer (Draw_Interpretor& theDI,
{ {
aSettings.SetEnvironmentTexture (toEnable); aSettings.SetEnvironmentTexture (toEnable);
} }
else if (aSubOp == "raytracing")
{
aSettings.SetRaytracable (toEnable);
}
aViewer->SetZLayerSettings (aLayerId, aSettings); aViewer->SetZLayerSettings (aLayerId, aSettings);
} }
@ -13336,12 +13369,14 @@ void ViewerTest::ViewerCommands(Draw_Interpretor& theCommands)
__FILE__, VTile, group); __FILE__, VTile, group);
theCommands.Add("vzlayer", theCommands.Add("vzlayer",
"vzlayer [layerId]" "vzlayer [layerId]"
"\n\t\t: [-add|-delete|-get|-settings]" "\n\t\t: [-add|-delete|-get|-settings] [-insertBefore AnotherLayer] [-insertAfter AnotherLayer]"
"\n\t\t: [-origin X Y Z] [-cullDist Distance] [-cullSize Size]" "\n\t\t: [-origin X Y Z] [-cullDist Distance] [-cullSize Size]"
"\n\t\t: [-enable|-disable {depthTest|depthWrite|depthClear|depthoffset}]" "\n\t\t: [-enable|-disable {depthTest|depthWrite|depthClear|depthoffset}]"
"\n\t\t: [-enable|-disable {positiveOffset|negativeOffset|textureenv}]" "\n\t\t: [-enable|-disable {positiveOffset|negativeOffset|textureenv|rayTracing}]"
"\n\t\t: ZLayer list management:" "\n\t\t: ZLayer list management:"
"\n\t\t: -add add new z layer to viewer and print its id" "\n\t\t: -add add new z layer to viewer and print its id"
"\n\t\t: -insertBefore add new z layer and insert it before existing one"
"\n\t\t: -insertAfter add new z layer and insert it after existing one"
"\n\t\t: -delete delete z layer" "\n\t\t: -delete delete z layer"
"\n\t\t: -get print sequence of z layers" "\n\t\t: -get print sequence of z layers"
"\n\t\t: -settings print status of z layer settings" "\n\t\t: -settings print status of z layer settings"

View File

@ -28,7 +28,7 @@ vzbufftrihedron
catch { vzlayer del 1 } catch { vzlayer del 1 }
set aLayerId [vzlayer add] set aLayerId [vzlayer add]
vzlayer $aLayerId -enable depthClear vzlayer $aLayerId -enable depthClear -disable rayTracing
vtrihedron trh vtrihedron trh
vdisplay -noupdate trh -layer $aLayerId -trihedron topRight 100 100 vdisplay -noupdate trh -layer $aLayerId -trihedron topRight 100 100