Salome HOME
Updated modified shapes storing.
[modules/shaper.git] / src / BuildPlugin / BuildPlugin_Solid.cpp
1 // Copyright (C) 2017-20xx  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "BuildPlugin_Solid.h"
22
23 #include <ModelAPI_AttributeSelectionList.h>
24 #include <ModelAPI_ResultBody.h>
25
26 #include <GeomAPI_ShapeIterator.h>
27
28 #include <GeomAlgoAPI_MakeVolume.h>
29
30 //=================================================================================================
31 BuildPlugin_Solid::BuildPlugin_Solid()
32 {
33 }
34
35 //=================================================================================================
36 void BuildPlugin_Solid::initAttributes()
37 {
38   data()->addAttribute(BASE_OBJECTS_ID(), ModelAPI_AttributeSelectionList::typeId());
39 }
40
41 //=================================================================================================
42 void BuildPlugin_Solid::execute()
43 {
44   // all the needed checkings are in validator, so, here just make and store result
45   ListOfShape anOriginalShapes;
46   AttributeSelectionListPtr aSelectionList = selectionList(BASE_OBJECTS_ID());
47   for (int anIndex = 0; anIndex < aSelectionList->size(); ++anIndex) {
48     AttributeSelectionPtr aSelection = aSelectionList->value(anIndex);
49     GeomShapePtr aShape = aSelection->value();
50     if (!aShape.get())
51       aShape = aSelection->context()->shape();
52     anOriginalShapes.push_back(aShape);
53   }
54   std::shared_ptr<GeomAlgoAPI_MakeVolume> anAlgo(
55     new GeomAlgoAPI_MakeVolume(anOriginalShapes, false));
56   // check and process result of volume maker
57   GeomShapePtr aResShape = getSingleSubshape(anAlgo->shape());
58   storeResult(anOriginalShapes, aResShape, anAlgo);
59 }
60
61 void BuildPlugin_Solid::storeResult(const ListOfShape& theOriginalShapes,
62                                     const GeomShapePtr& theResultShape,
63                                     const GeomMakeShapePtr& theAlgorithm)
64 {
65   ResultBodyPtr aResultBody = document()->createBody(data());
66   aResultBody->store(theResultShape);
67
68   // Store faces
69   for (ListOfShape::const_iterator anIt = theOriginalShapes.cbegin();
70        anIt != theOriginalShapes.cend();
71        ++anIt)
72   {
73     GeomShapePtr aShape = *anIt;
74     aResultBody->loadModifiedShapes(theAlgorithm, aShape, GeomAPI_Shape::FACE, "Modified_Face");
75   }
76   setResult(aResultBody);
77 }
78
79 GeomShapePtr BuildPlugin_Solid::getSingleSubshape(const GeomShapePtr& theCompound)
80 {
81   if (theCompound->shapeType() == GeomAPI_Shape::COMPOUND) {
82     GeomAPI_ShapeIterator anIt(theCompound);
83     GeomShapePtr aFoundSub;
84     for (; anIt.more() && !aFoundSub; anIt.next()) {
85       return anIt.current();
86     }
87   }
88   return theCompound;
89 }