Salome HOME
Merge remote branch 'remotes/origin/vsr/gcc_4_9_compat' into Dev_2.1.0
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_CompositeSketch.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        FeaturesPlugin_CompositeSketch.cpp
4 // Created:     11 September 2015
5 // Author:      Dmitry Bobylev
6
7 #include <FeaturesPlugin_CompositeSketch.h>
8
9 #include <ModelAPI_AttributeSelectionList.h>
10 #include <ModelAPI_AttributeReference.h>
11 #include <ModelAPI_BodyBuilder.h>
12 #include <ModelAPI_ResultBody.h>
13 #include <ModelAPI_ResultConstruction.h>
14 #include <ModelAPI_Session.h>
15 #include <ModelAPI_Validator.h>
16
17 #include <GeomAlgoAPI_CompoundBuilder.h>
18 #include <GeomAlgoAPI_Prism.h>
19 #include <GeomAlgoAPI_Revolution.h>
20 #include <GeomAlgoAPI_ShapeTools.h>
21
22 #include <sstream>
23
24 //=================================================================================================
25 void FeaturesPlugin_CompositeSketch::initAttributes()
26 {
27   data()->addAttribute(SKETCH_OBJECT_ID(), ModelAPI_AttributeReference::typeId());
28   data()->addAttribute(SKETCH_SELECTION_ID(), ModelAPI_AttributeSelection::typeId());
29   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), SKETCH_SELECTION_ID());
30
31   initMakeSolidsAttributes();
32 }
33
34 //=================================================================================================
35 std::shared_ptr<ModelAPI_Feature> FeaturesPlugin_CompositeSketch::addFeature(std::string theID)
36 {
37   std::shared_ptr<ModelAPI_Feature> aNew = document()->addFeature(theID, false);
38   if (aNew) {
39     data()->reference(SKETCH_OBJECT_ID())->setValue(aNew);
40   }
41   // set as current also after it becomes sub to set correctly enabled for other sketch subs
42   document()->setCurrentFeature(aNew, false);
43   return aNew;
44 }
45
46 //=================================================================================================
47 int FeaturesPlugin_CompositeSketch::numberOfSubs(bool forTree) const
48 {
49   ObjectPtr aObj = data()->reference(SKETCH_OBJECT_ID())->value();
50   return aObj.get()? 1 : 0;
51 }
52
53 //=================================================================================================
54 std::shared_ptr<ModelAPI_Feature> FeaturesPlugin_CompositeSketch::subFeature(const int theIndex, bool forTree)
55 {
56   if (theIndex == 0)
57     return std::dynamic_pointer_cast<ModelAPI_Feature>(data()->reference(SKETCH_OBJECT_ID())->value());
58   return std::shared_ptr<ModelAPI_Feature>();
59 }
60
61 //=================================================================================================
62 int FeaturesPlugin_CompositeSketch::subFeatureId(const int theIndex) const
63 {
64   if (theIndex == 0) {
65     FeaturePtr aFeature = 
66       std::dynamic_pointer_cast<ModelAPI_Feature>(data()->reference(SKETCH_OBJECT_ID())->value());
67     if (aFeature.get())
68       return aFeature->data()->featureId();
69   }
70   return -1;
71 }
72
73 //=================================================================================================
74 bool FeaturesPlugin_CompositeSketch::isSub(ObjectPtr theObject) const
75 {
76   // check is this feature of result
77   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObject);
78   if (!aFeature)
79     return false;
80  
81   ObjectPtr aSub = data()->reference(SKETCH_OBJECT_ID())->value();
82   return aSub == theObject;
83 }
84
85 //=================================================================================================
86 void FeaturesPlugin_CompositeSketch::removeFeature(std::shared_ptr<ModelAPI_Feature> theFeature)
87 {
88 }
89
90 //=================================================================================================
91 void FeaturesPlugin_CompositeSketch::erase()
92 {
93   if (data().get() && data()->isValid()) { // on abort of sketch of this composite it may be invalid
94     FeaturePtr aSketch =
95       std::dynamic_pointer_cast<ModelAPI_Feature>(data()->reference(SKETCH_OBJECT_ID())->value());
96     if (aSketch.get() && aSketch->data()->isValid()) {
97       document()->removeFeature(aSketch);
98     }
99   }
100   ModelAPI_CompositeFeature::erase();
101 }
102
103
104 //=================================================================================================
105 void FeaturesPlugin_CompositeSketch::execute()
106 {
107   // Getting faces to create solids.
108   std::shared_ptr<ModelAPI_Feature> aSketchFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(
109                                                      reference(SKETCH_OBJECT_ID())->value());
110   if(!aSketchFeature || aSketchFeature->results().empty()) {
111     return;
112   }
113   ResultPtr aSketchRes = aSketchFeature->results().front();
114   ResultConstructionPtr aConstruction = std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aSketchRes);
115   if(!aConstruction.get()) {
116     return;
117   }
118
119   if (!selection(SKETCH_SELECTION_ID())->isInitialized() || selection(SKETCH_SELECTION_ID())->context() != aSketchRes) {
120     selection(SKETCH_SELECTION_ID())->setValue(aSketchRes, std::shared_ptr<GeomAPI_Shape>());
121   }
122   int aSketchFacesNum = aConstruction->facesNum();
123   if(aSketchFacesNum == 0) {
124     return;
125   }
126   ListOfShape aFacesList;
127   for(int aFaceIndex = 0; aFaceIndex < aSketchFacesNum; aFaceIndex++) {
128     std::shared_ptr<GeomAPI_Shape> aFace = std::dynamic_pointer_cast<GeomAPI_Shape>(aConstruction->face(aFaceIndex));
129     aFacesList.push_back(aFace);
130   }
131
132   // Searching faces with common edges.
133   ListOfShape aShells;
134   ListOfShape aFreeFaces;
135   std::shared_ptr<GeomAPI_Shape> aFacesCompound = GeomAlgoAPI_CompoundBuilder::compound(aFacesList);
136   GeomAlgoAPI_ShapeTools::combineShapes(aFacesCompound, GeomAPI_Shape::SHELL, aShells, aFreeFaces);
137   aShells.insert(aShells.end(), aFreeFaces.begin(), aFreeFaces.end());
138
139   // Generating result for each shell and face.
140   int aErrorsNum = 0;
141   int aResultIndex = 0;
142   for(ListOfShape::const_iterator anIter = aShells.cbegin(); anIter != aShells.cend(); anIter++) {
143     std::shared_ptr<GeomAPI_Shape> aResult;
144     ListOfShape aFromFaces, aToFaces;
145     std::shared_ptr<GeomAlgoAPI_MakeShape> aMakeShape;
146     std::shared_ptr<GeomAPI_DataMapOfShapeShape> aDataMap;
147
148     std::shared_ptr<GeomAPI_Shape> aBaseFace = *anIter;
149     makeSolid(aBaseFace, aResult, aFromFaces, aToFaces, aMakeShape, aDataMap);
150     if(!aResult.get()) {
151       aErrorsNum++;
152       continue;
153     }
154
155     ResultBodyPtr aResultBody = document()->createBody(data(), aResultIndex);
156     loadNamingDS(aResultBody, aBaseFace, aResult, aFromFaces, aToFaces, aMakeShape, aDataMap);
157     setResult(aResultBody, aResultIndex);
158     aResultIndex++;
159   }
160
161   if(aErrorsNum > 0) {
162     std::ostringstream aStringStream;
163     aStringStream << "Warning: could not create solid(s) from " << aErrorsNum << " face(s).";
164     setError(aStringStream.str());
165   }
166
167   // Remove the rest results if there were produced in the previous pass.
168   removeResults(aResultIndex);
169 }
170
171 //=================================================================================================
172 void FeaturesPlugin_CompositeSketch::loadNamingDS(std::shared_ptr<ModelAPI_ResultBody> theResultBody,
173                                                   const std::shared_ptr<GeomAPI_Shape>& theBaseShape,
174                                                   const std::shared_ptr<GeomAPI_Shape>& theResult,
175                                                   const ListOfShape& theFromFaces,
176                                                   const ListOfShape& theToFaces,
177                                                   const std::shared_ptr<GeomAlgoAPI_MakeShape>& theMakeShape,
178                                                   const std::shared_ptr<GeomAPI_DataMapOfShapeShape>& theDataMap)
179 {
180   //load result
181   theResultBody->storeGenerated(theBaseShape, theResult);
182
183   //Insert lateral face : Face from Edge
184   const std::string aLatName = "LateralFace";
185   const int aLatTag = 1;
186   theResultBody->loadAndOrientGeneratedShapes(theMakeShape.get(), theBaseShape, GeomAPI_Shape::EDGE, aLatTag, aLatName, *theDataMap);
187
188   //Insert to faces
189   const std::string aToName = "ToFace";
190   int aToTag = 2;
191   for(ListOfShape::const_iterator anIt = theToFaces.cbegin(); anIt != theToFaces.cend(); anIt++) {
192     std::shared_ptr<GeomAPI_Shape> aToFace = *anIt;
193     if(theDataMap->isBound(aToFace)) {
194       aToFace = theDataMap->find(aToFace);
195     }
196     theResultBody->generated(aToFace, aToName, aToTag++);
197   }
198
199   //Insert from faces
200   const std::string aFromName = "FromFace";
201   int aFromTag = aToTag > 10000 ? aToTag : 10000;
202   for(ListOfShape::const_iterator anIt = theFromFaces.cbegin(); anIt != theFromFaces.cend(); anIt++) {
203     std::shared_ptr<GeomAPI_Shape> aFromFace = *anIt;
204     if(theDataMap->isBound(aFromFace)) {
205       aFromFace = theDataMap->find(aFromFace);
206     }
207     theResultBody->generated(aFromFace, aFromName, aFromTag++);
208   }
209 }