Salome HOME
Merge remote-tracking branch 'origin/Toolbars_Management'
[modules/shaper.git] / src / ModuleBase / ModuleBase_ISelection.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "ModuleBase_ISelection.h"
22
23 #include "ModuleBase_ViewerPrs.h"
24
25 #include <StdSelect_BRepOwner.hxx>
26 #include <TopoDS_Vertex.hxx>
27 #include <TopoDS.hxx>
28 #include <BRep_Tool.hxx>
29 #include <GeomAPI_Pnt.h>
30
31 //********************************************************************
32 void ModuleBase_ISelection::appendSelected(const QList<ModuleBase_ViewerPrsPtr> theValues,
33                                            QList<ModuleBase_ViewerPrsPtr>& theValuesTo)
34 {
35   // collect the objects from the viewer
36   QObjectPtrList anExistedObjects;
37   foreach(ModuleBase_ViewerPrsPtr aPrs, theValuesTo) {
38     if (aPrs->owner() && aPrs->object())
39       anExistedObjects.append(aPrs->object());
40   }
41
42   ObjectPtr anObject;
43   foreach(ModuleBase_ViewerPrsPtr aPrs, theValues) {
44     anObject = aPrs->object();
45     if (anObject.get() != NULL && !anExistedObjects.contains(anObject)) {
46       theValuesTo.append(std::shared_ptr<ModuleBase_ViewerPrs>(
47                new ModuleBase_ViewerPrs(anObject, GeomShapePtr(), NULL)));
48     }
49   }
50 }
51
52 //********************************************************************
53 ResultPtr ModuleBase_ISelection::getResult(const ModuleBase_ViewerPrsPtr& thePrs)
54 {
55   ResultPtr aResult;
56
57   if (thePrs->object().get())
58     aResult = std::dynamic_pointer_cast<ModelAPI_Result>(thePrs->object());
59   else if (!thePrs->owner().IsNull()) {
60     ObjectPtr anObject = getSelectableObject(thePrs->owner());
61     aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
62   }
63
64   return aResult;
65 }
66
67 //********************************************************************
68 GeomShapePtr ModuleBase_ISelection::getShape(const ModuleBase_ViewerPrsPtr& thePrs)
69 {
70   GeomShapePtr aShape;
71
72   const GeomShapePtr& aPrsShape = thePrs->shape();
73   // if only result is selected, an empty shape is set to the model
74   if (!aPrsShape.get() || aPrsShape->isNull()) {
75   }
76   else {
77     aShape = aPrsShape;
78     // If the result object is built on the same shape, the result shape here is empty one
79     ResultPtr aResult = getResult(thePrs);
80     if (aResult.get() && aShape->isEqual(aResult->shape()))
81       aShape = GeomShapePtr();
82   }
83   return aShape;
84 }
85
86 //********************************************************************
87 QList<ModuleBase_ViewerPrsPtr> ModuleBase_ISelection::getViewerPrs(const QObjectPtrList& theObjects)
88 {
89   QList<ModuleBase_ViewerPrsPtr> aSelectedPrs;
90   QObjectPtrList::const_iterator anIt = theObjects.begin(), aLast = theObjects.end();
91   for (; anIt != aLast; anIt++) {
92     ObjectPtr anObject = *anIt;
93     if (anObject.get() != NULL) {
94       aSelectedPrs.append(std::shared_ptr<ModuleBase_ViewerPrs>(
95                new ModuleBase_ViewerPrs(anObject, GeomShapePtr(), NULL)));
96     }
97   }
98   return aSelectedPrs;
99 }
100
101 //********************************************************************
102 void ModuleBase_ISelection::filterSelectionOnEqualPoints
103                                               (QList<ModuleBase_ViewerPrsPtr>& theSelected)
104 {
105   QList<ModuleBase_ViewerPrsPtr> aCandidatesToRemove;
106   QList<ModuleBase_ViewerPrsPtr>::const_iterator anIt = theSelected.begin(),
107                                               aLast = theSelected.end();
108   QList<ModuleBase_ViewerPrsPtr>::const_iterator aSubIt;
109
110   std::set<std::shared_ptr<GeomAPI_Vertex> > aVerticesMap;
111   for (; anIt != aLast; anIt++) {
112     ModuleBase_ViewerPrsPtr aPrs = *anIt;
113     std::shared_ptr<GeomAPI_Vertex> aGeomPrsVertex = getPresentationVertex(aPrs);
114     if (aGeomPrsVertex.get()) {
115       const TopoDS_Vertex& aPrsVertex = aGeomPrsVertex->impl<TopoDS_Vertex>();
116       std::set<std::shared_ptr<GeomAPI_Vertex> >::const_iterator anIt = aVerticesMap.begin(),
117                                                                  aLast = aVerticesMap.end();
118       bool aFound = false;
119       for (; anIt != aLast && !aFound; anIt++) {
120         std::shared_ptr<GeomAPI_Vertex> aGeomVertex = *anIt;
121         const TopoDS_Vertex& aVertex = aGeomVertex->impl<TopoDS_Vertex>();
122         gp_Pnt aPoint1 = BRep_Tool::Pnt(aVertex);
123         gp_Pnt aPoint2 = BRep_Tool::Pnt(aPrsVertex);
124
125         std::shared_ptr<GeomAPI_Pnt> aPnt1 = std::shared_ptr<GeomAPI_Pnt>
126                         (new GeomAPI_Pnt(aPoint1.X(), aPoint1.Y(), aPoint1.Z()));
127         std::shared_ptr<GeomAPI_Pnt> aPnt2 = std::shared_ptr<GeomAPI_Pnt>
128                         (new GeomAPI_Pnt(aPoint2.X(), aPoint2.Y(), aPoint2.Z()));
129         aFound = aPnt1->isEqual(aPnt2);
130       }
131       if (aFound) {
132         aCandidatesToRemove.append(aPrs);
133         continue;
134       }
135       aVerticesMap.insert(aGeomPrsVertex);
136     }
137   }
138   QList<ModuleBase_ViewerPrsPtr>::const_iterator aRemIt = aCandidatesToRemove.begin(),
139                                               aRemLast = aCandidatesToRemove.end();
140   for (; aRemIt != aRemLast; aRemIt++) {
141     theSelected.removeAll(*aRemIt);
142   }
143 }
144
145 std::shared_ptr<GeomAPI_Vertex> ModuleBase_ISelection::getPresentationVertex(
146                                                          const ModuleBase_ViewerPrsPtr& thePrs)
147 {
148   std::shared_ptr<GeomAPI_Vertex> aGeomVertex;
149   Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast(thePrs->owner());
150
151   if (!anOwner.IsNull() && anOwner->HasShape()) {
152     const TopoDS_Shape& aShape = anOwner->Shape();
153     if (aShape.ShapeType() == TopAbs_VERTEX) {
154       const TopoDS_Vertex& aVertex = TopoDS::Vertex(aShape);
155       if (!aVertex.IsNull())  {
156         gp_Pnt aPoint = BRep_Tool::Pnt(aVertex);
157         aGeomVertex = std::shared_ptr<GeomAPI_Vertex>(new GeomAPI_Vertex(aPoint.X(), aPoint.Y(),
158                                                                          aPoint.Z()));
159       }
160     }
161   }
162   return aGeomVertex;
163 }
164