Salome HOME
Compsolids: initial implementation of sub-results of results on the data model level.
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Rotation.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        FeaturesPlugin_Rotation.cpp
4 // Created:     12 May 2015
5 // Author:      Dmitry Bobylev
6
7 #include <FeaturesPlugin_Rotation.h>
8
9 #include <ModelAPI_AttributeDouble.h>
10 #include <ModelAPI_AttributeSelectionList.h>
11 #include <ModelAPI_BodyBuilder.h>
12 #include <ModelAPI_ResultBody.h>
13 #include <ModelAPI_Session.h>
14 #include <ModelAPI_ResultPart.h>
15
16 #include <GeomAPI_Edge.h>
17 #include <GeomAPI_Lin.h>
18
19 //=================================================================================================
20 FeaturesPlugin_Rotation::FeaturesPlugin_Rotation()
21 {
22 }
23
24 //=================================================================================================
25 void FeaturesPlugin_Rotation::initAttributes()
26 {
27   AttributeSelectionListPtr aSelection = 
28     std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(data()->addAttribute(
29     FeaturesPlugin_Rotation::OBJECTS_LIST_ID(), ModelAPI_AttributeSelectionList::typeId()));
30   // revolution works with faces always
31   aSelection->setSelectionType("SOLID");
32
33   data()->addAttribute(FeaturesPlugin_Rotation::AXIS_OBJECT_ID(), ModelAPI_AttributeSelection::typeId());
34   data()->addAttribute(FeaturesPlugin_Rotation::ANGLE_ID(), ModelAPI_AttributeDouble::typeId());
35 }
36
37 //=================================================================================================
38 void FeaturesPlugin_Rotation::execute()
39 {
40   // Getting objects.
41   ListOfShape anObjects;
42   std::list<ResultPtr> aContextes;
43   AttributeSelectionListPtr anObjectsSelList = selectionList(FeaturesPlugin_Rotation::OBJECTS_LIST_ID());
44   if (anObjectsSelList->size() == 0) {
45     return;
46   }
47   for(int anObjectsIndex = 0; anObjectsIndex < anObjectsSelList->size(); anObjectsIndex++) {
48     std::shared_ptr<ModelAPI_AttributeSelection> anObjectAttr = anObjectsSelList->value(anObjectsIndex);
49     std::shared_ptr<GeomAPI_Shape> anObject = anObjectAttr->value();
50     if(!anObject.get()) {
51       return;
52     }
53     anObjects.push_back(anObject);
54     aContextes.push_back(anObjectAttr->context());
55   }
56
57   //Getting axis.
58   std::shared_ptr<GeomAPI_Ax1> anAxis;
59   std::shared_ptr<GeomAPI_Edge> anEdge;
60   std::shared_ptr<ModelAPI_AttributeSelection> anObjRef = selection(FeaturesPlugin_Rotation::AXIS_OBJECT_ID());
61   if(anObjRef && anObjRef->value() && anObjRef->value()->isEdge()) {
62     anEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(anObjRef->value()));
63   } else if (anObjRef && !anObjRef->value() && anObjRef->context() && 
64              anObjRef->context()->shape() && anObjRef->context()->shape()->isEdge()) {
65     anEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(anObjRef->context()->shape()));
66   }
67   if(anEdge) {
68     anAxis = std::shared_ptr<GeomAPI_Ax1>(new GeomAPI_Ax1(anEdge->line()->location(), anEdge->line()->direction()));
69   }
70
71   // Getting angle.
72   double anAngle = real(FeaturesPlugin_Rotation::ANGLE_ID())->value();
73
74   // Rotating each object.
75   int aResultIndex = 0;
76   std::list<ResultPtr>::iterator aContext = aContextes.begin();
77   for(ListOfShape::iterator anObjectsIt = anObjects.begin(); anObjectsIt != anObjects.end(); 
78         anObjectsIt++, aContext++) {
79     std::shared_ptr<GeomAPI_Shape> aBaseShape = *anObjectsIt;
80     bool isPart = (*aContext)->groupName() == ModelAPI_ResultPart::group();
81     GeomAlgoAPI_Rotation aRotationAlgo(aBaseShape, anAxis, anAngle, isPart);
82
83     // Checking that the algorithm worked properly.
84     if(!aRotationAlgo.isDone()) {
85       static const std::string aFeatureError = "Rotation algorithm failed";
86       setError(aFeatureError);
87       break;
88     }
89     if(aRotationAlgo.shape()->isNull()) {
90       static const std::string aShapeError = "Resulting shape is Null";
91       setError(aShapeError);
92       break;
93     }
94     if(!aRotationAlgo.isValid()) {
95       std::string aFeatureError = "Warning: resulting shape is not valid";
96       setError(aFeatureError);
97       break;
98     }
99
100     // Setting result.
101     if (isPart) {
102       ResultPartPtr anOrigin = std::dynamic_pointer_cast<ModelAPI_ResultPart>(*aContext);
103       ResultPartPtr aResultPart = document()->copyPart(anOrigin, data(), aResultIndex);
104       aResultPart->setTrsf(*aContext, aRotationAlgo.transformation());
105       setResult(aResultPart);
106     } else {
107       ResultBodyPtr aResultBody = document()->createBody(data(), aResultIndex);
108       LoadNamingDS(aRotationAlgo, aResultBody, aBaseShape);
109       setResult(aResultBody, aResultIndex);
110     }
111     aResultIndex++;
112   }
113
114   // Remove the rest results if there were produced in the previous pass.
115   removeResults(aResultIndex);
116 }
117
118 void FeaturesPlugin_Rotation::LoadNamingDS(const GeomAlgoAPI_Rotation& theRotaionAlgo,
119                                            std::shared_ptr<ModelAPI_ResultBody> theResultBody,
120                                            std::shared_ptr<GeomAPI_Shape> theBaseShape)
121 {
122   // Store result.
123   theResultBody->storeModified(theBaseShape, theRotaionAlgo.shape());
124
125   std::shared_ptr<GeomAPI_DataMapOfShapeShape> aSubShapes = theRotaionAlgo.mapOfShapes();
126
127   int aRotatedTag = 1;
128   std::string aRotatedName = "Rotated";
129   theResultBody->loadAndOrientModifiedShapes(theRotaionAlgo.makeShape().get(),
130                                               theBaseShape, GeomAPI_Shape::FACE,
131                                               aRotatedTag, aRotatedName, *aSubShapes.get());
132
133 }