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