Salome HOME
High level objects history implementation for Intersection and Compound features...
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Intersection.cpp
1 // Copyright (C) 2014-2017  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 "FeaturesPlugin_Intersection.h"
22
23 #include <ModelAPI_Data.h>
24 #include <ModelAPI_Document.h>
25 #include <ModelAPI_BodyBuilder.h>
26 #include <ModelAPI_ResultBody.h>
27 #include <ModelAPI_AttributeSelectionList.h>
28
29 #include <GeomAlgoAPI_Intersection.h>
30 #include <GeomAlgoAPI_Tools.h>
31 #include <GeomAPI_ShapeExplorer.h>
32
33 #include <sstream>
34
35 //=================================================================================================
36 FeaturesPlugin_Intersection::FeaturesPlugin_Intersection()
37 {
38 }
39
40 //=================================================================================================
41 void FeaturesPlugin_Intersection::initAttributes()
42 {
43   data()->addAttribute(OBJECT_LIST_ID(),
44                        ModelAPI_AttributeSelectionList::typeId());
45 }
46
47 //=================================================================================================
48 void FeaturesPlugin_Intersection::execute()
49 {
50   ListOfShape anObjects;
51
52   // Getting objects.
53   AttributeSelectionListPtr anObjectsSelList = selectionList(OBJECT_LIST_ID());
54   for (int anObjectsIndex = 0; anObjectsIndex < anObjectsSelList->size(); anObjectsIndex++) {
55     std::shared_ptr<ModelAPI_AttributeSelection> anObjectAttr =
56       anObjectsSelList->value(anObjectsIndex);
57     std::shared_ptr<GeomAPI_Shape> anObject = anObjectAttr->value();
58     if (!anObject.get()) {
59       return;
60     }
61     anObjects.push_back(anObject);
62   }
63
64   if(anObjects.empty()) {
65     setError("Error: Objects or tools are empty.");
66     return;
67   }
68
69   int aResultIndex = 0;
70
71   // Create result.
72   GeomMakeShapePtr anIntersectionAlgo(new GeomAlgoAPI_Intersection(anObjects));
73
74   // Checking that the algorithm worked properly.
75   std::string anError;
76   if (GeomAlgoAPI_Tools::AlgoError::isAlgorithmFailed(anIntersectionAlgo, getKind(), anError)) {
77     setError(anError);
78     return;
79   }
80
81   std::shared_ptr<ModelAPI_ResultBody> aResultBody = document()->createBody(data(), aResultIndex);
82   loadNamingDS(aResultBody, anObjects, anIntersectionAlgo);
83   setResult(aResultBody, aResultIndex);
84   aResultIndex++;
85
86   // remove the rest results if there were produced in the previous pass
87   removeResults(aResultIndex);
88 }
89
90 //=================================================================================================
91 void FeaturesPlugin_Intersection::loadNamingDS(ResultBodyPtr theResultBody,
92                                                const ListOfShape& theObjects,
93                                                const GeomMakeShapePtr& theMakeShape)
94 {
95   std::shared_ptr<GeomAPI_Shape> aResultShape = theMakeShape->shape();
96
97   if(theObjects.front()->isEqual(aResultShape)) {
98     theResultBody->store(aResultShape, false);
99     return;
100   }
101
102   theResultBody->storeModified(theObjects, aResultShape, theMakeShape);
103
104   const int aShapeTypesNb = 3;
105   const GeomAPI_Shape::ShapeType aShapeTypes[aShapeTypesNb] = {GeomAPI_Shape::VERTEX,
106                                                                GeomAPI_Shape::EDGE,
107                                                                GeomAPI_Shape::FACE };
108   for (ListOfShape::const_iterator anIt = theObjects.cbegin(); anIt != theObjects.cend(); ++anIt) {
109     const GeomShapePtr aShape = *anIt;
110     for(int anIndex = 0; anIndex < aShapeTypesNb; ++anIndex) {
111       theResultBody->loadModifiedShapes(theMakeShape, aShape, aShapeTypes[anIndex]);
112       theResultBody->loadGeneratedShapes(theMakeShape, aShape, aShapeTypes[anIndex]);
113     }
114   }
115 }