]> SALOME platform Git repositories - modules/shaper.git/blob - src/BuildPlugin/BuildPlugin_Shell.cpp
Salome HOME
Update copyrights
[modules/shaper.git] / src / BuildPlugin / BuildPlugin_Shell.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 "BuildPlugin_Shell.h"
21
22 #include <ModelAPI_AttributeSelectionList.h>
23 #include <ModelAPI_ResultBody.h>
24 #include <ModelAPI_ResultConstruction.h>
25
26 #include <GeomAlgoAPI_Sewing.h>
27 #include <GeomAlgoAPI_Tools.h>
28 #include <GeomAPI_ShapeExplorer.h>
29
30 //=================================================================================================
31 BuildPlugin_Shell::BuildPlugin_Shell()
32 {
33 }
34
35 //=================================================================================================
36 void BuildPlugin_Shell::initAttributes()
37 {
38   data()->addAttribute(BASE_OBJECTS_ID(), ModelAPI_AttributeSelectionList::typeId());
39 }
40
41 //=================================================================================================
42 void BuildPlugin_Shell::execute()
43 {
44   // Get base objects list.
45   AttributeSelectionListPtr aSelectionList = selectionList(BASE_OBJECTS_ID());
46
47   // Collect base shapes.
48   ListOfShape aShapes;
49   for(int anIndex = 0; anIndex < aSelectionList->size(); ++anIndex) {
50     AttributeSelectionPtr aSelection = aSelectionList->value(anIndex);
51     GeomShapePtr aShape = aSelection->value();
52     if(!aShape.get()) {
53       aShape = aSelection->context()->shape();
54     }
55     aShapes.push_back(aShape);
56   }
57
58   // Sew faces.
59   GeomMakeShapePtr aSewingAlgo(new GeomAlgoAPI_Sewing(aShapes));
60
61   std::string anError;
62   if (GeomAlgoAPI_Tools::AlgoError::isAlgorithmFailed(aSewingAlgo, getKind(), anError)) {
63     setError(anError);
64     return;
65   }
66
67   // Store result.
68   GeomShapePtr aResult = aSewingAlgo->shape();
69
70   int anIndex = 0;
71   for(GeomAPI_ShapeExplorer anExp(aResult, GeomAPI_Shape::SHELL); anExp.more(); anExp.next()) {
72     GeomShapePtr aShell = anExp.current();
73     ResultBodyPtr aResultBody = document()->createBody(data(), anIndex);
74     aResultBody->store(aShell);
75     for(ListOfShape::const_iterator anIt = aShapes.cbegin(); anIt != aShapes.cend(); ++anIt) {
76       for (GeomAPI_ShapeExplorer aFaceExp(*anIt, GeomAPI_Shape::FACE);
77            aFaceExp.more();
78            aFaceExp.next())
79       {
80         GeomShapePtr aFace = aFaceExp.current();
81         ListOfShape aHistory;
82         aSewingAlgo->modified(aFace, aHistory);
83         for (ListOfShape::const_iterator aHistoryIt = aHistory.cbegin();
84              aHistoryIt != aHistory.cend();
85              ++aHistoryIt)
86         {
87           GeomShapePtr aHistoryShape = *aHistoryIt;
88           if (aShell->isSubShape(aHistoryShape, false)) {
89             aResultBody->loadModifiedShapes(aSewingAlgo,
90                                             aFace,
91                                             GeomAPI_Shape::EDGE);
92             aResultBody->loadModifiedShapes(aSewingAlgo,
93                                             aFace,
94                                             GeomAPI_Shape::FACE);
95             break;
96           }
97         }
98       }
99     }
100     setResult(aResultBody, anIndex);
101     ++anIndex;
102   }
103
104   removeResults(anIndex);
105 }