Salome HOME
Issue #2973: Make "Show only" mode more feasible for using in bug groups
[modules/shaper.git] / src / PartSet / PartSet_OperationPrs.cpp
1 // Copyright (C) 2014-2019  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 email : webmaster.salome@opencascade.com
18 //
19
20 #include "PartSet_OperationPrs.h"
21 #include "PartSet_Tools.h"
22
23 #include "XGUI_Workshop.h"
24 #include "XGUI_ModuleConnector.h"
25 #include "XGUI_Displayer.h"
26 #include "XGUI_Tools.h"
27
28 #include "ModuleBase_Tools.h"
29 #include "ModuleBase_IModule.h"
30 #include <ModuleBase_IPropertyPanel.h>
31 #include <ModuleBase_ModelWidget.h>
32 #include <ModuleBase_ViewerPrs.h>
33
34 #include <ModelAPI_Events.h>
35 #include <ModelAPI_Result.h>
36 #include <ModelAPI_Attribute.h>
37 #include <ModelAPI_AttributeRefAttr.h>
38 #include <ModelAPI_AttributeReference.h>
39 #include <ModelAPI_AttributeSelection.h>
40 #include <ModelAPI_AttributeSelectionList.h>
41 #include <ModelAPI_AttributeRefList.h>
42 #include <ModelAPI_Validator.h>
43 #include <ModelAPI_Session.h>
44 #include <ModelAPI_ResultBody.h>
45 #include <ModelAPI_Tools.h>
46
47 #include <Events_InfoMessage.h>
48 #include <Events_Loop.h>
49
50 #include <GeomAPI_IPresentable.h>
51
52 #include <StdPrs_WFShape.hxx>
53
54 #include <QList>
55
56 #include <gp_Pnt.hxx>
57 #include <TopoDS_Vertex.hxx>
58 #include <BRepBuilderAPI_MakeVertex.hxx>
59 #include <BRep_Builder.hxx>
60 #include <TopoDS_Compound.hxx>
61
62 //#define DEBUG_EMPTY_SHAPE
63 //#define DEBUG_OPERATION_PRS
64
65 // multi-rotation/translation operation
66 //#define DEBUG_HIDE_COPY_ATTRIBUTE
67 #ifdef DEBUG_HIDE_COPY_ATTRIBUTE
68 #include <ModelAPI_AttributeBoolean.h>
69 #include <SketchPlugin_SketchEntity.h>
70 #endif
71
72 IMPLEMENT_STANDARD_RTTIEXT(PartSet_OperationPrs, ViewerData_AISShape);
73
74 PartSet_OperationPrs::PartSet_OperationPrs(ModuleBase_IWorkshop* theWorkshop)
75 : ViewerData_AISShape(TopoDS_Shape()), myWorkshop(theWorkshop), myUseAISWidth(false)
76 {
77 #ifdef DEBUG_OPERATION_PRS
78   qDebug("PartSet_OperationPrs::PartSet_OperationPrs");
79 #endif
80   myShapeColor = Quantity_Color(1, 1, 1, Quantity_TOC_RGB);
81
82   // first presentation for having correct Compute until presentation with shapes are set
83   gp_Pnt aPnt(0.0, 0.0, 0.0);
84   BRepBuilderAPI_MakeVertex aMaker(aPnt);
85   TopoDS_Vertex aVertex = aMaker.Vertex();
86   myShapeToPrsMap.Bind(aVertex, NULL);
87 }
88
89 bool PartSet_OperationPrs::hasShapes()
90 {
91   return !myShapeToPrsMap.IsEmpty();
92 }
93
94 void PartSet_OperationPrs::setShapeColor(const Quantity_Color& theColor)
95 {
96   myShapeColor = theColor;
97 }
98
99 void PartSet_OperationPrs::useAISWidth()
100 {
101   myUseAISWidth = true;
102 }
103
104 void PartSet_OperationPrs::Compute(
105             const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
106             const Handle(Prs3d_Presentation)& thePresentation,
107             const Standard_Integer theMode)
108 {
109 #ifdef DEBUG_OPERATION_PRS
110   qDebug("PartSet_OperationPrs::Compute -- begin");
111 #endif
112
113   SetColor(myShapeColor);
114   thePresentation->Clear();
115   bool aReadyToDisplay = !myShapeToPrsMap.IsEmpty();
116
117   XGUI_Displayer* aDisplayer = XGUI_Tools::workshop(myWorkshop)->displayer();
118   Handle(Prs3d_Drawer) aDrawer = Attributes();
119   // create presentations on the base of the shapes
120   BRep_Builder aBuilder;
121   TopoDS_Compound aComp;
122   aBuilder.MakeCompound(aComp);
123   for(NCollection_DataMap<TopoDS_Shape, Handle(AIS_InteractiveObject)>::Iterator
124       anIter(myShapeToPrsMap); anIter.More(); anIter.Next()) {
125     const TopoDS_Shape& aShape = anIter.Key();
126     aBuilder.Add(aComp, aShape);
127     // change deviation coefficient to provide more precise circle
128     // as there is no result, the shape is processed to correct deviation. To be unified
129     ModuleBase_Tools::setDefaultDeviationCoefficient(aShape, aDrawer);
130
131     if (myUseAISWidth) {
132       Handle(AIS_InteractiveObject) anIO = anIter.Value();
133       if (!anIO.IsNull()) {
134         int aWidth = anIO->Width();
135         /// workaround for zero width. Else, there will be a crash
136         if (aWidth == 0) { // width returns of TSolid shape is zero
137           bool isDisplayed = !anIO->GetContext().IsNull();
138           aWidth = PartSet_Tools::getAISDefaultWidth();// default width value
139         }
140         setWidth(aDrawer, aWidth);
141       }
142     }
143     try {
144       StdPrs_WFShape::Add(thePresentation, aShape, aDrawer);
145     }
146     catch (...) {
147       return;
148     }
149   }
150   Set(aComp);
151   if (!aReadyToDisplay) {
152     Events_InfoMessage("PartSet_OperationPrs",
153       "An empty AIS presentation: PartSet_OperationPrs").send();
154     std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
155                 new Events_Message(Events_Loop::eventByName(EVENT_EMPTY_OPERATION_PRESENTATION)));
156     Events_Loop::loop()->send(aMsg);
157   }
158 #ifdef DEBUG_OPERATION_PRS
159   qDebug("PartSet_OperationPrs::Compute -- end");
160 #endif
161 }
162
163 void PartSet_OperationPrs::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
164                                             const Standard_Integer aMode)
165 {
166   // the presentation is not used in the selection
167 }
168
169 NCollection_DataMap<TopoDS_Shape, Handle(AIS_InteractiveObject)>& PartSet_OperationPrs::shapesMap()
170 {
171   return myShapeToPrsMap;
172 }
173
174 bool isSubObject(const ObjectPtr& theObject, const FeaturePtr& theFeature)
175 {
176   bool isSub = false;
177   CompositeFeaturePtr aComposite = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(theFeature);
178   if (aComposite.get())
179     isSub = aComposite->isSub(theObject);
180
181   return isSub;
182 }
183
184 void PartSet_OperationPrs::addValue(const ObjectPtr& theObject, const GeomShapePtr& theShape,
185                                     const FeaturePtr& theFeature, ModuleBase_IWorkshop* theWorkshop,
186                                     QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes)
187 {
188   if (theObject.get()) {
189     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
190     if (aResult.get()) {
191       ResultBodyPtr aBodyResult =
192         std::dynamic_pointer_cast<ModelAPI_ResultBody>(theObject);
193       if (aBodyResult.get()) {
194         if (aBodyResult->numberOfSubs() > 0) {
195           for(int i = 0; i < aBodyResult->numberOfSubs(); i++) {
196             ResultPtr aSubResult = aBodyResult->subResult(i);
197             if (aSubResult.get()) {
198               GeomShapePtr aShape;
199               addValue(aSubResult, aShape, theFeature, theWorkshop, theObjectShapes);
200             }
201           }
202           return;
203         }
204       }
205 #ifdef DEBUG_HIDE_COPY_ATTRIBUTE
206       else {
207         FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
208         if (aFeature.get()) {
209           AttributeBooleanPtr aCopyAttr =
210             aFeature->data()->boolean(SketchPlugin_SketchEntity::COPY_ID());
211           if (aCopyAttr.get()) {
212             bool isCopy = aCopyAttr->value();
213             if (isCopy)
214               return;
215           }
216         }
217       }
218 #endif
219     }
220
221     GeomShapePtr aShape = theShape;
222     if (!aShape.get()) {
223       ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
224       if (aResult.get())
225         aShape = aResult->shape();
226     }
227     if (!isSubObject(theObject, theFeature))
228       appendShapeIfVisible(theWorkshop, theObject, aShape, theObjectShapes);
229   }
230 }
231
232 void PartSet_OperationPrs::appendShapeIfVisible(ModuleBase_IWorkshop* theWorkshop,
233                               const ObjectPtr& theObject,
234                               GeomShapePtr theGeomShape,
235                               QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes)
236 {
237   XGUI_Displayer* aDisplayer = XGUI_Tools::workshop(theWorkshop)->displayer();
238   // VSV: Do not use isVisible checking because it can be used when state "Show Only" is ON
239   //if (XGUI_Displayer::isVisible(aDisplayer, theObject)) {
240     if (theGeomShape.get()) {
241       if (theObjectShapes.contains(theObject))
242         theObjectShapes[theObject].append(theGeomShape);
243       else {
244         QList<GeomShapePtr> aShapes;
245         aShapes.append(theGeomShape);
246         theObjectShapes[theObject] = aShapes;
247       }
248     } else {
249   #ifdef DEBUG_EMPTY_SHAPE
250       qDebug(QString("Empty shape in result, result: %1")
251               .arg(ModuleBase_Tools::objectInfo(theObject)).toStdString().c_str());
252   #endif
253     }
254   //}
255 }
256
257 void PartSet_OperationPrs::getFeatureShapes(const FeaturePtr& theFeature,
258                                             ModuleBase_IWorkshop* theWorkshop,
259                                             QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes)
260 {
261   theObjectShapes.clear();
262   if (!theFeature.get())
263     return;
264
265   ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators();
266
267   QList<GeomShapePtr> aShapes;
268   std::list<AttributePtr> anAttributes = theFeature->data()->attributes("");
269   std::list<AttributePtr>::const_iterator anIt = anAttributes.begin(), aLast = anAttributes.end();
270   for (; anIt != aLast; anIt++) {
271     AttributePtr anAttribute = *anIt;
272     if (!isSelectionAttribute(anAttribute))
273       continue;
274
275     if (!aValidators->isCase(theFeature, anAttribute->id()))
276       continue; // this attribute is not participated in the current case
277
278     std::string anAttrType = anAttribute->attributeType();
279
280     if (anAttrType == ModelAPI_AttributeSelectionList::typeId()) {
281       std::shared_ptr<ModelAPI_AttributeSelectionList> aCurSelList =
282               std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(anAttribute);
283       for(int i = 0; i < aCurSelList->size(); i++) {
284         std::shared_ptr<ModelAPI_AttributeSelection> aSelAttribute = aCurSelList->value(i);
285         ResultPtr aResult = aSelAttribute->context();
286         GeomShapePtr aShape = aSelAttribute->value();
287         addValue(aResult, aShape, theFeature, theWorkshop, theObjectShapes);
288       }
289     }
290     if (anAttrType == ModelAPI_AttributeRefList::typeId()) {
291       std::shared_ptr<ModelAPI_AttributeRefList> aCurSelList =
292         std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(anAttribute);
293       for (int i = 0; i < aCurSelList->size(); i++) {
294         ObjectPtr anObject = aCurSelList->object(i);
295         FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(anObject);
296         // if a feature is stored in the attribute, we should obtain the feature results
297         // e.g. feature rectangle uses parameters feature lines in the attribute
298         if (aFeature.get()) {
299           getResultShapes(aFeature, theWorkshop, theObjectShapes, false);
300         }
301         else {
302           ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
303           if (aResult.get()) {
304             GeomShapePtr aShape = aResult->shape();
305             if (aShape.get())
306               addValue(aResult, aShape, theFeature, theWorkshop, theObjectShapes);
307           }
308         }
309       }
310     }
311     else {
312       ObjectPtr anObject;
313       GeomShapePtr aShape;
314       if (anAttrType == ModelAPI_AttributeRefAttr::typeId()) {
315         AttributeRefAttrPtr anAttr =
316           std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(anAttribute);
317         if (anAttr->isObject()) {
318           anObject = anAttr->object();
319         }
320         else {
321           AttributePtr anAttribute = anAttr->attr();
322           aShape = PartSet_Tools::findShapeBy2DPoint(anAttribute, theWorkshop);
323           // the distance point is not found if the point is selected in the 2nd time
324           // TODO: after debug, this check can be removed
325           if (!aShape.get())
326             continue;
327           anObject = anAttr->attr()->owner();
328         }
329       }
330       if (anAttrType == ModelAPI_AttributeSelection::typeId()) {
331         AttributeSelectionPtr anAttr =
332           std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(anAttribute);
333         anObject = anAttr->context();
334         aShape = anAttr->value();
335       }
336       if (anAttrType == ModelAPI_AttributeReference::typeId()) {
337         AttributeReferencePtr anAttr =
338           std::dynamic_pointer_cast<ModelAPI_AttributeReference>(anAttribute);
339         anObject = anAttr->value();
340       }
341       addValue(anObject, aShape, theFeature, theWorkshop, theObjectShapes);
342     }
343   }
344 }
345
346 void PartSet_OperationPrs::getResultShapes(const FeaturePtr& theFeature,
347                                            ModuleBase_IWorkshop* theWorkshop,
348                                            QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes,
349                                            const bool theListShouldBeCleared)
350 {
351   if (theListShouldBeCleared)
352     theObjectShapes.clear();
353
354   if (!theFeature.get())
355     return;
356
357   XGUI_Displayer* aDisplayer = XGUI_Tools::workshop(theWorkshop)->displayer();
358
359   std::list<ResultPtr> aResults;
360   ModelAPI_Tools::allResults(theFeature, aResults);
361   std::list<ResultPtr>::const_iterator aRIt = aResults.begin(),
362                                        aRLast = aResults.end();
363   for (; aRIt != aRLast; aRIt++) {
364     ResultPtr aResult = *aRIt;
365     GeomShapePtr aGeomShape = aResult->shape();
366     appendShapeIfVisible(theWorkshop, aResult, aGeomShape, theObjectShapes);
367   }
368 }
369
370 void PartSet_OperationPrs::getPresentationShapes(const FeaturePtr& theFeature,
371                                            ModuleBase_IWorkshop* theWorkshop,
372                                            QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes,
373                                            const bool theListShouldBeCleared)
374 {
375   if (theListShouldBeCleared)
376     theObjectShapes.clear();
377
378   if (!theFeature.get() || !theFeature->data()->isValid()) // if feature is already removed
379     return;
380
381   XGUI_Displayer* aDisplayer = XGUI_Tools::workshop(theWorkshop)->displayer();
382
383   GeomPresentablePtr aPrs = std::dynamic_pointer_cast<GeomAPI_IPresentable>(theFeature);
384   if (!aPrs.get())
385     return;
386
387   AISObjectPtr anAIS = aPrs->getAISObject(aDisplayer->getAISObject(theFeature));
388   if (!anAIS.get())
389     return;
390
391   Handle(AIS_InteractiveObject) anAISPrs = anAIS->impl<Handle(AIS_InteractiveObject)>();
392   if (!anAISPrs.IsNull()) {
393     Handle(AIS_Shape) aShapePrs = Handle(AIS_Shape)::DownCast(anAISPrs);
394     if (!aShapePrs.IsNull()) {
395       TopoDS_Shape aShape = aShapePrs->Shape();
396       if (!aShape.IsNull()) {
397         std::shared_ptr<GeomAPI_Shape> aGeomShape(new GeomAPI_Shape());
398         aGeomShape->setImpl(new TopoDS_Shape(aShape));
399         appendShapeIfVisible(theWorkshop, theFeature, aGeomShape, theObjectShapes);
400       }
401     }
402   }
403 }
404
405 void PartSet_OperationPrs::getHighlightedShapes(ModuleBase_IWorkshop* theWorkshop,
406                                                 QMap<ObjectPtr,
407                                                 QList<GeomShapePtr> >& theObjectShapes)
408 {
409   theObjectShapes.clear();
410
411   QList<ModuleBase_ViewerPrsPtr> aValues;
412   ModuleBase_ModelWidget* anActiveWidget = theWorkshop->module()->activeWidget();
413   if (anActiveWidget)
414     anActiveWidget->getHighlighted(aValues);
415
416   QList<GeomShapePtr> aShapes;
417   QList<ModuleBase_ViewerPrsPtr>::const_iterator anIIt = aValues.begin(),
418                                               aILast = aValues.end();
419   for (; anIIt != aILast; anIIt++) {
420     ModuleBase_ViewerPrsPtr aPrs = *anIIt;
421     ObjectPtr anObject = aPrs->object();
422
423     GeomShapePtr aGeomShape = aPrs->shape();
424     if (!aGeomShape.get() || aGeomShape->isNull()) {
425       ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
426       if (aResult.get()) {
427         aGeomShape = aResult->shape();
428       }
429     }
430     appendShapeIfVisible(theWorkshop, anObject, aGeomShape, theObjectShapes);
431   }
432 }
433
434
435 bool PartSet_OperationPrs::isSelectionAttribute(const AttributePtr& theAttribute)
436 {
437   std::string anAttrType = theAttribute->attributeType();
438
439   return anAttrType == ModelAPI_AttributeSelectionList::typeId() ||
440          anAttrType == ModelAPI_AttributeRefList::typeId() ||
441          anAttrType == ModelAPI_AttributeRefAttr::typeId() ||
442          anAttrType == ModelAPI_AttributeSelection::typeId() ||
443          anAttrType == ModelAPI_AttributeReference::typeId();
444 }
445
446 void PartSet_OperationPrs::fillShapeList(
447                             const QMap<ObjectPtr, QList<GeomShapePtr> >& theFeatureShapes,
448                             ModuleBase_IWorkshop* theWorkshop,
449                             NCollection_DataMap<TopoDS_Shape,
450                             Handle(AIS_InteractiveObject)>& theShapeToPrsMap)
451 {
452   theShapeToPrsMap.Clear();
453
454   XGUI_Displayer* aDisplayer = XGUI_Tools::workshop(theWorkshop)->displayer();
455
456   // create presentations on the base of the shapes
457   QMap<ObjectPtr, QList<GeomShapePtr> >::const_iterator anIt = theFeatureShapes.begin(),
458                                                         aLast = theFeatureShapes.end();
459   for (; anIt != aLast; anIt++) {
460     ObjectPtr anObject = anIt.key();
461     QList<GeomShapePtr> aShapes = anIt.value();
462     QList<GeomShapePtr>::const_iterator aShIt = aShapes.begin(), aShLast = aShapes.end();
463     for (; aShIt != aShLast; aShIt++) {
464       GeomShapePtr aGeomShape = *aShIt;
465       // the shape should not be checked here on empty value because it should be checked in
466       // appendShapeIfVisible() on the step of filling theFeatureShapes list
467       // the reason is to avoid empty AIS object visualized in the viewer
468       //if (!aGeomShape.get()) continue;
469       TopoDS_Shape aShape = aGeomShape.get() ? aGeomShape->impl<TopoDS_Shape>() : TopoDS_Shape();
470       if (aShape.IsNull())
471         continue;
472
473       // change deviation coefficient to provide more precise circle
474       Handle(AIS_InteractiveObject) anIO;
475       AISObjectPtr anAISPtr = aDisplayer->getAISObject(anObject);
476       if (anAISPtr.get())
477         anIO = anAISPtr->impl<Handle(AIS_InteractiveObject)>();
478       theShapeToPrsMap.Bind(aShape, anIO);
479     }
480   }
481 }