From 5396886c908c744061a85bee70223cc7d1d41b11 Mon Sep 17 00:00:00 2001 From: vpa Date: Fri, 18 Dec 2015 21:29:13 +0300 Subject: [PATCH] 0026960: Visualization, TKOpenGl - update transformation of dynamically highlighted presentation - added method UpdateHighlightTrsf for immediate update of highlight presentation's transformation; - interfaces for immediate transformation update of corresponding presentations were added to entity owner classes; - test case for issue #26960 --- src/AIS/AIS_InteractiveContext.cxx | 9 ++++ src/PrsMgr/PrsMgr_PresentationManager.cxx | 62 +++++++++++++++++++++++ src/PrsMgr/PrsMgr_PresentationManager.hxx | 8 +++ src/SelectMgr/SelectMgr_EntityOwner.cxx | 14 +++++ src/SelectMgr/SelectMgr_EntityOwner.hxx | 6 ++- src/StdSelect/StdSelect_BRepOwner.cxx | 14 +++++ src/StdSelect/StdSelect_BRepOwner.hxx | 6 ++- tests/bugs/vis/bug26960 | 28 ++++++++++ 8 files changed, 144 insertions(+), 3 deletions(-) create mode 100644 tests/bugs/vis/bug26960 diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/AIS/AIS_InteractiveContext.cxx index a8c9cd4160..90a95ec5af 100644 --- a/src/AIS/AIS_InteractiveContext.cxx +++ b/src/AIS/AIS_InteractiveContext.cxx @@ -1431,6 +1431,15 @@ void AIS_InteractiveContext::SetLocation (const Handle(AIS_InteractiveObject)& t Handle(StdSelect_ViewerSelector3d) aTempSel = myLocalContexts (myCurLocalIndex)->MainSelector(); mgrSelector->Update (theIObj, aTempSel, Standard_False); } + + // if the object or its part is highlighted dynamically, it is necessary to apply location transformation + // to its highlight structure immediately + if (!myLastPicked.IsNull() && myLastPicked->Selectable() == theIObj) + { + myLastPicked->UpdateHighlightTrsf (myMainVwr, + myMainPM, + theIObj->HasDisplayMode() ? theIObj->DisplayMode() : 0); + } } //======================================================================= diff --git a/src/PrsMgr/PrsMgr_PresentationManager.cxx b/src/PrsMgr/PrsMgr_PresentationManager.cxx index c5ed8164bf..6c3d1bf2fd 100644 --- a/src/PrsMgr/PrsMgr_PresentationManager.cxx +++ b/src/PrsMgr/PrsMgr_PresentationManager.cxx @@ -669,3 +669,65 @@ void PrsMgr_PresentationManager::SetShadingAspect (const Handle(PrsMgr_Presentab aPrs->SetShadingAspect (theShadingAspect); } } + +namespace +{ + // ======================================================================= + // function : updatePrsTransformation + // purpose : Internal funtion that scans thePrsList for shadow presentations + // and applies transformation theTrsf to them in case if parent ID + // of shadow presentation is equal to theRefId + // ======================================================================= + void updatePrsTransformation (const PrsMgr_ListOfPresentations& thePrsList, + const Standard_Integer theRefId, + const Graphic3d_Mat4& theTrsf) + { + for (PrsMgr_ListOfPresentations::Iterator anIter (thePrsList); anIter.More(); anIter.Next()) + { + const Handle(Prs3d_Presentation)& aPrs = anIter.Value(); + if (aPrs.IsNull()) + continue; + + Handle(Prs3d_PresentationShadow) aShadowPrs = Handle(Prs3d_PresentationShadow)::DownCast (aPrs); + if (aShadowPrs.IsNull() || aShadowPrs->ParentId() != theRefId) + continue; + + aShadowPrs->CStructure()->Transformation = theTrsf; + } + } +} + +// ======================================================================= +// function : UpdateHighlightTrsf +// purpose : +// ======================================================================= +void PrsMgr_PresentationManager::UpdateHighlightTrsf (const Handle(V3d_Viewer)& theViewer, + const Handle(PrsMgr_PresentableObject)& theObj, + const Standard_Integer theMode, + const Handle(PrsMgr_PresentableObject)& theSelObj) +{ + if (theObj.IsNull()) + return; + + const Handle(Prs3d_Presentation)& aBasePrs = Presentation (theObj, theMode, Standard_False)->Presentation(); + const Handle(Prs3d_Presentation)& aParentPrs = theSelObj.IsNull() ? + aBasePrs : Presentation (theSelObj, theMode, Standard_False)->Presentation(); + const Standard_Integer aParentId = aParentPrs->CStructure()->Id; + + updatePrsTransformation (myImmediateList, aParentId, aBasePrs->CStructure()->Transformation); + + if (!myViewDependentImmediateList.IsEmpty()) + { + for (theViewer->InitActiveViews(); theViewer->MoreActiveViews(); theViewer->NextActiveViews()) + { + const Handle(Graphic3d_CView)& aView = theViewer->ActiveView()->View(); + Handle(Graphic3d_Structure) aViewDepParentPrs; + if (aView->IsComputed (aParentId, aViewDepParentPrs)) + { + updatePrsTransformation (myViewDependentImmediateList, + aViewDepParentPrs->CStructure()->Id, + aBasePrs->CStructure()->Transformation); + } + } + } +} diff --git a/src/PrsMgr/PrsMgr_PresentationManager.hxx b/src/PrsMgr/PrsMgr_PresentationManager.hxx index b08a438eea..ed7918d046 100644 --- a/src/PrsMgr/PrsMgr_PresentationManager.hxx +++ b/src/PrsMgr/PrsMgr_PresentationManager.hxx @@ -162,6 +162,14 @@ public: //! Optional argument theSelObj specifies parent decomposed object to inherit its view affinity. Standard_EXPORT Handle(PrsMgr_Presentation) Presentation (const Handle(PrsMgr_PresentableObject)& thePrsObject, const Standard_Integer theMode = 0, const Standard_Boolean theToCreate = Standard_False, const Handle(PrsMgr_PresentableObject)& theSelObj = NULL) const; + //! Allows to apply location transformation to shadow highlight presentation immediately. + //! @param theObj defines the base object, it local transformation will be applied to corresponding highlight structure + //! @param theMode defines display mode of the base object + //! @param theSelObj defines the object produced after decomposition of the base object for local selection + Standard_EXPORT void UpdateHighlightTrsf (const Handle(V3d_Viewer)& theViewer, + const Handle(PrsMgr_PresentableObject)& theObj, + const Standard_Integer theMode = 0, + const Handle(PrsMgr_PresentableObject)& theSelObj = NULL); diff --git a/src/SelectMgr/SelectMgr_EntityOwner.cxx b/src/SelectMgr/SelectMgr_EntityOwner.cxx index fef3faf8e1..560a32aaf4 100644 --- a/src/SelectMgr/SelectMgr_EntityOwner.cxx +++ b/src/SelectMgr/SelectMgr_EntityOwner.cxx @@ -164,3 +164,17 @@ void SelectMgr_EntityOwner::SetZLayer (const Standard_Integer ) { // } + +//======================================================================= +//function : UpdateHighlightTrsf +//purpose : +//======================================================================= +void SelectMgr_EntityOwner::UpdateHighlightTrsf (const Handle(V3d_Viewer)& theViewer, + const Handle(PrsMgr_PresentationManager3d)& theManager, + const Standard_Integer theDispMode) +{ + if (mySelectable == NULL) + return; + + theManager->UpdateHighlightTrsf (theViewer, mySelectable, theDispMode); +} diff --git a/src/SelectMgr/SelectMgr_EntityOwner.hxx b/src/SelectMgr/SelectMgr_EntityOwner.hxx index 97dcde28bf..1d0b6fcbb1 100644 --- a/src/SelectMgr/SelectMgr_EntityOwner.hxx +++ b/src/SelectMgr/SelectMgr_EntityOwner.hxx @@ -31,6 +31,7 @@ class Standard_NoSuchObject; class SelectMgr_SelectableObject; class PrsMgr_PresentationManager; class TopLoc_Location; +class V3d_Viewer; class SelectMgr_EntityOwner; @@ -130,7 +131,10 @@ public: //! Set Z layer ID and update all presentations. Standard_EXPORT virtual void SetZLayer (const Graphic3d_ZLayerId theLayerId); - + //! Implements immediate application of location transformation of parent object to dynamic highlight structure + Standard_EXPORT virtual void UpdateHighlightTrsf (const Handle(V3d_Viewer)& theViewer, + const Handle(PrsMgr_PresentationManager3d)& theManager, + const Standard_Integer theDispMode); DEFINE_STANDARD_RTTIEXT(SelectMgr_EntityOwner,SelectBasics_EntityOwner) diff --git a/src/StdSelect/StdSelect_BRepOwner.cxx b/src/StdSelect/StdSelect_BRepOwner.cxx index 4f258a9789..9189e410bf 100644 --- a/src/StdSelect/StdSelect_BRepOwner.cxx +++ b/src/StdSelect/StdSelect_BRepOwner.cxx @@ -244,3 +244,17 @@ void StdSelect_BRepOwner::SetZLayer (const Graphic3d_ZLayerId theLayerId) myPrsSh->SetZLayer (theLayerId); } } + +//======================================================================= +//function : UpdateHighlightTrsf +//purpose : +//======================================================================= +void StdSelect_BRepOwner::UpdateHighlightTrsf (const Handle(V3d_Viewer)& theViewer, + const Handle(PrsMgr_PresentationManager3d)& theManager, + const Standard_Integer theDispMode) +{ + if (myPrsSh.IsNull() && Selectable().IsNull()) + return; + + theManager->UpdateHighlightTrsf (theViewer, Selectable(), theDispMode, myPrsSh); +} diff --git a/src/StdSelect/StdSelect_BRepOwner.hxx b/src/StdSelect/StdSelect_BRepOwner.hxx index aad8db7da4..55bc9bc2f9 100644 --- a/src/StdSelect/StdSelect_BRepOwner.hxx +++ b/src/StdSelect/StdSelect_BRepOwner.hxx @@ -130,8 +130,10 @@ public: //! Set Z layer ID and update all presentations. Standard_EXPORT virtual void SetZLayer (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE; - - + //! Implements immediate application of location transformation of parent object to dynamic highlight structure + Standard_EXPORT virtual void UpdateHighlightTrsf (const Handle(V3d_Viewer)& theViewer, + const Handle(PrsMgr_PresentationManager3d)& theManager, + const Standard_Integer theDispMode) Standard_OVERRIDE; DEFINE_STANDARD_RTTIEXT(StdSelect_BRepOwner,SelectMgr_EntityOwner) diff --git a/tests/bugs/vis/bug26960 b/tests/bugs/vis/bug26960 new file mode 100644 index 0000000000..769d32ac84 --- /dev/null +++ b/tests/bugs/vis/bug26960 @@ -0,0 +1,28 @@ +puts "========" +puts "OCC26960" +puts "========" +puts "" +################################################################## +puts "Visualization, TKOpenGl - update transformation of dynamically highlighted presentation" +################################################################## + +pload VISUALIZATION MODELING + +box b 1 2 3 + +vclear +vinit View1 + +vdisplay -dispmode 1 -highmode 1 b +vfit +vselmode 4 1 +vmoveto 250 250 +if {[vreadpixel 350 140 rgb name] != "BLACK"} { + puts "ERROR: wrong inital location" +} +vsetlocation b 0.5 0 0 +if {[vreadpixel 350 140 rgb name] != "CYAN1"} { + puts "ERROR: the transformation was not applied to highlight structure" +} + +set only_screen 1