Salome HOME
Issue #2754: Objects of the same type can not have the same name.
[modules/shaper.git] / src / XGUI / XGUI_SelectionMgr.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 "XGUI_SelectionMgr.h"
22
23 #include "XGUI_Workshop.h"
24 #include "XGUI_ObjectsBrowser.h"
25 #include "XGUI_SalomeConnector.h"
26 #include "XGUI_ViewerProxy.h"
27 #include "XGUI_Displayer.h"
28 #include "XGUI_Selection.h"
29 #include "XGUI_OperationMgr.h"
30 #include "XGUI_SelectionActivate.h"
31
32 #ifndef HAVE_SALOME
33 #include <AppElements_MainWindow.h>
34 #endif
35
36 #include <ModelAPI_Feature.h>
37 #include <ModelAPI_Session.h>
38 #include <ModelAPI_AttributeDocRef.h>
39 #include <ModelAPI_Data.h>
40 #include <ModelAPI_Result.h>
41 #include <ModelAPI_Object.h>
42 #include <ModelAPI_ResultBody.h>
43 #include <ModelAPI_Tools.h>
44
45 #include <GeomAPI_Shape.h>
46
47 #include <ModuleBase_ViewerPrs.h>
48 #include <ModuleBase_Tools.h>
49
50 #include <SelectMgr_ListIteratorOfListOfFilter.hxx>
51 #include <TopExp_Explorer.hxx>
52 #include <TopoDS_Shape.hxx>
53 #include <TopTools_MapOfShape.hxx>
54
55 #ifdef TINSPECTOR
56 #include <inspector/VInspectorAPI_CallBack.hxx>
57 #endif
58
59 #define OPTIMIZATION_LEVEL 50
60
61
62 XGUI_SelectionMgr::XGUI_SelectionMgr(XGUI_Workshop* theParent)
63     : QObject(theParent),
64       myWorkshop(theParent)
65 {
66   mySelection = new XGUI_Selection(myWorkshop);
67 }
68
69 XGUI_SelectionMgr::~XGUI_SelectionMgr()
70 {
71   delete mySelection;
72 }
73
74 //**************************************************************
75 void XGUI_SelectionMgr::connectViewers()
76 {
77   connect(myWorkshop->objectBrowser(), SIGNAL(selectionChanged()), this,
78           SLOT(onObjectBrowserSelection()));
79
80   //Connect to other viewers
81   connect(myWorkshop->viewer(), SIGNAL(selectionChanged()), this, SLOT(onViewerSelection()));
82 }
83
84 //**************************************************************
85 void XGUI_SelectionMgr::setSelectedOwners(const SelectMgr_IndexedMapOfOwner& theSelectedOwners,
86                                           bool isUpdateViewer)
87 {
88   Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext();
89   if (!aContext.IsNull()) {
90     /// previous selection should be cleared, else there will be decomposition of selections:
91     /// as AddOrRemoveSelected inverts current selection
92     aContext->ClearSelected(false);
93
94     for  (Standard_Integer i = 1, n = theSelectedOwners.Extent(); i <= n; i++)  {
95       Handle(SelectMgr_EntityOwner) anOwner = theSelectedOwners(i);
96
97       aContext->AddOrRemoveSelected(anOwner, isUpdateViewer);
98       #ifdef TINSPECTOR
99       if (myWorkshop->displayer()->getCallBack())
100         myWorkshop->displayer()->getCallBack()->AddOrRemoveSelected(anOwner);
101       #endif
102     }
103   }
104 }
105
106 //**************************************************************
107 void XGUI_SelectionMgr::onObjectBrowserSelection()
108 {
109   QList<ModuleBase_ViewerPrsPtr> aSelectedPrs =
110     myWorkshop->selector()->selection()->getSelected(ModuleBase_ISelection::Browser);
111   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
112   if (!myWorkshop->operationMgr()->hasOperation()) {
113
114     ObjectPtr aObject;
115     FeaturePtr aFeature;
116     // Select all results of a selected feature in viewer
117     foreach(ModuleBase_ViewerPrsPtr aPrs, aSelectedPrs) {
118       aObject = aPrs->object();
119       if (aObject.get()) {
120         aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
121         if (aFeature.get()) {
122           std::list<ResultPtr> allRes;
123           ModelAPI_Tools::allResults(aFeature, allRes);
124           std::list<ResultPtr>::iterator aRes;
125           for(aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
126             aSelectedPrs.append(std::shared_ptr<ModuleBase_ViewerPrs>(
127               new ModuleBase_ViewerPrs(*aRes, GeomShapePtr(), NULL)));
128           }
129         }
130       }
131     }
132   }
133   aDisplayer->setSelected(aSelectedPrs);
134   emit selectionChanged();
135 }
136
137 //**************************************************************
138 void XGUI_SelectionMgr::onViewerSelection()
139 {
140   QList<ModuleBase_ViewerPrsPtr> aValues;
141   Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext();
142   if (!aContext.IsNull())
143     aValues = selection()->getSelected(ModuleBase_ISelection::Viewer);
144
145   QObjectPtrList anObjects;
146   convertToObjectBrowserSelection(aValues, anObjects);
147   myWorkshop->objectBrowser()->setObjectsSelected(anObjects);
148
149   emit selectionChanged();
150 }
151
152 //**************************************************************
153 void XGUI_SelectionMgr::deselectPresentation(const Handle(AIS_InteractiveObject) theObject)
154 {
155   NCollection_List<Handle(SelectBasics_EntityOwner)> aResultOwners;
156
157   Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext();
158   for (aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected()) {
159     Handle(SelectMgr_EntityOwner) anOwner = aContext->SelectedOwner();
160     if (anOwner.IsNull()) // TODO: check why it is possible
161       continue;
162     if (anOwner->Selectable() == theObject && anOwner->IsSelected())
163       aResultOwners.Append(anOwner);
164   }
165   NCollection_List<Handle(SelectBasics_EntityOwner)>::Iterator anOwnersIt (aResultOwners);
166   Handle(SelectMgr_EntityOwner) anOwner;
167   for (; anOwnersIt.More(); anOwnersIt.Next()) {
168     anOwner = Handle(SelectMgr_EntityOwner)::DownCast(anOwnersIt.Value());
169     if (!anOwner.IsNull())
170       aContext->AddOrRemoveSelected(anOwner, false);
171   }
172 }
173
174 //**************************************************************
175 void XGUI_SelectionMgr::updateSelectionBy(const ModuleBase_ISelection::SelectionPlace& thePlace)
176 {
177   QList<ModuleBase_ViewerPrsPtr> aSelectedPrs =
178                myWorkshop->selector()->selection()->getSelected(thePlace);
179   if (thePlace == ModuleBase_ISelection::Browser) {
180     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
181     aDisplayer->setSelected(aSelectedPrs);
182   }
183
184 }
185 //**************************************************************
186 void XGUI_SelectionMgr::clearSelection()
187 {
188   QObjectPtrList aFeatures;
189   myWorkshop->objectBrowser()->setObjectsSelected(aFeatures);
190
191   QList<ModuleBase_ViewerPrsPtr> aSelectedPrs =
192              myWorkshop->selector()->selection()->getSelected(ModuleBase_ISelection::Browser);
193
194   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
195   aDisplayer->setSelected(aSelectedPrs);
196
197   emit selectionChanged();
198 }
199 //**************************************************************
200 void XGUI_SelectionMgr::setSelected(const QList<ModuleBase_ViewerPrsPtr>& theValues)
201 {
202   // update selection in Viewer
203   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
204   aDisplayer->setSelected(theValues);
205
206   // update selection in Object Browser
207   QObjectPtrList anObjects;
208   convertToObjectBrowserSelection(theValues, anObjects);
209   myWorkshop->objectBrowser()->setObjectsSelected(anObjects);
210 }
211
212 //**************************************************************
213 void XGUI_SelectionMgr::convertToObjectBrowserSelection(
214                                    const QList<ModuleBase_ViewerPrsPtr>& theValues,
215                                    QObjectPtrList& theObjects)
216 {
217   theObjects.clear();
218
219   ResultPtr aResult;
220   FeaturePtr aFeature;
221   bool aHasOperation = (myWorkshop->operationMgr()->currentOperation() != 0);
222   SessionPtr aMgr = ModelAPI_Session::get();
223   DocumentPtr anActiveDocument = aMgr->activeDocument();
224
225   TopTools_MapOfShape aShapeMap;
226   bool aToOptimize = (theValues.size() > OPTIMIZATION_LEVEL);
227
228   GeomShapePtr aShape;
229   TopoDS_Shape aTShape;
230   foreach(ModuleBase_ViewerPrsPtr aPrs, theValues) {
231     if (aPrs->object().get()) {
232       if (!theObjects.contains(aPrs->object()))
233         theObjects.append(aPrs->object());
234       if (aPrs->shape().get() && (!aHasOperation)) {
235         aResult = std::dynamic_pointer_cast<ModelAPI_Result>(aPrs->object());
236         if (aResult.get()) {
237           aShape = aPrs->shape();
238           aTShape = aShape->impl<TopoDS_Shape>();
239           if (aToOptimize) {
240             if (!aShapeMap.Contains(aTShape)) {
241               aFeature = anActiveDocument->producedByFeature(aResult, aShape);
242               if (aFeature.get()) {
243                 QList<TopoDS_Shape> aResList = findAllShapes(aResult);
244                 foreach(TopoDS_Shape aShape, aResList) {
245                   if (!aShapeMap.Contains(aShape))
246                     aShapeMap.Add(aShape);
247                 }
248               }
249             }
250           }
251           else {
252             aFeature = anActiveDocument->producedByFeature(aResult, aShape);
253           }
254           if (aFeature.get() && (!theObjects.contains(aFeature)))
255             theObjects.append(aFeature);
256         }
257       }
258     }
259   }
260 }
261
262 std::list<FeaturePtr> XGUI_SelectionMgr::getSelectedFeatures()
263 {
264   std::list<FeaturePtr> aFeatures;
265   QObjectPtrList aObjects = selection()->selectedObjects();
266   if (aObjects.isEmpty())
267     return aFeatures;
268
269   bool isPart = false;
270   foreach(ObjectPtr aObj, aObjects) {
271     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
272     if (aFeature.get()) {
273       ResultPtr aRes = aFeature->firstResult();
274       isPart = (aRes.get() && (aRes->groupName() == ModelAPI_ResultPart::group()));
275       if (!isPart)
276         aFeatures.push_back(aFeature);
277     }
278   }
279   return aFeatures;
280 }
281
282 QList<TopoDS_Shape> XGUI_SelectionMgr::findAllShapes(const ResultPtr& theResult) const
283 {
284   QIntList aModes = myWorkshop->selectionActivate()->activeSelectionModes();
285   GeomShapePtr aResShape = theResult->shape();
286   TopoDS_Shape aShape = aResShape->impl<TopoDS_Shape>();
287   QList<TopoDS_Shape> aResult;
288   foreach(int aShapeType, aModes) {
289     if (aShapeType < TopAbs_SHAPE) {
290       TopExp_Explorer aExp(aShape, (TopAbs_ShapeEnum)aShapeType);
291       for (; aExp.More(); aExp.Next()) {
292         aResult.append(aExp.Current());
293       }
294     }
295   }
296   return aResult;
297 }