Salome HOME
Issue #1393 Angle constraint : incorrect angle displayed. solution: arc's passed...
[modules/shaper.git] / src / PartSet / PartSet_Filters.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_Filters.cpp
4 // Created:     08 Nov 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "PartSet_Filters.h"
8
9 #include <ModuleBase_IWorkshop.h>
10 #include "ModuleBase_IModule.h"
11 #include <ModuleBase_ResultPrs.h>
12
13 #include <ModelAPI_Feature.h>
14 #include <ModelAPI_ResultPart.h>
15 #include <ModelAPI_Session.h>
16
17 #include <AIS_InteractiveObject.hxx>
18 #include <AIS_Shape.hxx>
19 #include <StdSelect_BRepOwner.hxx>
20
21
22 IMPLEMENT_STANDARD_HANDLE(PartSet_GlobalFilter, ModuleBase_ShapeDocumentFilter);
23 IMPLEMENT_STANDARD_RTTIEXT(PartSet_GlobalFilter, ModuleBase_ShapeDocumentFilter);
24
25 Standard_Boolean PartSet_GlobalFilter::IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
26 {
27   bool aValid = true;
28   ModuleBase_Operation* anOperation = myWorkshop->module()->currentOperation();
29   // the shapes from different documents should be provided if there is no started operation
30   // in order to show/hide results
31   if (anOperation) {
32     aValid = false;
33     if (ModuleBase_ShapeDocumentFilter::IsOk(theOwner)) {
34       std::shared_ptr<GeomAPI_AISObject> aAISObj = AISObjectPtr(new GeomAPI_AISObject());
35       if (theOwner->HasSelectable()) {
36         Handle(AIS_InteractiveObject) aAisObj = 
37           Handle(AIS_InteractiveObject)::DownCast(theOwner->Selectable());
38         if (!aAisObj.IsNull()) {
39           aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aAisObj));
40         }
41       }
42       ObjectPtr aObj = myWorkshop->findPresentedObject(aAISObj);
43       if (aObj) {
44         ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
45         // result of parts belongs to PartSet document and can be selected only when PartSet is active
46         // in order to do not select the result of the active part.
47         if (aResult.get() && aResult->groupName() == ModelAPI_ResultPart::group()) {
48           SessionPtr aMgr = ModelAPI_Session::get();
49           aValid = aMgr->activeDocument() == aMgr->moduleDocument();
50         }
51         else {
52           FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
53           if (aFeature) {
54             aValid = aFeature->getKind() != "Group";
55           } else 
56             aValid = Standard_True;
57         }
58       } else
59         // This is not object controlled by the filter
60         aValid = Standard_True;
61     }
62   }
63 #ifdef DEBUG_FILTERS
64   qDebug(QString("PartSet_GlobalFilter::IsOk = %1").arg(aValid).toStdString().c_str());
65 #endif
66   return aValid;
67 }
68
69 IMPLEMENT_STANDARD_HANDLE(PartSet_CirclePointFilter, SelectMgr_Filter);
70 IMPLEMENT_STANDARD_RTTIEXT(PartSet_CirclePointFilter, SelectMgr_Filter);
71
72 Standard_Boolean PartSet_CirclePointFilter::IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
73 {
74   ModuleBase_Operation* anOperation = myWorkshop->module()->currentOperation();
75   if(!anOperation) {
76     return Standard_True;
77   }
78
79   if(theOwner->HasSelectable() == Standard_False) {
80     return Standard_True;
81   }
82
83   Handle(StdSelect_BRepOwner) aBrepOwner = Handle(StdSelect_BRepOwner)::DownCast(theOwner);
84   if(aBrepOwner.IsNull()) {
85     return Standard_True;
86   }
87
88   const TopoDS_Shape& aShape = aBrepOwner->Shape();
89   if(aShape.IsNull() || aShape.ShapeType() != TopAbs_VERTEX) {
90     return Standard_True;
91   }
92
93   Handle(ModuleBase_ResultPrs) aResultPrs = Handle(ModuleBase_ResultPrs)::DownCast(theOwner->Selectable());
94   if(aResultPrs.IsNull()) {
95     return Standard_True;
96   }
97
98   std::shared_ptr<GeomAPI_AISObject> aGeomAISObj(new GeomAPI_AISObject());
99   aGeomAISObj->setImpl(new Handle(AIS_InteractiveObject)(aResultPrs));
100   ObjectPtr anObj = myWorkshop->findPresentedObject(aGeomAISObj);
101   if(!anObj.get()) {
102     return Standard_True;
103   }
104
105   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
106   if(!aResult.get()) {
107     return Standard_True;
108   }
109
110   DocumentPtr aDocument = aResult->document();
111   if(!aDocument.get()) {
112     return Standard_True;
113   }
114
115   FeaturePtr aFeature = aDocument->feature(aResult);
116   if(!aFeature.get() || aFeature->getKind() != "SketchCircle") {
117     return Standard_True;
118   }
119
120   const TopoDS_Shape anOwnerShape = aResultPrs->Shape();
121   if(anOwnerShape.ShapeType() == TopAbs_EDGE) {
122     return Standard_False;
123   }
124
125 #ifdef DEBUG_FILTERS
126   qDebug(QString("PartSet_ShapeDocumentFilter::IsOk = %1").arg(aValid).toStdString().c_str());
127 #endif
128
129   return Standard_True;
130 }