]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchSolver/SketchSolver_Storage.cpp
Salome HOME
Fit incorrect movement of a line which boundary coincident to a point from another...
[modules/shaper.git] / src / SketchSolver / SketchSolver_Storage.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    SketchSolver_Storage.cpp
4 // Created: 18 Mar 2015
5 // Author:  Artem ZHIDKOV
6
7 #include <SketchSolver_Storage.h>
8
9 #include <math.h>
10
11 /** \brief Search the entity/parameter with specified ID in the list of elements
12  *  \param[in] theEntityID unique ID of the element
13  *  \param[in] theEntities list of elements
14  *  \return position of the found element or -1 if the element is not found
15  */
16 template<typename T>
17 static int Search(const uint32_t& theEntityID, const std::vector<T>& theEntities);
18
19 /// \brief Compare two parameters to be different
20 static bool IsNotEqual(const Slvs_Param& theParam1, const Slvs_Param& theParam2);
21 /// \brief Compare two entities to be different
22 static bool IsNotEqual(const Slvs_Entity& theEntity1, const Slvs_Entity& theEntity2);
23 /// \brief Compare two constriants to be different
24 static bool IsNotEqual(const Slvs_Constraint& theConstraint1, const Slvs_Constraint& theConstraint2);
25
26
27 SketchSolver_Storage::SketchSolver_Storage()
28   : myParamMaxID(SLVS_E_UNKNOWN),
29     myEntityMaxID(SLVS_E_UNKNOWN),
30     myConstrMaxID(SLVS_C_UNKNOWN),
31     myFixed(SLVS_E_UNKNOWN),
32     myNeedToResolve(false)
33 {
34 }
35
36 Slvs_hParam SketchSolver_Storage::addParameter(const Slvs_Param& theParam)
37 {
38   if (theParam.h > 0 && theParam.h <= myParamMaxID) {
39     // parameter is already used, rewrite it
40     return updateParameter(theParam);
41   }
42
43   Slvs_Param aParam = theParam;
44   if (aParam.h > myParamMaxID)
45     myParamMaxID = aParam.h;
46   else
47     aParam.h = ++myParamMaxID;
48   myParameters.push_back(aParam);
49   myNeedToResolve = true;
50   return aParam.h;
51 }
52
53 Slvs_hParam SketchSolver_Storage::updateParameter(const Slvs_Param& theParam)
54 {
55   if (theParam.h > 0 && theParam.h <= myParamMaxID) {
56     // parameter already used, rewrite it
57     int aPos = Search(theParam.h, myParameters);
58     if (aPos >= 0 && aPos < (int)myParameters.size()) {
59       myNeedToResolve = myNeedToResolve || IsNotEqual(myParameters[aPos], theParam);
60       myParameters[aPos] = theParam;
61       return theParam.h;
62     }
63   }
64
65   // Parameter is not found, add new one
66   Slvs_Param aParam = theParam;
67   aParam.h = 0;
68   return addParameter(aParam);
69 }
70
71 bool SketchSolver_Storage::removeParameter(const Slvs_hParam& theParamID)
72 {
73   int aPos = Search(theParamID, myParameters);
74   if (aPos >= 0 && aPos < (int)myParameters.size()) {
75     // Firstly, search the parametes is not used elsewhere
76     std::vector<Slvs_Entity>::const_iterator anEntIter = myEntities.begin();
77     for (; anEntIter != myEntities.end(); anEntIter++) {
78       for (int i = 0; i < 4; i++)
79         if (anEntIter->param[i] == theParamID)
80           return false;
81     }
82     // Remove parameter
83     myParameters.erase(myParameters.begin() + aPos);
84     myParamMaxID = myParameters.empty() ? SLVS_E_UNKNOWN : myParameters.back().h;
85     myNeedToResolve = true;
86     myRemovedParameters.insert(theParamID);
87     return true;
88   }
89   return false;
90 }
91
92 const Slvs_Param& SketchSolver_Storage::getParameter(const Slvs_hParam& theParamID) const
93 {
94   int aPos = Search(theParamID, myParameters);
95   if (aPos >= 0 && aPos < (int)myParameters.size())
96     return myParameters[aPos];
97
98   // Parameter is not found, return empty object
99   static Slvs_Param aDummy;
100   aDummy.h = 0;
101   return aDummy;
102 }
103
104
105 Slvs_hEntity SketchSolver_Storage::addEntity(const Slvs_Entity& theEntity)
106 {
107   if (theEntity.h > 0 && theEntity.h <= myEntityMaxID) {
108     // Entity is already used, rewrite it
109     return updateEntity(theEntity);
110   }
111
112   Slvs_Entity aEntity = theEntity;
113   if (aEntity.h > myEntityMaxID)
114     myEntityMaxID = aEntity.h;
115   else
116     aEntity.h = ++myEntityMaxID;
117   myEntities.push_back(aEntity);
118   myNeedToResolve = true;
119   return aEntity.h;
120 }
121
122 Slvs_hEntity SketchSolver_Storage::updateEntity(const Slvs_Entity& theEntity)
123 {
124   if (theEntity.h > 0 && theEntity.h <= myEntityMaxID) {
125     // Entity already used, rewrite it
126     int aPos = Search(theEntity.h, myEntities);
127     if (aPos >= 0 && aPos < (int)myEntities.size()) {
128       myNeedToResolve = myNeedToResolve || IsNotEqual(myEntities[aPos], theEntity);
129       myEntities[aPos] = theEntity;
130       return theEntity.h;
131     }
132   }
133
134   // Entity is not found, add new one
135   Slvs_Entity aEntity = theEntity;
136   aEntity.h = 0;
137   return addEntity(aEntity);
138 }
139
140 bool SketchSolver_Storage::removeEntity(const Slvs_hEntity& theEntityID)
141 {
142   bool aResult = true;
143   int aPos = Search(theEntityID, myEntities);
144   if (aPos >= 0 && aPos < (int)myEntities.size()) {
145     // Firstly, check the entity is not used elsewhere
146     std::vector<Slvs_Entity>::const_iterator anEntIter = myEntities.begin();
147     for (; anEntIter != myEntities.end(); anEntIter++) {
148       for (int i = 0; i < 4; i++)
149         if (anEntIter->point[i] == theEntityID)
150           return false;
151       if (anEntIter->distance == theEntityID)
152         return false;
153     }
154     std::vector<Slvs_Constraint>::const_iterator aConstrIter = myConstraints.begin();
155     for (; aConstrIter != myConstraints.end(); aConstrIter++) {
156       Slvs_hEntity anEntIDs[6] = {aConstrIter->ptA, aConstrIter->ptB,
157           aConstrIter->entityA, aConstrIter->entityB,
158           aConstrIter->entityC, aConstrIter->entityD};
159       for (int i = 0; i < 6; i++)
160         if (anEntIDs[i] == theEntityID)
161           return false;
162     }
163     // The entity is not used, remove it and its parameters
164     Slvs_Entity anEntity = myEntities[aPos];
165     myEntities.erase(myEntities.begin() + aPos);
166     myEntityMaxID = myEntities.empty() ? SLVS_E_UNKNOWN : myEntities.back().h;
167     if (anEntity.distance != SLVS_E_UNKNOWN)
168       aResult = aResult && removeParameter(anEntity.distance);
169     for (int i = 0; i < 4; i++)
170       if (anEntity.param[i] != SLVS_E_UNKNOWN)
171         aResult = removeParameter(anEntity.param[i]) && aResult;
172     for (int i = 0; i < 4; i++)
173       if (anEntity.point[i] != SLVS_E_UNKNOWN)
174         aResult = removeEntity(anEntity.point[i]) && aResult;
175     myNeedToResolve = true;
176     myRemovedEntities.insert(theEntityID);
177     if (anEntity.type == SLVS_E_POINT_IN_2D || anEntity.type == SLVS_E_POINT_IN_3D)
178       removeCoincidentPoint(theEntityID);
179   }
180   return aResult;
181 }
182
183 const Slvs_Entity& SketchSolver_Storage::getEntity(const Slvs_hEntity& theEntityID) const
184 {
185   int aPos = Search(theEntityID, myEntities);
186   if (aPos >= 0 && aPos < (int)myEntities.size())
187     return myEntities[aPos];
188
189   // Entity is not found, return empty object
190   static Slvs_Entity aDummy;
191   aDummy.h = 0;
192   return aDummy;
193 }
194
195 Slvs_hConstraint SketchSolver_Storage::isPointFixed(const Slvs_hEntity& thePointID) const
196 {
197   // Search the set of coincident points
198   std::vector< std::set<Slvs_hEntity> >::const_iterator aCPIter = myCoincidentPoints.begin();
199   for (; aCPIter != myCoincidentPoints.end(); aCPIter++)
200     if (aCPIter->find(thePointID) != aCPIter->end())
201       break;
202   if (aCPIter == myCoincidentPoints.end()) {
203     std::vector<Slvs_Constraint>::const_iterator aConstrIter = myConstraints.begin();
204     for (; aConstrIter != myConstraints.end(); aConstrIter++)
205       if (aConstrIter->type == SLVS_C_WHERE_DRAGGED &&
206           aConstrIter->ptA == thePointID)
207         return aConstrIter->h;
208     return SLVS_E_UNKNOWN;
209   }
210
211   // Search the Rigid constraint
212   std::vector<Slvs_Constraint>::const_iterator aConstrIter = myConstraints.begin();
213   for (; aConstrIter != myConstraints.end(); aConstrIter++)
214     if (aConstrIter->type == SLVS_C_WHERE_DRAGGED &&
215         aCPIter->find(aConstrIter->ptA) != aCPIter->end())
216       return aConstrIter->h;
217   return SLVS_E_UNKNOWN;
218 }
219
220
221 Slvs_hConstraint SketchSolver_Storage::addConstraint(const Slvs_Constraint& theConstraint)
222 {
223   if (theConstraint.h > 0 && theConstraint.h <= myConstrMaxID) {
224     // Constraint is already used, rewrite it
225     return updateConstraint(theConstraint);
226   }
227
228   Slvs_Constraint aConstraint = theConstraint;
229
230   // Find a constraint with same type uses same arguments
231   std::vector<Slvs_Constraint>::iterator aCIt = myConstraints.begin();
232   for (; aCIt != myConstraints.end(); aCIt++) {
233     if (aConstraint.type != aCIt->type)
234       continue;
235     if (aConstraint.ptA == aCIt->ptA && aConstraint.ptB == aCIt->ptB &&
236         aConstraint.entityA == aCIt->entityA && aConstraint.entityB == aCIt->entityB &&
237         aConstraint.entityC == aCIt->entityC && aConstraint.entityD == aCIt->entityD) {
238       aConstraint.h = aCIt->h;
239       return updateConstraint(aConstraint);
240     }
241   }
242
243   if (aConstraint.h > myConstrMaxID)
244     myConstrMaxID = aConstraint.h;
245   else
246     aConstraint.h = ++myConstrMaxID;
247   myConstraints.push_back(aConstraint);
248   myNeedToResolve = true;
249   if (aConstraint.type == SLVS_C_POINTS_COINCIDENT)
250     addCoincidentPoints(aConstraint.ptA, aConstraint.ptB);
251   return aConstraint.h;
252 }
253
254 Slvs_hConstraint SketchSolver_Storage::updateConstraint(const Slvs_Constraint& theConstraint)
255 {
256   if (theConstraint.h > 0 && theConstraint.h <= myConstrMaxID) {
257     // Constraint already used, rewrite it
258     int aPos = Search(theConstraint.h, myConstraints);
259     if (aPos >= 0 && aPos < (int)myConstraints.size()) {
260       myNeedToResolve = myNeedToResolve || IsNotEqual(myConstraints[aPos], theConstraint);
261       myConstraints[aPos] = theConstraint;
262       if (theConstraint.type == SLVS_C_POINTS_COINCIDENT)
263         addCoincidentPoints(theConstraint.ptA, theConstraint.ptB);
264       return theConstraint.h;
265     }
266   }
267
268   // Constraint is not found, add new one
269   Slvs_Constraint aConstraint = theConstraint;
270   aConstraint.h = 0;
271   return addConstraint(aConstraint);
272 }
273
274 bool SketchSolver_Storage::removeConstraint(const Slvs_hConstraint& theConstraintID)
275 {
276   bool aResult = true;
277   int aPos = Search(theConstraintID, myConstraints);
278   if (aPos >= 0 && aPos < (int)myConstraints.size()) {
279     Slvs_Constraint aConstraint = myConstraints[aPos];
280     myConstraints.erase(myConstraints.begin() + aPos);
281     myConstrMaxID = myConstraints.empty() ? SLVS_E_UNKNOWN : myConstraints.back().h;
282     myNeedToResolve = true;
283     myRemovedConstraints.insert(theConstraintID);
284     // Remove all entities
285     Slvs_hEntity anEntities[6] = {aConstraint.ptA, aConstraint.ptB,
286         aConstraint.entityA, aConstraint.entityB,
287         aConstraint.entityC, aConstraint.entityD};
288     for (int i = 0; i < 6; i++)
289       if (anEntities[i] != SLVS_E_UNKNOWN)
290         aResult = removeEntity(anEntities[i]) && aResult;
291     // remove temporary fixed point, if available
292     if (myFixed == theConstraintID)
293       myFixed = SLVS_E_UNKNOWN;
294   }
295   return aResult;
296 }
297
298 const Slvs_Constraint& SketchSolver_Storage::getConstraint(const Slvs_hConstraint& theConstraintID) const
299 {
300   int aPos = Search(theConstraintID, myConstraints);
301   if (aPos >= 0 && aPos < (int)myConstraints.size())
302     return myConstraints[aPos];
303
304   // Constraint is not found, return empty object
305   static Slvs_Constraint aDummy;
306   aDummy.h = 0;
307   return aDummy;
308 }
309
310 std::list<Slvs_Constraint> SketchSolver_Storage::getConstraintsByType(int theConstraintType) const
311 {
312   std::list<Slvs_Constraint> aResult;
313   std::vector<Slvs_Constraint>::const_iterator aCIter = myConstraints.begin();
314   for (; aCIter != myConstraints.end(); aCIter++)
315     if (aCIter->type == theConstraintType)
316       aResult.push_back(*aCIter);
317   return aResult;
318 }
319
320
321 void SketchSolver_Storage::addConstraintWhereDragged(const Slvs_hConstraint& theConstraintID)
322 {
323   if (myFixed != SLVS_E_UNKNOWN)
324     return; // the point is already fixed
325   int aPos = Search(theConstraintID, myConstraints);
326   if (aPos >= 0 && aPos < (int)myConstraints.size())
327     myFixed = theConstraintID;
328 }
329
330 void SketchSolver_Storage::addTemporaryConstraint(const Slvs_hConstraint& theConstraintID)
331 {
332   myTemporaryConstraints.insert(theConstraintID);
333 }
334
335 void SketchSolver_Storage::removeTemporaryConstraints()
336 {
337   myTemporaryConstraints.clear();
338 }
339
340 bool SketchSolver_Storage::isTemporary(const Slvs_hConstraint& theConstraintID) const
341 {
342   return myTemporaryConstraints.find(theConstraintID) != myTemporaryConstraints.end();
343 }
344
345
346 void SketchSolver_Storage::getRemoved(
347     std::set<Slvs_hParam>& theParameters,
348     std::set<Slvs_hEntity>& theEntities,
349     std::set<Slvs_hConstraint>& theConstraints)
350 {
351   theParameters = myRemovedParameters;
352   theEntities = myRemovedEntities;
353   theConstraints = myRemovedConstraints;
354
355   myRemovedParameters.clear();
356   myRemovedEntities.clear();
357   myRemovedConstraints.clear();
358 }
359
360 void SketchSolver_Storage::initializeSolver(SketchSolver_Solver& theSolver)
361 {
362   theSolver.setParameters(myParameters.data(), (int)myParameters.size());
363   theSolver.setEntities(myEntities.data(), (int)myEntities.size());
364
365   // Copy constraints excluding the fixed one
366   std::vector<Slvs_Constraint> aConstraints = myConstraints;
367   if (myFixed != SLVS_E_UNKNOWN) {
368     Slvs_hEntity aFixedPoint = SLVS_E_UNKNOWN;
369     std::vector<Slvs_Constraint>::iterator anIt = aConstraints.begin();
370     for (; anIt != aConstraints.end(); anIt++)
371       if (anIt->h == myFixed) {
372         aFixedPoint = anIt->ptA;
373         aConstraints.erase(anIt);
374         break;
375       }
376     // set dragged parameters
377     int aPos = Search(aFixedPoint, myEntities);
378     theSolver.setDraggedParameters(myEntities[aPos].param);
379   }
380   theSolver.setConstraints(aConstraints.data(), (int)aConstraints.size());
381 }
382
383 void SketchSolver_Storage::addCoincidentPoints(
384     const Slvs_hEntity& thePoint1, const Slvs_hEntity& thePoint2)
385 {
386   std::vector< std::set<Slvs_hEntity> >::iterator aCIter = myCoincidentPoints.begin();
387   std::vector< std::set<Slvs_hEntity> >::iterator aFoundIter = myCoincidentPoints.end(); // already found coincidence
388   bool isFound = false;
389   for (; aCIter != myCoincidentPoints.end(); aCIter++) {
390     bool isFirstFound = aCIter->find(thePoint1) != aCIter->end();
391     bool isSecondFound = aCIter->find(thePoint2) != aCIter->end();
392     isFound = isFound || isFirstFound || isSecondFound;
393     if (isFirstFound && isSecondFound)
394       break; // already coincident
395     else if (isFirstFound || isSecondFound) {
396       if (aFoundIter != myCoincidentPoints.end()) {
397         // merge two sets
398         aFoundIter->insert(aCIter->begin(), aCIter->end());
399         myCoincidentPoints.erase(aCIter);
400         break;
401       }
402       aCIter->insert(thePoint1);
403       aCIter->insert(thePoint2);
404     }
405   }
406   // coincident points not found
407   if (!isFound) {
408     std::set<Slvs_hEntity> aNewSet;
409     aNewSet.insert(thePoint1);
410     aNewSet.insert(thePoint2);
411     myCoincidentPoints.push_back(aNewSet);
412   }
413 }
414
415 void SketchSolver_Storage::removeCoincidentPoint(const Slvs_hEntity& thePoint)
416 {
417   std::vector< std::set<Slvs_hEntity> >::iterator aCIter = myCoincidentPoints.begin();
418   for (; aCIter != myCoincidentPoints.end(); aCIter++)
419     if (aCIter->find(thePoint) != aCIter->end()) {
420       aCIter->erase(thePoint);
421       if (aCIter->size() <= 1)
422         myCoincidentPoints.erase(aCIter);
423       break;
424     }
425 }
426
427 bool SketchSolver_Storage::isCoincident(
428     const Slvs_hEntity& thePoint1, const Slvs_hEntity& thePoint2) const
429 {
430   std::vector< std::set<Slvs_hEntity> >::const_iterator aCIter = myCoincidentPoints.begin();
431   for (; aCIter != myCoincidentPoints.end(); aCIter++)
432     if (aCIter->find(thePoint1) != aCIter->end() && aCIter->find(thePoint2) != aCIter->end())
433       return true;
434   return false;
435 }
436
437
438
439
440 // ========================================================
441 // =========      Auxiliary functions       ===============
442 // ========================================================
443
444 template<typename T>
445 int Search(const uint32_t& theEntityID, const std::vector<T>& theEntities)
446 {
447   int aResIndex = theEntityID <= theEntities.size() ? theEntityID - 1 : 0;
448   int aVecSize = theEntities.size();
449   if (theEntities.empty())
450     return 1;
451   while (aResIndex >= 0 && theEntities[aResIndex].h > theEntityID)
452     aResIndex--;
453   while (aResIndex < aVecSize && aResIndex >= 0 && theEntities[aResIndex].h < theEntityID)
454     aResIndex++;
455   if (aResIndex == -1)
456     aResIndex = aVecSize;
457   return aResIndex;
458 }
459
460 bool IsNotEqual(const Slvs_Param& theParam1, const Slvs_Param& theParam2)
461 {
462   return fabs(theParam1.val - theParam2.val) > tolerance;
463 }
464
465 bool IsNotEqual(const Slvs_Entity& theEntity1, const Slvs_Entity& theEntity2)
466 {
467   int i = 0;
468   for (; theEntity1.param[i] != 0 && i < 4; i++)
469     if (theEntity1.param[i] != theEntity2.param[i])
470       return true;
471   i = 0;
472   for (; theEntity1.point[i] != 0 && i < 4; i++)
473     if (theEntity1.point[i] != theEntity2.point[i])
474       return true;
475   return false;
476 }
477
478 bool IsNotEqual(const Slvs_Constraint& theConstraint1, const Slvs_Constraint& theConstraint2)
479 {
480   return theConstraint1.ptA != theConstraint2.ptA ||
481          theConstraint1.ptB != theConstraint2.ptB ||
482          theConstraint1.entityA != theConstraint2.entityA ||
483          theConstraint1.entityB != theConstraint2.entityB ||
484          theConstraint1.entityC != theConstraint2.entityC ||
485          theConstraint1.entityD != theConstraint2.entityD ||
486          fabs(theConstraint1.valA - theConstraint2.valA) > tolerance;
487 }