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