Salome HOME
Refactoring: split base class of Boolean operation (separate methods related to versi...
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_BooleanFill.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 "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 static const int THE_SPLIT_VERSION_1 = 20190506;
44
45 //=================================================================================================
46 FeaturesPlugin_BooleanFill::FeaturesPlugin_BooleanFill()
47   : FeaturesPlugin_Boolean(FeaturesPlugin_Boolean::BOOL_FILL)
48 {
49 }
50
51 //=================================================================================================
52 void FeaturesPlugin_BooleanFill::initAttributes()
53 {
54   FeaturesPlugin_Boolean::initAttributes();
55   initVersion(THE_SPLIT_VERSION_1, selectionList(OBJECT_LIST_ID()), selectionList(TOOL_LIST_ID()));
56 }
57
58 //=================================================================================================
59 void FeaturesPlugin_BooleanFill::execute()
60 {
61   std::string anError;
62   ObjectHierarchy anObjects, aTools;
63   ListOfShape aPlanes;
64
65   // Getting objects.
66   if (!processAttribute(OBJECT_LIST_ID(), anObjects, aPlanes))
67     return;
68   // Planes are not supported as objects of FILL operation
69   aPlanes.clear();
70
71   // Getting tools.
72   if (!processAttribute(TOOL_LIST_ID(), aTools, aPlanes))
73     return;
74
75   int aResultIndex = 0;
76
77   if (anObjects.IsEmpty() || (aTools.IsEmpty() && aPlanes.empty())) {
78     std::string aFeatureError = "Error: Not enough objects for boolean operation.";
79     setError(aFeatureError);
80     return;
81   }
82
83   // version of Split feature
84   int aSplitVersion = version();
85
86   std::vector<FeaturesPlugin_Tools::ResultBaseAlgo> aResultBaseAlgoList;
87   ListOfShape aResultShapesList;
88
89   std::shared_ptr<GeomAlgoAPI_MakeShapeList> aMakeShapeList(new GeomAlgoAPI_MakeShapeList());
90
91   GeomShapePtr aResultCompound;
92   if (aSplitVersion == THE_SPLIT_VERSION_1) {
93     // merge hierarchies of compounds containing objects and tools
94     aResultCompound =
95         keepUnusedSubsOfCompound(GeomShapePtr(), anObjects, aTools, aMakeShapeList);
96   }
97
98   // For solids cut each object with all tools.
99   bool isOk = true;
100   for (ObjectHierarchy::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                               aResultIndex, aResultBaseAlgoList, aResultShapesList,
113                               aResultCompound);
114     } else {
115       // process object as is
116       isOk = processObject(GeomAlgoAPI_Tools::BOOL_PARTITION,
117                            anObject, aTools.Objects(), aPlanes,
118                            aResultIndex, aResultBaseAlgoList, aResultShapesList,
119                            aResultCompound);
120     }
121   }
122
123   storeResult(anObjects.Objects(), aTools.Objects(), aResultCompound, aResultIndex,
124               aMakeShapeList, aResultBaseAlgoList);
125
126   // Store deleted shapes after all results has been proceeded. This is to avoid issue when in one
127   // result shape has been deleted, but in another it was modified or stayed.
128   if (!aResultCompound)
129     aResultCompound = GeomAlgoAPI_CompoundBuilder::compound(aResultShapesList);
130   FeaturesPlugin_Tools::loadDeletedShapes(aResultBaseAlgoList,
131                                           aTools.Objects(),
132                                           aResultCompound);
133
134   // remove the rest results if there were produced in the previous pass
135   removeResults(aResultIndex);
136 }