From 8edd427af3997521bda72ca3c416cc1d490565d5 Mon Sep 17 00:00:00 2001 From: nds Date: Tue, 3 Dec 2013 16:12:46 +0000 Subject: [PATCH] OCC functionality moving out from the widget --- src/HYDROCurveCreator/CurveCreator_Widget.cxx | 79 ++++++++++++------- src/HYDROCurveCreator/CurveCreator_Widget.h | 3 + 2 files changed, 52 insertions(+), 30 deletions(-) diff --git a/src/HYDROCurveCreator/CurveCreator_Widget.cxx b/src/HYDROCurveCreator/CurveCreator_Widget.cxx index e3bc69f8..96a838c6 100644 --- a/src/HYDROCurveCreator/CurveCreator_Widget.cxx +++ b/src/HYDROCurveCreator/CurveCreator_Widget.cxx @@ -1354,6 +1354,32 @@ void CurveCreator_Widget::getSelectedPonts( CurveCreator_ICurve::SectionToPointL thePoints.push_back( std::make_pair( getSectionId( i ), getPointId( i ) ) ); } + +bool CurveCreator_Widget::isIntersectVertexToPoint( const TopoDS_Vertex& theVertex, + const CurveCreator_ICurve::SectionToPoint& theSToPoint ) +{ + bool isIntersect = false; + + if ( theVertex.IsNull() ) + return isIntersect; + + gp_Pnt aPnt = BRep_Tool::Pnt( theVertex ); + + CurveCreator_ICurve::SectionToPointList aPoints; + findSectionsToPoints( aPnt.X(), aPnt.Y(), aPoints ); + + CurveCreator_ICurve::SectionToPointList::const_iterator anIt = aPoints.begin(), + aLast = aPoints.end(); + CurveCreator_ICurve::SectionToPoint aPoint; + for ( ; anIt != aLast && !isIntersect; anIt++ ) { + aPoint = *anIt; + isIntersect = aPoint.first == theSToPoint.first && aPoint.second == theSToPoint.second; + } + + return isIntersect; +} + + void CurveCreator_Widget::setSelectedPonts( const CurveCreator_ICurve::SectionToPointList& thePoints ) { if ( myDragStarted ) @@ -1366,10 +1392,12 @@ void CurveCreator_Widget::setSelectedPonts( const CurveCreator_ICurve::SectionTo AIS_ListOfInteractive aDisplayedList; ic->DisplayedObjects( aDisplayedList ); + ic->ClearSelected( Standard_False ); CurveCreator_ICurve::SectionToPointList::const_iterator anIt = thePoints.begin(), aLast = thePoints.end(); CurveCreator_ICurve::SectionToPoint aSToPoint; + bool isSelectedVertex = false; for( ; anIt != aLast; anIt++ ) { aSToPoint = *anIt; @@ -1379,40 +1407,31 @@ void CurveCreator_Widget::setSelectedPonts( const CurveCreator_ICurve::SectionTo if ( anAIS.IsNull() ) continue; Handle(AIS_Point) anAISPoint = Handle(AIS_Point)::DownCast( anAIS ); - if ( anAISPoint.IsNull() ) - continue; - - TopoDS_Vertex aVertex = TopoDS::Vertex( anAISPoint->Vertex() ); - - if ( aVertex.IsNull() ) - continue; - - gp_Pnt aPnt = BRep_Tool::Pnt( aVertex ); - - CurveCreator_ICurve::SectionToPointList aPoints; - findSectionsToPoints( aPnt.X(), aPnt.Y(), aPoints ); - - CurveCreator_ICurve::SectionToPointList::const_iterator anIt = aPoints.begin(), - aLast = aPoints.end(); - CurveCreator_ICurve::SectionToPoint aPoint; - for ( ; anIt != aLast; anIt++ ) { - aPoint = *anIt; - if ( aPoint.first == aSToPoint.first && aPoint.second == aSToPoint.second ) + if ( !anAISPoint.IsNull() ) { + TopoDS_Vertex aVertex = TopoDS::Vertex( anAISPoint->Vertex() ); + if ( isIntersectVertexToPoint( aVertex, aSToPoint ) ) aListToSelect.Append( anAIS ); } + else { + Handle(AIS_Shape) anAISShape = Handle(AIS_Shape)::DownCast( anAIS ); + if ( anAISShape.IsNull() ) + continue; + const TopoDS_Shape& aShape = anAISShape->Shape(); + TopExp_Explorer aExpV( aShape, TopAbs_VERTEX); + for ( ; aExpV.More(); aExpV.Next() ) + { + const TopoDS_Vertex& aVertex = TopoDS::Vertex( aExpV.Current() ); + if ( isIntersectVertexToPoint( aVertex, aSToPoint ) ) { + ic->AddOrRemoveSelected( aVertex, Standard_False ); + isSelectedVertex = true; + } + } + } } } - if ( thePoints.size() > 0 && aListToSelect.First() == aListToSelect.Last() ) { - /*TopExp_Explorer aExpF(myShape,TopAbs_FACE); - for (; aExpF.More(); aExpF.Next()) - { - const TopoDS_Face& aFace = TopoDS::Face(aExpF.Current()); - }*/ - } - - - ic->ClearSelected( Standard_False ); - setObjectsSelected( aListToSelect ); + ic->UpdateCurrentViewer(); + if ( !isSelectedVertex ) + setObjectsSelected( aListToSelect ); updateLocalPointView(); } diff --git a/src/HYDROCurveCreator/CurveCreator_Widget.h b/src/HYDROCurveCreator/CurveCreator_Widget.h index 43fdb492..6f073f16 100644 --- a/src/HYDROCurveCreator/CurveCreator_Widget.h +++ b/src/HYDROCurveCreator/CurveCreator_Widget.h @@ -34,6 +34,7 @@ #include #include #include +#include // TODO - remove class OCCViewer_Viewer; class OCCViewer_ViewPort3d; @@ -168,6 +169,8 @@ private: void setDragStarted( const bool theState, const QPoint& thePoint = QPoint() ); void getSelectedPonts( CurveCreator_ICurve::SectionToPointList& thePoints ); + bool isIntersectVertexToPoint( const TopoDS_Vertex& theVertex, + const CurveCreator_ICurve::SectionToPoint& theSToPoint ); void setSelectedPonts( const CurveCreator_ICurve::SectionToPointList& = CurveCreator_ICurve::SectionToPointList() ); -- 2.39.2