Salome HOME
225e3cf481e78ac7398aab43b1fa18bcad0c055c
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Extrusion.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        FeaturesPlugin_Extrusion.cpp
4 // Created:     30 May 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "FeaturesPlugin_Extrusion.h"
8
9 #include <ModelAPI_AttributeDouble.h>
10 #include <ModelAPI_AttributeSelection.h>
11 #include <ModelAPI_AttributeString.h>
12 #include <ModelAPI_Session.h>
13 #include <ModelAPI_Validator.h>
14
15 #include <GeomAlgoAPI_Prism.h>
16
17 #include <GeomAPI_Dir.h>
18 #include <GeomAPI_Edge.h>
19 #include <GeomAPI_Lin.h>
20
21 //=================================================================================================
22 FeaturesPlugin_Extrusion::FeaturesPlugin_Extrusion()
23 {
24 }
25
26 //=================================================================================================
27 void FeaturesPlugin_Extrusion::initAttributes()
28 {
29   initCompositeSketchAttribtues(InitBaseObjectsList);
30
31   data()->addAttribute(CREATION_METHOD(), ModelAPI_AttributeString::typeId());
32
33   data()->addAttribute(TO_SIZE_ID(), ModelAPI_AttributeDouble::typeId());
34   data()->addAttribute(FROM_SIZE_ID(), ModelAPI_AttributeDouble::typeId());
35
36   data()->addAttribute(TO_OBJECT_ID(), ModelAPI_AttributeSelection::typeId());
37   data()->addAttribute(TO_OFFSET_ID(), ModelAPI_AttributeDouble::typeId());
38
39   data()->addAttribute(FROM_OBJECT_ID(), ModelAPI_AttributeSelection::typeId());
40   data()->addAttribute(FROM_OFFSET_ID(), ModelAPI_AttributeDouble::typeId());
41
42   data()->addAttribute(DIRECTION_OBJECT_ID(), ModelAPI_AttributeSelection::typeId());
43
44   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), TO_OBJECT_ID());
45   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), FROM_OBJECT_ID());
46   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), DIRECTION_OBJECT_ID());
47
48   initCompositeSketchAttribtues(InitSketchLauncher);
49 }
50
51 //=================================================================================================
52 void FeaturesPlugin_Extrusion::execute()
53 {
54   ListOfShape aBaseShapesList;
55   ListOfMakeShape aMakeShapesList;
56
57   // Make extrusions.
58   if(!makeExtrusions(aBaseShapesList, aMakeShapesList)) {
59     return;
60   }
61
62   // Store results.
63   int aResultIndex = 0;
64   ListOfShape::const_iterator aBaseIt = aBaseShapesList.cbegin();
65   ListOfMakeShape::const_iterator anAlgoIt = aMakeShapesList.cbegin();
66   for(; aBaseIt != aBaseShapesList.cend() && anAlgoIt != aMakeShapesList.cend(); ++aBaseIt, ++anAlgoIt) {
67     storeResult(*aBaseIt, *anAlgoIt, aResultIndex++);
68   }
69
70   removeResults(aResultIndex);
71 }
72
73 //=================================================================================================
74 bool FeaturesPlugin_Extrusion::makeExtrusions(ListOfShape& theBaseShapes,
75                                               ListOfMakeShape& theMakeShapes)
76 {
77   theMakeShapes.clear();
78
79   // Getting base shapes.
80   getBaseShapes(theBaseShapes);
81
82   //Getting direction.
83   std::shared_ptr<GeomAPI_Dir> aDir;
84   std::shared_ptr<GeomAPI_Edge> anEdge;
85   AttributeSelectionPtr aSelection = selection(DIRECTION_OBJECT_ID());
86   if(aSelection.get() && aSelection->value().get() && aSelection->value()->isEdge()) {
87     anEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(aSelection->value()));
88   } else if(aSelection->context().get() &&
89             aSelection->context()->shape().get() &&
90             aSelection->context()->shape()->isEdge()) {
91     anEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(aSelection->context()->shape()));
92   }
93   if(anEdge.get()) {
94     if(anEdge->isLine()) {
95       aDir = anEdge->line()->direction();
96     }
97   }
98
99   // Getting sizes.
100   double aToSize = 0.0;
101   double aFromSize = 0.0;
102
103   if(string(CREATION_METHOD())->value() == "BySizes") {
104     aToSize = real(TO_SIZE_ID())->value();
105     aFromSize = real(FROM_SIZE_ID())->value();
106   } else {
107     aToSize = real(TO_OFFSET_ID())->value();
108     aFromSize = real(FROM_OFFSET_ID())->value();
109   }
110
111   // Getting bounding planes.
112   GeomShapePtr aToShape;
113   GeomShapePtr aFromShape;
114
115   if(string(CREATION_METHOD())->value() == "ByPlanesAndOffsets") {
116     aSelection = selection(TO_OBJECT_ID());
117     if(aSelection.get()) {
118       aToShape = std::dynamic_pointer_cast<GeomAPI_Shape>(aSelection->value());
119       if(!aToShape.get() && aSelection->context().get()) {
120         aToShape = aSelection->context()->shape();
121       }
122     }
123     aSelection = selection(FROM_OBJECT_ID());
124     if(aSelection.get()) {
125       aFromShape = std::dynamic_pointer_cast<GeomAPI_Shape>(aSelection->value());
126       if(!aFromShape.get() && aSelection->context().get()) {
127         aFromShape = aSelection->context()->shape();
128       }
129     }
130   }
131
132   // Generating result for each base shape.
133   for(ListOfShape::const_iterator anIter = theBaseShapes.cbegin(); anIter != theBaseShapes.cend(); anIter++) {
134     std::shared_ptr<GeomAPI_Shape> aBaseShape = *anIter;
135
136     std::shared_ptr<GeomAlgoAPI_Prism> aPrismAlgo(new GeomAlgoAPI_Prism(aBaseShape, aDir,
137                                                                         aToShape, aToSize,
138                                                                         aFromShape, aFromSize));
139     if(!isMakeShapeValid(aPrismAlgo)) {
140       return false;
141     }
142
143     theMakeShapes.push_back(aPrismAlgo);
144   }
145
146   return true;
147 }