Salome HOME
Merge commit 'refs/tags/V9_2_0^{}'
[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     QList<ModuleBase_ViewerPrsPtr> aTmpList = aSelectedPrs;
115     ObjectPtr aObject;
116     FeaturePtr aFeature;
117     // Select all results of a selected feature in viewer
118     foreach(ModuleBase_ViewerPrsPtr aPrs, aSelectedPrs) {
119       aObject = aPrs->object();
120       if (aObject.get()) {
121         aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
122         if (aFeature.get()) {
123         std::list<ResultPtr> allRes;
124         ModelAPI_Tools::allResults(aFeature, allRes);
125         for(std::list<ResultPtr>::iterator 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     aDisplayer->setSelected(aTmpList);
133   } else {
134     aDisplayer->setSelected(aSelectedPrs);
135   }
136   emit selectionChanged();
137 }
138
139 //**************************************************************
140 void XGUI_SelectionMgr::onViewerSelection()
141 {
142   QList<ModuleBase_ViewerPrsPtr> aValues;
143   Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext();
144   if (!aContext.IsNull())
145     aValues = selection()->getSelected(ModuleBase_ISelection::Viewer);
146
147   QObjectPtrList anObjects;
148   convertToObjectBrowserSelection(aValues, anObjects);
149   myWorkshop->objectBrowser()->setObjectsSelected(anObjects);
150
151   emit selectionChanged();
152 }
153
154 //**************************************************************
155 void XGUI_SelectionMgr::deselectPresentation(const Handle(AIS_InteractiveObject) theObject)
156 {
157   NCollection_List<Handle(SelectBasics_EntityOwner)> aResultOwners;
158
159   Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext();
160   for (aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected()) {
161     Handle(SelectMgr_EntityOwner) anOwner = aContext->SelectedOwner();
162     if (anOwner.IsNull()) // TODO: check why it is possible
163       continue;
164     if (anOwner->Selectable() == theObject && anOwner->IsSelected())
165       aResultOwners.Append(anOwner);
166   }
167   NCollection_List<Handle(SelectBasics_EntityOwner)>::Iterator anOwnersIt (aResultOwners);
168   Handle(SelectMgr_EntityOwner) anOwner;
169   for (; anOwnersIt.More(); anOwnersIt.Next()) {
170     anOwner = Handle(SelectMgr_EntityOwner)::DownCast(anOwnersIt.Value());
171     if (!anOwner.IsNull())
172       aContext->AddOrRemoveSelected(anOwner, false);
173   }
174 }
175
176 //**************************************************************
177 void XGUI_SelectionMgr::updateSelectionBy(const ModuleBase_ISelection::SelectionPlace& thePlace)
178 {
179   QList<ModuleBase_ViewerPrsPtr> aSelectedPrs =
180                myWorkshop->selector()->selection()->getSelected(thePlace);
181   if (thePlace == ModuleBase_ISelection::Browser) {
182     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
183     aDisplayer->setSelected(aSelectedPrs);
184   }
185
186 }
187 //**************************************************************
188 void XGUI_SelectionMgr::clearSelection()
189 {
190   QObjectPtrList aFeatures;
191   myWorkshop->objectBrowser()->setObjectsSelected(aFeatures);
192
193   QList<ModuleBase_ViewerPrsPtr> aSelectedPrs =
194              myWorkshop->selector()->selection()->getSelected(ModuleBase_ISelection::Browser);
195
196   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
197   aDisplayer->setSelected(aSelectedPrs);
198
199   emit selectionChanged();
200 }
201 //**************************************************************
202 void XGUI_SelectionMgr::setSelected(const QList<ModuleBase_ViewerPrsPtr>& theValues)
203 {
204   // update selection in Viewer
205   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
206   aDisplayer->setSelected(theValues);
207
208   // update selection in Object Browser
209   QObjectPtrList anObjects;
210   convertToObjectBrowserSelection(theValues, anObjects);
211   myWorkshop->objectBrowser()->setObjectsSelected(anObjects);
212 }
213
214 //**************************************************************
215 void XGUI_SelectionMgr::convertToObjectBrowserSelection(
216                                    const QList<ModuleBase_ViewerPrsPtr>& theValues,
217                                    QObjectPtrList& theObjects)
218 {
219   theObjects.clear();
220
221   ResultPtr aResult;
222   FeaturePtr aFeature;
223   bool aHasOperation = (myWorkshop->operationMgr()->currentOperation() != 0);
224   SessionPtr aMgr = ModelAPI_Session::get();
225   DocumentPtr anActiveDocument = aMgr->activeDocument();
226
227   TopTools_MapOfShape aShapeMap;
228   bool aToOptimize = (theValues.size() > OPTIMIZATION_LEVEL);
229
230   GeomShapePtr aShape;
231   TopoDS_Shape aTShape;
232   foreach(ModuleBase_ViewerPrsPtr aPrs, theValues) {
233     if (aPrs->object().get()) {
234       if (!theObjects.contains(aPrs->object()))
235         theObjects.append(aPrs->object());
236       if (aPrs->shape().get() && (!aHasOperation)) {
237         aResult = std::dynamic_pointer_cast<ModelAPI_Result>(aPrs->object());
238         if (aResult.get()) {
239           aShape = aPrs->shape();
240           aTShape = aShape->impl<TopoDS_Shape>();
241           if (aToOptimize) {
242             if (!aShapeMap.Contains(aTShape)) {
243               aFeature = anActiveDocument->producedByFeature(aResult, aShape);
244               if (aFeature.get()) {
245                 QList<TopoDS_Shape> aResList = findAllShapes(aResult);
246                 foreach(TopoDS_Shape aShape, aResList) {
247                   if (!aShapeMap.Contains(aShape))
248                     aShapeMap.Add(aShape);
249                 }
250               }
251             }
252           }
253           else {
254             aFeature = anActiveDocument->producedByFeature(aResult, aShape);
255           }
256           if (aFeature.get() && (!theObjects.contains(aFeature)))
257             theObjects.append(aFeature);
258         }
259       }
260     }
261   }
262 }
263
264 std::list<FeaturePtr> XGUI_SelectionMgr::getSelectedFeatures()
265 {
266   std::list<FeaturePtr> aFeatures;
267   QObjectPtrList aObjects = selection()->selectedObjects();
268   if (aObjects.isEmpty())
269     return aFeatures;
270
271   bool isPart = false;
272   foreach(ObjectPtr aObj, aObjects) {
273     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
274     if (aFeature.get()) {
275       ResultPtr aRes = aFeature->firstResult();
276       isPart = (aRes.get() && (aRes->groupName() == ModelAPI_ResultPart::group()));
277       if (!isPart)
278         aFeatures.push_back(aFeature);
279     }
280   }
281   return aFeatures;
282 }
283
284 QList<TopoDS_Shape> XGUI_SelectionMgr::findAllShapes(const ResultPtr& theResult) const
285 {
286   QIntList aModes = myWorkshop->selectionActivate()->activeSelectionModes();
287   GeomShapePtr aResShape = theResult->shape();
288   TopoDS_Shape aShape = aResShape->impl<TopoDS_Shape>();
289   QList<TopoDS_Shape> aResult;
290   foreach(int aShapeType, aModes) {
291     if (aShapeType < TopAbs_SHAPE) {
292       TopExp_Explorer aExp(aShape, (TopAbs_ShapeEnum)aShapeType);
293       for (; aExp.More(); aExp.Next()) {
294         aResult.append(aExp.Current());
295       }
296     }
297   }
298   return aResult;
299 }