]> SALOME platform Git repositories - modules/shaper.git/blob - src/FeaturesPlugin/FeaturesPlugin_BooleanFill.cpp
Salome HOME
support fuzzy parameter in all boolean operations
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_BooleanFill.cpp
1 // Copyright (C) 2014-2022  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 "FeaturesPlugin_BooleanFill.h"
21
22 #include <ModelAPI_ResultBody.h>
23 #include <ModelAPI_AttributeDouble.h>
24 #include <ModelAPI_AttributeSelectionList.h>
25 #include <ModelAPI_Tools.h>
26
27 #include <GeomAlgoAPI_Boolean.h>
28 #include <GeomAlgoAPI_CompoundBuilder.h>
29 #include <GeomAlgoAPI_MakeShapeCustom.h>
30 #include <GeomAlgoAPI_MakeShapeList.h>
31 #include <GeomAlgoAPI_Partition.h>
32 #include <GeomAlgoAPI_PaveFiller.h>
33 #include <GeomAlgoAPI_ShapeTools.h>
34 #include <GeomAlgoAPI_Tools.h>
35
36 #include <GeomAPI_Face.h>
37 #include <GeomAPI_ShapeExplorer.h>
38 #include <GeomAPI_ShapeIterator.h>
39
40 #include <algorithm>
41 #include <map>
42
43
44 //=================================================================================================
45 FeaturesPlugin_BooleanFill::FeaturesPlugin_BooleanFill()
46   : FeaturesPlugin_Boolean(FeaturesPlugin_Boolean::BOOL_FILL)
47 {
48 }
49
50 //=================================================================================================
51 void FeaturesPlugin_BooleanFill::initAttributes()
52 {
53   FeaturesPlugin_Boolean::initAttributes();
54   initVersion(BOP_VERSION_9_4(), selectionList(OBJECT_LIST_ID()), selectionList(TOOL_LIST_ID()));
55 }
56
57 //=================================================================================================
58 void FeaturesPlugin_BooleanFill::execute()
59 {
60   std::string anError;
61   GeomAPI_ShapeHierarchy anObjects, aTools;
62   ListOfShape aPlanes;
63
64   // Getting objects.
65   if (!processAttribute(OBJECT_LIST_ID(), anObjects, aPlanes))
66     return;
67   // Planes are not supported as objects of FILL operation
68   aPlanes.clear();
69
70   // Getting tools.
71   if (!processAttribute(TOOL_LIST_ID(), aTools, aPlanes))
72     return;
73
74   int aResultIndex = 0;
75
76   if (anObjects.empty() || (aTools.empty() && aPlanes.empty())) {
77     std::string aFeatureError = "Error: Not enough objects for boolean operation.";
78     setError(aFeatureError);
79     return;
80   }
81
82   std::vector<ModelAPI_Tools::ResultBaseAlgo> aResultBaseAlgoList;
83   ListOfShape aResultShapesList;
84
85   std::shared_ptr<GeomAlgoAPI_MakeShapeList> aMakeShapeList(new GeomAlgoAPI_MakeShapeList());
86
87   GeomShapePtr aResultCompound;
88   if (data()->version() == BOP_VERSION_9_4()) {
89     // merge hierarchies of compounds containing objects and tools
90     aResultCompound =
91         keepUnusedSubsOfCompound(GeomShapePtr(), anObjects, aTools, aMakeShapeList);
92   }
93
94   // Getting fuzzy parameter.
95   // Used as additional tolerance to eliminate tiny results.
96   double aFuzzy = real(FUZZY_PARAM_ID())->value();
97
98   // For solids cut each object with all tools.
99   bool isOk = true;
100   for (GeomAPI_ShapeHierarchy::iterator anObjectsIt = anObjects.begin();
101        anObjectsIt != anObjects.end() && isOk;
102        ++anObjectsIt) {
103     GeomShapePtr anObject = *anObjectsIt;
104     GeomShapePtr aParent = anObjects.parent(anObject, false);
105
106     if (aParent && aParent->shapeType() == GeomAPI_Shape::COMPSOLID) {
107       // get parent once again to mark it and the subs as processed
108       aParent = anObjects.parent(anObject);
109       // compsolid handling
110       isOk = processCompsolid(GeomAlgoAPI_Tools::BOOL_PARTITION,
111                               anObjects, aParent, aTools.objects(), aPlanes,
112                               aFuzzy,
113                               aResultIndex, aResultBaseAlgoList, aResultShapesList,
114                               aResultCompound);
115     } else {
116       // process object as is
117       isOk = processObject(GeomAlgoAPI_Tools::BOOL_PARTITION,
118                            anObject, aTools.objects(), aPlanes,
119                            aFuzzy,
120                            aResultIndex, aResultBaseAlgoList, aResultShapesList,
121                            aResultCompound);
122     }
123   }
124
125   storeResult(anObjects.objects(), aTools.objects(), aResultCompound, aResultIndex,
126               aMakeShapeList, aResultBaseAlgoList);
127
128   // Store deleted shapes after all results has been proceeded. This is to avoid issue when in one
129   // result shape has been deleted, but in another it was modified or stayed.
130   if (!aResultCompound)
131     aResultCompound = GeomAlgoAPI_CompoundBuilder::compound(aResultShapesList);
132   ModelAPI_Tools::loadDeletedShapes(aResultBaseAlgoList,
133                                     aTools.objects(),
134                                     aResultCompound);
135
136   // remove the rest results if there were produced in the previous pass
137   removeResults(aResultIndex);
138 }