Salome HOME
be93d26ec8233e3e33dc7076135108b13e9ecbf1
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_BooleanCut.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_BooleanCut.h"
21
22 #include "FeaturesPlugin_Tools.h"
23
24 #include <ModelAPI_ResultBody.h>
25 #include <ModelAPI_AttributeSelectionList.h>
26 #include <ModelAPI_Tools.h>
27
28 #include <GeomAlgoAPI_Boolean.h>
29 #include <GeomAlgoAPI_CompoundBuilder.h>
30 #include <GeomAlgoAPI_MakeShapeList.h>
31 #include <GeomAlgoAPI_PaveFiller.h>
32 #include <GeomAlgoAPI_ShapeTools.h>
33 #include <GeomAlgoAPI_Tools.h>
34
35 #include <GeomAPI_ShapeExplorer.h>
36 #include <GeomAPI_ShapeIterator.h>
37
38 //==================================================================================================
39 FeaturesPlugin_BooleanCut::FeaturesPlugin_BooleanCut()
40 : FeaturesPlugin_Boolean(FeaturesPlugin_Boolean::BOOL_CUT)
41 {
42 }
43
44 //==================================================================================================
45 void FeaturesPlugin_BooleanCut::execute()
46 {
47   ObjectHierarchy anObjects, aTools;
48   ListOfShape aPlanes;
49
50   // Getting objects and tools
51   if (!processAttribute(OBJECT_LIST_ID(), anObjects, aPlanes) ||
52       !processAttribute(TOOL_LIST_ID(), aTools, aPlanes))
53     return;
54
55   int aResultIndex = 0;
56
57   if(anObjects.IsEmpty() || aTools.IsEmpty()) {
58     std::string aFeatureError = "Error: Not enough objects for boolean operation.";
59     setError(aFeatureError);
60     return;
61   }
62
63   std::vector<FeaturesPlugin_Tools::ResultBaseAlgo> aResultBaseAlgoList;
64   ListOfShape aResultShapesList;
65   std::string anError;
66
67   // For solids cut each object with all tools.
68   bool isOk = true;
69   for (ObjectHierarchy::Iterator anObjectsIt = anObjects.Begin();
70        anObjectsIt != anObjects.End() && isOk;
71        ++anObjectsIt) {
72     GeomShapePtr anObject = *anObjectsIt;
73     GeomShapePtr aParent = anObjects.Parent(anObject);
74
75     if (aParent) {
76       GeomAPI_Shape::ShapeType aShapeType = aParent->shapeType();
77       if (aShapeType == GeomAPI_Shape::COMPOUND) {
78         // Compound handling
79         isOk = processCompound(GeomAlgoAPI_Tools::BOOL_CUT,
80                                anObjects, aParent, aTools.Objects(),
81                                aResultIndex, aResultBaseAlgoList, aResultShapesList);
82       }
83       else if (aShapeType == GeomAPI_Shape::COMPSOLID) {
84         // Compsolid handling
85         isOk = processCompsolid(GeomAlgoAPI_Tools::BOOL_CUT,
86                                 anObjects, aParent, aTools.Objects(), ListOfShape(),
87                                 aResultIndex, aResultBaseAlgoList, aResultShapesList);
88       }
89     } else {
90       // process object as is
91       isOk = processObject(GeomAlgoAPI_Tools::BOOL_CUT,
92                            anObject, aTools.Objects(), aPlanes,
93                            aResultIndex, aResultBaseAlgoList, aResultShapesList);
94     }
95   }
96
97   // Store deleted shapes after all results has been proceeded. This is to avoid issue when in one
98   // result shape has been deleted, but in another it was modified or stayed.
99   GeomShapePtr aResultShapesCompound = GeomAlgoAPI_CompoundBuilder::compound(aResultShapesList);
100   FeaturesPlugin_Tools::loadDeletedShapes(aResultBaseAlgoList,
101                                           aTools.Objects(),
102                                           aResultShapesCompound);
103
104   // remove the rest results if there were produced in the previous pass
105   removeResults(aResultIndex);
106 }