Salome HOME
FUSE operation refactoring (process edges and faces while creating objects hierarchy).
[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 //=================================================================================================
44 FeaturesPlugin_BooleanFill::FeaturesPlugin_BooleanFill()
45   : FeaturesPlugin_Boolean(FeaturesPlugin_Boolean::BOOL_FILL)
46 {
47 }
48
49 //=================================================================================================
50 void FeaturesPlugin_BooleanFill::execute()
51 {
52   std::string anError;
53   ObjectHierarchy anObjects, aTools;
54   ListOfShape aPlanes, anEdgesAndFaces;
55
56   // Getting objects.
57   if (!processAttribute(OBJECT_LIST_ID(), anObjects, aPlanes, anEdgesAndFaces))
58     return;
59   // Planes are not supported as objects of FILL operation
60   aPlanes.clear();
61
62   // Getting tools.
63   if (!processAttribute(TOOL_LIST_ID(), aTools, aPlanes, anEdgesAndFaces))
64     return;
65
66   int aResultIndex = 0;
67
68   if (anObjects.IsEmpty() || (aTools.IsEmpty() && aPlanes.empty())) {
69     std::string aFeatureError = "Error: Not enough objects for boolean operation.";
70     setError(aFeatureError);
71     return;
72   }
73
74   std::vector<FeaturesPlugin_Tools::ResultBaseAlgo> aResultBaseAlgoList;
75   ListOfShape aResultShapesList;
76
77   // For solids cut each object with all tools.
78   bool isOk = true;
79   for (ObjectHierarchy::Iterator anObjectsIt = anObjects.Begin();
80        anObjectsIt != anObjects.End() && isOk;
81        ++anObjectsIt) {
82     GeomShapePtr anObject = *anObjectsIt;
83     GeomShapePtr aParent = anObjects.Parent(anObject, false);
84
85     if (aParent && aParent->shapeType() == GeomAPI_Shape::COMPSOLID) {
86       // get parent once again to mark it and the subs as processed
87       aParent = anObjects.Parent(anObject);
88       // compsolid handling
89       isOk = processCompsolid(GeomAlgoAPI_Tools::BOOL_PARTITION,
90                               anObjects, aParent, aTools.Objects(), aPlanes,
91                               aResultIndex, aResultBaseAlgoList, aResultShapesList);
92     } else {
93       // process object as is
94       isOk = processObject(GeomAlgoAPI_Tools::BOOL_PARTITION,
95                            anObject, aTools.Objects(), aPlanes,
96                            aResultIndex, aResultBaseAlgoList, aResultShapesList);
97     }
98   }
99
100   // Store deleted shapes after all results has been proceeded. This is to avoid issue when in one
101   // result shape has been deleted, but in another it was modified or stayed.
102   GeomShapePtr aResultShapesCompound = GeomAlgoAPI_CompoundBuilder::compound(aResultShapesList);
103   FeaturesPlugin_Tools::loadDeletedShapes(aResultBaseAlgoList,
104                                           aTools.Objects(),
105                                           aResultShapesCompound);
106
107   // remove the rest results if there were produced in the previous pass
108   removeResults(aResultIndex);
109 }