Salome HOME
Import of edges participating to the result of the sketch
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Sketch.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include <Config_PropManager.h>
22
23 #include <GeomAlgoAPI_CompoundBuilder.h>
24 #include <GeomAlgoAPI_FaceBuilder.h>
25
26 #include <GeomAPI_Dir.h>
27 #include <GeomAPI_PlanarEdges.h>
28 #include <GeomAPI_Vertex.h>
29
30 #include <GeomDataAPI_Point2D.h>
31 #include <GeomAlgoAPI_PointBuilder.h>
32
33 #include <ModelAPI_AttributeRefList.h>
34 #include <ModelAPI_AttributeString.h>
35 #include <ModelAPI_Data.h>
36 #include <ModelAPI_Document.h>
37 #include <ModelAPI_Feature.h>
38 #include <ModelAPI_Object.h>
39 #include <ModelAPI_ResultConstruction.h>
40 #include <ModelAPI_Validator.h>
41 #include <ModelAPI_Session.h>
42 #include <ModelAPI_Events.h>
43
44 #include <SketchPlugin_Sketch.h>
45 #include <SketchPlugin_Feature.h>
46 #include <SketchPlugin_Projection.h>
47 #include <SketchPlugin_SketchEntity.h>
48 #include <SketchPlugin_Tools.h>
49
50 #include <Events_Loop.h>
51
52 #include <memory>
53
54 #include <math.h>
55 #include <vector>
56
57 SketchPlugin_Sketch::SketchPlugin_Sketch()
58 {
59 }
60
61 void SketchPlugin_Sketch::initAttributes()
62 {
63   data()->addAttribute(SketchPlugin_Sketch::ORIGIN_ID(), GeomDataAPI_Point::typeId());
64   data()->addAttribute(SketchPlugin_Sketch::DIRX_ID(), GeomDataAPI_Dir::typeId());
65   data()->addAttribute(SketchPlugin_Sketch::NORM_ID(), GeomDataAPI_Dir::typeId());
66   data()->addAttribute(SketchPlugin_Sketch::FEATURES_ID(), ModelAPI_AttributeRefList::typeId());
67   // the selected face, base for the sketcher plane, not obligatory
68   data()->addAttribute(SketchPlugin_SketchEntity::EXTERNAL_ID(),
69     ModelAPI_AttributeSelection::typeId());
70   ModelAPI_Session::get()->validators()->registerNotObligatory(
71     getKind(), SketchPlugin_SketchEntity::EXTERNAL_ID());
72   data()->addAttribute(SketchPlugin_Sketch::SOLVER_ERROR(), ModelAPI_AttributeString::typeId());
73   ModelAPI_Session::get()->validators()->registerNotObligatory(
74     getKind(), SketchPlugin_Sketch::SOLVER_ERROR());
75   data()->addAttribute(SketchPlugin_Sketch::SOLVER_DOF(), ModelAPI_AttributeString::typeId());
76   ModelAPI_Session::get()->validators()->registerNotObligatory(
77     getKind(), SketchPlugin_Sketch::SOLVER_DOF());
78 }
79
80 void SketchPlugin_Sketch::execute()
81 {
82   if (!data()->isValid())
83     return;
84   std::shared_ptr<ModelAPI_AttributeRefList> aRefList = std::dynamic_pointer_cast<
85       ModelAPI_AttributeRefList>(data()->attribute(SketchPlugin_Sketch::FEATURES_ID()));
86
87   std::shared_ptr<GeomDataAPI_Point> anOrigin = std::dynamic_pointer_cast<GeomDataAPI_Point>(
88       data()->attribute(SketchPlugin_Sketch::ORIGIN_ID()));
89   std::shared_ptr<GeomDataAPI_Dir> aDirX = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
90       data()->attribute(SketchPlugin_Sketch::DIRX_ID()));
91   std::shared_ptr<GeomDataAPI_Dir> aNorm = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
92       data()->attribute(SketchPlugin_Sketch::NORM_ID()));
93
94   std::list<ObjectPtr> aFeatures = aRefList->list();
95   if (aFeatures.empty()) // actually, this must be avoided by the validators
96     return;
97
98   std::list<ObjectPtr>::const_iterator anIt = aFeatures.begin(), aLast = aFeatures.end();
99   std::shared_ptr<SketchPlugin_Feature> aFeature;
100   std::list<std::shared_ptr<GeomAPI_Shape> > aFeaturesPreview;
101   for (; anIt != aLast; anIt++) {
102     aFeature = std::dynamic_pointer_cast<SketchPlugin_Feature>(*anIt);
103     if (aFeature) {
104       if (!aFeature->sketch()) // on load document the back references are missed
105         aFeature->setSketch(this);
106       // do not include into the result the external edges with disabled flag "Include into result"
107       if (aFeature->data()->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID())) {
108         if (aFeature->data()->selection(SketchPlugin_SketchEntity::EXTERNAL_ID())->context()) {
109           AttributeBooleanPtr aKeepResult =
110               aFeature->boolean(SketchPlugin_Projection::INCLUDE_INTO_RESULT());
111           if (!aKeepResult || !aKeepResult->value())
112             continue;
113         }
114       }
115       // do not include the construction entities in the result
116       if (aFeature->data()->attribute(SketchPlugin_SketchEntity::AUXILIARY_ID())) {
117         if (aFeature->data()->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID())->value())
118           continue;
119       }
120
121       const std::list<std::shared_ptr<ModelAPI_Result> >& aRes = aFeature->results();
122       std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aResIter = aRes.cbegin();
123       for (; aResIter != aRes.cend(); aResIter++) {
124         std::shared_ptr<ModelAPI_ResultConstruction> aConstr = std::dynamic_pointer_cast<
125             ModelAPI_ResultConstruction>(*aResIter);
126         if (aConstr) {
127           std::shared_ptr<GeomAPI_Shape> aShape = aConstr->shape();
128           if (aShape)
129             aFeaturesPreview.push_back(aShape);
130         }
131       }
132     }
133   }
134
135   // Collect all edges as one big wire
136   std::shared_ptr<GeomAPI_PlanarEdges> aBigWire(new GeomAPI_PlanarEdges);
137   std::list<std::shared_ptr<GeomAPI_Shape> >::const_iterator aShapeIt = aFeaturesPreview.begin();
138   for (; aShapeIt != aFeaturesPreview.end(); ++aShapeIt) {
139     aBigWire->addEdge(*aShapeIt);
140   }
141   aBigWire->setPlane(anOrigin->pnt(), aDirX->dir(), aNorm->dir());
142   std::shared_ptr<ModelAPI_ResultConstruction> aConstr = document()->createConstruction(data());
143   aConstr->setShape(aBigWire);
144   setResult(aConstr);
145 }
146
147 std::shared_ptr<ModelAPI_Feature> SketchPlugin_Sketch::addFeature(std::string theID)
148 {
149   std::shared_ptr<ModelAPI_Feature> aNew = document()->addFeature(theID, false);
150   if (aNew) {
151     // the sketch cannot be specified for the macro-features defined in python
152     // like SketchRectangle, so we need to check the type of new feature
153     std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
154         std::dynamic_pointer_cast<SketchPlugin_Feature>(aNew);
155     if (aSketchFeature)
156       aSketchFeature->setSketch(this);
157     data()->reflist(SketchPlugin_Sketch::FEATURES_ID())->append(aNew);
158   }
159    // set as current also after it becomes sub to set correctly enabled for other sketch subs
160   document()->setCurrentFeature(aNew, false);
161
162   return aNew;
163 }
164
165 void SketchPlugin_Sketch::removeFeature(std::shared_ptr<ModelAPI_Feature> theFeature)
166 {
167   if (!data()->isValid()) // sketch is already removed (case on undo of sketch), sync is not needed
168     return;
169   AttributeRefListPtr aList = reflist(SketchPlugin_Sketch::FEATURES_ID());
170   // if the object is last, remove it from the list
171   // (needed to skip empty transaction on edit of sketch feature)
172   if (aList->object(aList->size(true) - 1, true) == theFeature) {
173     aList->remove(theFeature);
174   } else {
175     // to keep the persistent sub-elements indexing, do not remove elements from list,
176     // but substitute by nulls
177     aList->substitute(theFeature, ObjectPtr());
178   }
179 }
180
181 int SketchPlugin_Sketch::numberOfSubs(bool forTree) const
182 {
183   if (forTree)
184     return 0;
185   return data()->reflist(FEATURES_ID())->size(false);
186 }
187
188 std::shared_ptr<ModelAPI_Feature> SketchPlugin_Sketch::subFeature(
189   const int theIndex, bool forTree)
190 {
191   if (forTree)
192     return FeaturePtr();
193
194   ObjectPtr anObj = data()->reflist(SketchPlugin_Sketch::FEATURES_ID())->object(theIndex, false);
195   FeaturePtr aRes = std::dynamic_pointer_cast<ModelAPI_Feature>(anObj);
196   return aRes;
197 }
198
199 int SketchPlugin_Sketch::subFeatureId(const int theIndex) const
200 {
201   std::shared_ptr<ModelAPI_AttributeRefList> aRefList = std::dynamic_pointer_cast<
202       ModelAPI_AttributeRefList>(data()->attribute(SketchPlugin_Sketch::FEATURES_ID()));
203   std::list<ObjectPtr> aFeatures = aRefList->list();
204   std::list<ObjectPtr>::const_iterator anIt = aFeatures.begin();
205   int aResultIndex = 1; // number of the counted (created) features, started from 1
206   int aFeatureIndex = -1; // number of the not-empty features in the list
207   for (; anIt != aFeatures.end(); anIt++) {
208     if (anIt->get())
209       aFeatureIndex++;
210     if (aFeatureIndex == theIndex)
211       break;
212     aResultIndex++;
213   }
214   return aResultIndex;
215 }
216
217 bool SketchPlugin_Sketch::isSub(ObjectPtr theObject) const
218 {
219   // check is this feature of result
220   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObject);
221   if (!aFeature) {
222     ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
223     if (aRes)
224       aFeature = document()->feature(aRes);
225   }
226   if (aFeature) {
227     return data()->reflist(SketchPlugin_Sketch::FEATURES_ID())->isInList(aFeature);
228   }
229   return false;
230 }
231
232
233 void SketchPlugin_Sketch::attributeChanged(const std::string& theID) {
234   if (theID == SketchPlugin_SketchEntity::EXTERNAL_ID()) {
235     AttributeSelectionPtr aSelAttr = selection(SketchPlugin_SketchEntity::EXTERNAL_ID());
236     if (aSelAttr->context().get()) { // update arguments due to the selection value
237       std::shared_ptr<GeomAPI_Shape> aSelection = aSelAttr->value();
238       if (!aSelection.get()) aSelection = aSelAttr->context()->shape();
239       // update the sketch plane
240       std::shared_ptr<GeomAPI_Face> aFace(new GeomAPI_Face(aSelection));
241       std::shared_ptr<GeomAPI_Pln> aPlane = aFace->getPlane();
242       if (aPlane) {
243         double anA, aB, aC, aD;
244         aPlane->coefficients(anA, aB, aC, aD);
245
246         // calculate attributes of the sketch
247         std::shared_ptr<GeomAPI_Dir> aNormDir(new GeomAPI_Dir(anA, aB, aC));
248         std::shared_ptr<GeomAPI_XYZ> aCoords = aNormDir->xyz();
249         std::shared_ptr<GeomAPI_XYZ> aZero(new GeomAPI_XYZ(0, 0, 0));
250         aCoords = aCoords->multiplied(-aD * aCoords->distance(aZero));
251         std::shared_ptr<GeomAPI_Pnt> anOrigPnt(new GeomAPI_Pnt(aCoords));
252         // X axis is preferable to be dirX on the sketch
253         // here can not be very small value to avoid very close to X normal axis (issue 595)
254         static const double tol = 0.1;
255         bool isX = fabs(anA) - 1.0 < tol && fabs(aB) < tol && fabs(aC) < tol;
256         std::shared_ptr<GeomAPI_Dir> aTempDir(
257           isX ? new GeomAPI_Dir(0, 1, 0) : new GeomAPI_Dir(1, 0, 0));
258         std::shared_ptr<GeomAPI_Dir> aYDir(new GeomAPI_Dir(aNormDir->cross(aTempDir)));
259         std::shared_ptr<GeomAPI_Dir> aXDir(new GeomAPI_Dir(aYDir->cross(aNormDir)));
260
261         // update position of the sketch
262         std::shared_ptr<GeomDataAPI_Point> anOrigin = std::dynamic_pointer_cast
263           <GeomDataAPI_Point>(data()->attribute(SketchPlugin_Sketch::ORIGIN_ID()));
264         anOrigin->setValue(anOrigPnt);
265         std::shared_ptr<GeomDataAPI_Dir> aNormal = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
266           data()->attribute(SketchPlugin_Sketch::NORM_ID()));
267         aNormal->setValue(aNormDir);
268         std::shared_ptr<GeomDataAPI_Dir> aDirX = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
269           data()->attribute(SketchPlugin_Sketch::DIRX_ID()));
270         aDirX->setValue(aXDir);
271         std::shared_ptr<GeomAPI_Dir> aDir = aPlane->direction();
272       }
273     }
274   } else if (theID == NORM_ID() || theID == DIRX_ID() || theID == ORIGIN_ID()) {
275     // send all sub-elements are also updated: all entities become created on different plane
276     static Events_ID anUpdateEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED);
277     std::list<ObjectPtr> aSubs = data()->reflist(SketchPlugin_Sketch::FEATURES_ID())->list();
278     std::list<ObjectPtr>::iterator aSub = aSubs.begin();
279     for(; aSub != aSubs.end(); aSub++) {
280       if (aSub->get())
281         ModelAPI_EventCreator::get()->sendUpdated(*aSub, anUpdateEvent);
282     }
283   }
284 }
285
286 void SketchPlugin_Sketch::createPoint2DResult(ModelAPI_Feature* theFeature,
287                                               SketchPlugin_Sketch* theSketch,
288                                               const std::string& theAttributeID, const int theIndex)
289 {
290   std::shared_ptr<GeomDataAPI_Point2D> aPoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
291     theFeature->attribute(theAttributeID));
292
293   if (!aPoint || !aPoint->isInitialized())
294     return;
295
296   std::shared_ptr<GeomAPI_Pnt> aCenter(theSketch->to3D(aPoint->x(), aPoint->y()));
297   //std::cout<<"Execute circle "<<aCenter->x()<<" "<<aCenter->y()<<" "<<aCenter->z()<<std::endl;
298   // make a visible point
299   std::shared_ptr<GeomAPI_Shape> aCenterPointShape = GeomAlgoAPI_PointBuilder::vertex(aCenter);
300   std::shared_ptr<ModelAPI_ResultConstruction> aResult = theFeature->document()->createConstruction(
301                      theFeature->data(), theIndex);
302   aResult->setShape(aCenterPointShape);
303   aResult->setIsInHistory(false);
304
305   theFeature->setResult(aResult, theIndex);
306 }
307
308 FeaturePtr SketchPlugin_Sketch::addUniqueNamedCopiedFeature(FeaturePtr theFeature,
309                                                             SketchPlugin_Sketch* theSketch,
310                                                             const bool theIsCopy)
311 {
312   FeaturePtr aNewFeature = theSketch->addFeature(theFeature->getKind());
313   // addFeature generates a unique name for the feature, it caches the name
314   std::string aUniqueFeatureName = aNewFeature->data()->name();
315   // all attribute values are copied\pasted to the new feature, name is not an exception
316   theFeature->data()->copyTo(aNewFeature->data());
317   // external state should not be copied as a new object is an object of the current sketch
318   if (theFeature->selection(SketchPlugin_SketchEntity::EXTERNAL_ID()).get())
319     aNewFeature->selection(SketchPlugin_SketchEntity::EXTERNAL_ID())->setValue(ResultPtr(),
320                                                                                GeomShapePtr());
321   aNewFeature->data()->setName(aUniqueFeatureName);
322   // text expressions could block setValue of some attributes
323   SketchPlugin_Tools::clearExpressions(aNewFeature);
324   // Set copy attribute
325   AttributeBooleanPtr anAttr = aNewFeature->data()->boolean(SketchPlugin_SketchEntity::COPY_ID());
326   if(anAttr.get()) {
327     anAttr->setValue(theIsCopy);
328   }
329
330   return aNewFeature;
331 }
332
333 std::shared_ptr<GeomAPI_Ax3> SketchPlugin_Sketch::plane(SketchPlugin_Sketch* theSketch)
334 {
335   std::shared_ptr<ModelAPI_Data> aData = theSketch->data();
336
337   std::shared_ptr<GeomDataAPI_Point> anOrigin = std::dynamic_pointer_cast<GeomDataAPI_Point>(
338       aData->attribute(SketchPlugin_Sketch::ORIGIN_ID()));
339   std::shared_ptr<GeomDataAPI_Dir> aDirX = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
340       aData->attribute(SketchPlugin_Sketch::DIRX_ID()));
341   std::shared_ptr<GeomDataAPI_Dir> aNorm = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
342       aData->attribute(SketchPlugin_Sketch::NORM_ID()));
343
344   return std::shared_ptr<GeomAPI_Ax3>(new GeomAPI_Ax3(anOrigin->pnt(), aDirX->dir(), aNorm->dir()));
345 }
346
347 void SketchPlugin_Sketch::exchangeIDs(
348   std::shared_ptr<ModelAPI_Feature> theFeature1, std::shared_ptr<ModelAPI_Feature> theFeature2)
349 {
350   reflist(SketchPlugin_Sketch::FEATURES_ID())->exchange(theFeature1, theFeature2);
351 }