1 // Copyright (C) 2019-2023 CEA, EDF
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include <SketchPlugin_MacroBSpline.h>
22 #include <SketchPlugin_BSpline.h>
23 #include <SketchPlugin_BSplinePeriodic.h>
24 #include <SketchPlugin_ConstraintCoincidenceInternal.h>
25 #include <SketchPlugin_Line.h>
26 #include <SketchPlugin_Point.h>
27 #include <SketchPlugin_Tools.h>
28 #include <SketchPlugin_Sketch.h>
30 #include <Locale_Convert.h>
32 #include <ModelAPI_AttributeDoubleArray.h>
33 #include <ModelAPI_AttributeInteger.h>
34 #include <ModelAPI_AttributeRefAttrList.h>
35 #include <ModelAPI_Events.h>
36 #include <ModelAPI_Session.h>
37 #include <ModelAPI_Validator.h>
38 #include <ModelAPI_Tools.h>
40 #include <GeomDataAPI_Point2DArray.h>
42 #include <GeomAlgoAPI_CompoundBuilder.h>
43 #include <GeomAlgoAPI_EdgeBuilder.h>
44 #include <GeomAlgoAPI_PointBuilder.h>
46 #include <GeomAPI_BSpline2d.h>
50 /// Create internal coincidence constraint with B-spline pole
51 static void createInternalConstraint(SketchPlugin_Sketch* theSketch,
52 AttributePtr thePoint,
53 AttributePtr theBSplinePoles,
54 const int thePoleIndex);
57 SketchPlugin_MacroBSpline::SketchPlugin_MacroBSpline()
58 : SketchPlugin_SketchEntity(),
64 SketchPlugin_MacroBSpline::SketchPlugin_MacroBSpline(bool isPeriodic)
65 : SketchPlugin_SketchEntity(),
67 myIsPeriodic(isPeriodic)
71 void SketchPlugin_MacroBSpline::initAttributes()
73 data()->addAttribute(POLES_ID(), GeomDataAPI_Point2DArray::typeId());
74 data()->addAttribute(WEIGHTS_ID(), ModelAPI_AttributeDoubleArray::typeId());
76 data()->addAttribute(REF_POLES_ID(), ModelAPI_AttributeRefAttrList::typeId());
77 ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), REF_POLES_ID());
79 data()->addAttribute(CONTROL_POLYGON_ID(), ModelAPI_AttributeBoolean::typeId());
81 data()->addAttribute(AUXILIARY_ID(), ModelAPI_AttributeBoolean::typeId());
84 void SketchPlugin_MacroBSpline::execute()
86 FeaturePtr aBSpline = createBSplineFeature();
88 if (boolean(CONTROL_POLYGON_ID())->value()) {
89 std::list<FeaturePtr> aControlPoles;
90 createControlPolygon(aBSpline, myIsPeriodic, aControlPoles);
91 constraintsForPoles(aControlPoles);
95 FeaturePtr SketchPlugin_MacroBSpline::createBSplineFeature()
97 if (myKnots.empty() || myMultiplicities.empty())
98 getAISObject(AISObjectPtr()); // fill B-spline parameters
100 FeaturePtr aBSpline = sketch()->addFeature(
101 myIsPeriodic ? SketchPlugin_BSplinePeriodic::ID() : SketchPlugin_BSpline::ID());
103 aBSpline->integer(SketchPlugin_BSplineBase::DEGREE_ID())->setValue(myDegree);
105 AttributePoint2DArrayPtr aPoles = std::dynamic_pointer_cast<GeomDataAPI_Point2DArray>(
106 aBSpline->attribute(SketchPlugin_BSplineBase::POLES_ID()));
107 AttributePoint2DArrayPtr aPolesMacro =
108 std::dynamic_pointer_cast<GeomDataAPI_Point2DArray>(attribute(POLES_ID()));
109 aPoles->assign(aPolesMacro);
111 AttributeDoubleArrayPtr aWeights =
112 aBSpline->data()->realArray(SketchPlugin_BSplineBase::WEIGHTS_ID());
113 AttributeDoubleArrayPtr aWeightsMacro = data()->realArray(WEIGHTS_ID());
114 int aSize = aWeightsMacro->size();
115 aWeights->setSize(aSize);
116 for (int index = 0; index < aSize; ++index)
117 aWeights->setValue(index, aWeightsMacro->value(index));
119 AttributeDoubleArrayPtr aKnots =
120 aBSpline->data()->realArray(SketchPlugin_BSplineBase::KNOTS_ID());
121 aSize = (int)myKnots.size();
122 aKnots->setSize(aSize);
123 std::list<double>::iterator aKIt = myKnots.begin();
124 for (int index = 0; index < aSize; ++index, ++aKIt)
125 aKnots->setValue(index, *aKIt);
127 AttributeIntArrayPtr aMults = aBSpline->data()->intArray(SketchPlugin_BSplineBase::MULTS_ID());
128 aSize = (int)myMultiplicities.size();
129 aMults->setSize(aSize);
130 std::list<int>::iterator aMIt = myMultiplicities.begin();
131 for (int index = 0; index < aSize; ++index, ++aMIt)
132 aMults->setValue(index, *aMIt);
135 AttributePoint2DPtr aStartPoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
136 aBSpline->attribute(SketchPlugin_BSpline::START_ID()));
137 aStartPoint->setValue(aPoles->pnt(0));
139 AttributePoint2DPtr aEndPoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
140 aBSpline->attribute(SketchPlugin_BSpline::END_ID()));
141 aEndPoint->setValue(aPoles->pnt(aPoles->size() - 1));
144 aBSpline->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID())->setValue(
145 boolean(AUXILIARY_ID())->value());
152 void SketchPlugin_MacroBSpline::createControlPolygon(FeaturePtr theBSpline,
154 std::list<FeaturePtr>& thePoles)
156 AttributePoint2DArrayPtr aPoles = std::dynamic_pointer_cast<GeomDataAPI_Point2DArray>(
157 theBSpline->attribute(SketchPlugin_BSpline::POLES_ID()));
158 int aSize = aPoles->size();
160 for (int index = 0; index < aSize; ++index)
161 thePoles.push_back(createAuxiliaryPole(aPoles, index));
163 for (int index = 1; index < aSize; ++index)
164 createAuxiliarySegment(aPoles, index - 1, index);
166 // additional segment to close the control polygon
167 createAuxiliarySegment(aPoles, aSize - 1, 0);
171 void SketchPlugin_MacroBSpline::constraintsForPoles(const std::list<FeaturePtr>& thePoles)
173 AttributeRefAttrListPtr aRefAttrList = data()->refattrlist(REF_POLES_ID());
174 std::list<std::pair<ObjectPtr, AttributePtr> > aList;
176 aList = aRefAttrList->list();
178 SketchPlugin_Sketch* aSketch = sketch();
180 std::list<std::pair<ObjectPtr, AttributePtr> >::iterator aLIt = aList.begin();
181 std::list<FeaturePtr>::const_iterator aPIt = thePoles.begin();
182 for (; aLIt != aList.end() && aPIt != thePoles.end(); ++aPIt, ++aLIt) {
183 // firstly, check the attribute (in this case the object will be not empty too)
185 SketchPlugin_Tools::createConstraintAttrAttr(aSketch,
186 SketchPlugin_ConstraintCoincidence::ID(),
187 (*aPIt)->attribute(SketchPlugin_Point::COORD_ID()), aLIt->second);
189 // now add coincidence with the result
190 else if (aLIt->first) {
191 SketchPlugin_Tools::createConstraintAttrObject(aSketch,
192 SketchPlugin_ConstraintCoincidence::ID(),
193 (*aPIt)->attribute(SketchPlugin_Point::COORD_ID()), aLIt->first);
198 AISObjectPtr SketchPlugin_MacroBSpline::getAISObject(AISObjectPtr thePrevious)
200 SketchPlugin_Sketch* aSketch = sketch();
202 return AISObjectPtr();
204 AttributePoint2DArrayPtr aPolesArray =
205 std::dynamic_pointer_cast<GeomDataAPI_Point2DArray>(attribute(POLES_ID()));
206 AttributeDoubleArrayPtr aWeightsArray = data()->realArray(WEIGHTS_ID());
208 if (aPolesArray->size() < 2)
209 return AISObjectPtr();
211 std::list<GeomShapePtr> aShapes;
213 // convert poles to vertices and collect weights
214 std::list<GeomPnt2dPtr> aPoles2D;
215 std::list<double> aWeights;
216 for (int anIndex = 0; anIndex < aPolesArray->size(); ++anIndex) {
217 double aWeight = aWeightsArray->value(anIndex);
218 if (aWeight < 1.e-10)
219 continue; // skip poles with zero weights
221 aWeights.push_back(aWeight);
223 GeomPnt2dPtr aPole = aPolesArray->pnt(anIndex);
224 aPoles2D.push_back(aPole);
225 GeomPointPtr aPole3D = aSketch->to3D(aPole->x(), aPole->y());
226 aShapes.push_back(GeomAlgoAPI_PointBuilder::vertex(aPole3D));
229 // create result non-periodic B-spline curve
230 std::shared_ptr<GeomAPI_BSpline2d> aBSplineCurve;
232 aBSplineCurve.reset(new GeomAPI_BSpline2d(aPoles2D, aWeights, myIsPeriodic));
234 // cannot build a B-spline curve
235 return AISObjectPtr();
237 GeomShapePtr anEdge =
238 GeomAlgoAPI_EdgeBuilder::bsplineOnPlane(aSketch->coordinatePlane(), aBSplineCurve);
240 return AISObjectPtr();
242 // store transient parameters of B-spline curve
243 myDegree = aBSplineCurve->degree();
244 myKnots = aBSplineCurve->knots();
245 myMultiplicities = aBSplineCurve->mults();
247 aShapes.push_back(anEdge);
248 GeomShapePtr aCompound = GeomAlgoAPI_CompoundBuilder::compound(aShapes);
250 AISObjectPtr anAIS = thePrevious;
252 anAIS.reset(new GeomAPI_AISObject());
253 anAIS->createShape(aCompound);
256 SketchPlugin_Tools::customizeFeaturePrs(anAIS, boolean(AUXILIARY_ID())->value());
263 // ========================== Auxiliary functions ===========================================
265 void SketchPlugin_MacroBSpline::assignDefaultNameForAux(FeaturePtr theAuxFeature,
266 AttributePoint2DArrayPtr theBSplinePoles,
267 const int thePoleIndex1,
268 const int thePoleIndex2)
270 FeaturePtr aBSpline = ModelAPI_Feature::feature(theBSplinePoles->owner());
272 std::wostringstream aName;
273 aName << aBSpline->name();
274 if (theAuxFeature->getKind() == SketchPlugin_Point::ID())
275 aName << "_" << Locale::Convert::toWString(theBSplinePoles->id()) << "_" << thePoleIndex1;
277 aName << "_segment_" << thePoleIndex1 << "_" << thePoleIndex2;
279 theAuxFeature->data()->setName(aName.str());
280 theAuxFeature->lastResult()->data()->setName(aName.str());
283 FeaturePtr SketchPlugin_MacroBSpline::createAuxiliaryPole(AttributePoint2DArrayPtr theBSplinePoles,
284 const int thePoleIndex)
286 FeaturePtr aBSpline = ModelAPI_Feature::feature(theBSplinePoles->owner());
288 SketchPlugin_Sketch* aSketch =
289 std::dynamic_pointer_cast<SketchPlugin_Feature>(aBSpline)->sketch();
291 // create child point equal to the B-spline's pole
292 FeaturePtr aPointFeature = aSketch->addFeature(SketchPlugin_Point::ID());
293 aPointFeature->boolean(SketchPlugin_Point::AUXILIARY_ID())->setValue(true);
294 aPointFeature->reference(SketchPlugin_Point::PARENT_ID())->setValue(aBSpline);
296 GeomPnt2dPtr aPole = theBSplinePoles->pnt(thePoleIndex);
298 AttributePoint2DPtr aCoord = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
299 aPointFeature->attribute(SketchPlugin_Point::COORD_ID()));
300 aCoord->setValue(aPole);
302 aPointFeature->execute();
303 assignDefaultNameForAux(aPointFeature, theBSplinePoles, thePoleIndex);
305 // internal constraint to keep position of the point
306 createInternalConstraint(aSketch, aCoord, theBSplinePoles, thePoleIndex);
308 return aPointFeature;
311 void SketchPlugin_MacroBSpline::createAuxiliarySegment(AttributePoint2DArrayPtr theBSplinePoles,
312 const int thePoleIndex1,
313 const int thePoleIndex2)
315 FeaturePtr aBSpline = ModelAPI_Feature::feature(theBSplinePoles->owner());
317 SketchPlugin_Sketch* aSketch =
318 std::dynamic_pointer_cast<SketchPlugin_Feature>(aBSpline)->sketch();
320 // create child segment between B-spline poles
321 FeaturePtr aLineFeature = aSketch->addFeature(SketchPlugin_Line::ID());
322 aLineFeature->boolean(SketchPlugin_Point::AUXILIARY_ID())->setValue(true);
323 aLineFeature->reference(SketchPlugin_Point::PARENT_ID())->setValue(aBSpline);
325 AttributePoint2DPtr aLineStart = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
326 aLineFeature->attribute(SketchPlugin_Line::START_ID()));
327 aLineStart->setValue(theBSplinePoles->pnt(thePoleIndex1));
329 AttributePoint2DPtr aLineEnd = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
330 aLineFeature->attribute(SketchPlugin_Line::END_ID()));
331 aLineEnd->setValue(theBSplinePoles->pnt(thePoleIndex2));
333 aLineFeature->execute();
334 assignDefaultNameForAux(aLineFeature, theBSplinePoles, thePoleIndex1, thePoleIndex2);
336 // internal constraints to keep the segment position
337 createInternalConstraint(aSketch, aLineStart, theBSplinePoles, thePoleIndex1);
338 createInternalConstraint(aSketch, aLineEnd, theBSplinePoles, thePoleIndex2);
341 void createInternalConstraint(SketchPlugin_Sketch* theSketch,
342 AttributePtr thePoint,
343 AttributePtr theBSplinePoles,
344 const int thePoleIndex)
346 std::shared_ptr<SketchPlugin_ConstraintCoincidenceInternal> aConstraint =
347 std::dynamic_pointer_cast<SketchPlugin_ConstraintCoincidenceInternal>(
348 theSketch->addFeature(SketchPlugin_ConstraintCoincidenceInternal::ID()));
349 aConstraint->refattr(SketchPlugin_Constraint::ENTITY_A())->setAttr(thePoint);
350 aConstraint->refattr(SketchPlugin_Constraint::ENTITY_B())->setAttr(theBSplinePoles);
351 aConstraint->integer(SketchPlugin_ConstraintCoincidenceInternal::INDEX_ENTITY_B())
352 ->setValue(thePoleIndex);