]> SALOME platform Git repositories - modules/shaper.git/blob - src/FeaturesPlugin/FeaturesPlugin_Revolution.cpp
Salome HOME
Issue #1343: Architecture changes. Composite features now derived from extrusion...
[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   /// Sub-feature of the composite should be set in the base list.
78   setSketchObjectToList();
79
80   // Getting base shapes.
81   getBaseShapes(theBaseShapes);
82
83   //Getting axis.
84   std::shared_ptr<GeomAPI_Ax1> anAxis;
85   std::shared_ptr<GeomAPI_Edge> anEdge;
86   AttributeSelectionPtr aSelection = selection(AXIS_OBJECT_ID());
87   if(aSelection.get() && aSelection->value().get() && aSelection->value()->isEdge()) {
88     anEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(aSelection->value()));
89   } else if(aSelection->context().get() &&
90             aSelection->context()->shape().get() &&
91             aSelection->context()->shape()->isEdge()) {
92     anEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(aSelection->context()->shape()));
93   }
94   if(anEdge.get()) {
95     anAxis = std::shared_ptr<GeomAPI_Ax1>(new GeomAPI_Ax1(anEdge->line()->location(),
96                                                           anEdge->line()->direction()));
97   }
98
99   // Getting angles.
100   double aToAngle = 0.0;
101   double aFromAngle = 0.0;
102
103   if(string(CREATION_METHOD())->value() == "ByAngles") {
104     aToAngle = real(TO_ANGLE_ID())->value();
105     aFromAngle = real(FROM_ANGLE_ID())->value();
106   } else {
107     aToAngle = real(TO_OFFSET_ID())->value();
108     aFromAngle = 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     GeomShapePtr aBaseShape = *anIter;
135
136     std::shared_ptr<GeomAlgoAPI_Revolution> aRevolAlgo(new GeomAlgoAPI_Revolution(aBaseShape, anAxis,
137                                                                                   aToShape, aToAngle,
138                                                                                   aFromShape, aFromAngle));
139     if(!isMakeShapeValid(aRevolAlgo)) {
140       return false;
141     }
142
143     theMakeShapes.push_back(aRevolAlgo);
144   }
145
146   return true;
147 }