1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #include "GEOMImpl_PolylineDriver.hxx"
25 #include "GEOMImpl_ICurveParametric.hxx"
26 #include "GEOMImpl_ICurvesOperations.hxx"
27 #include "GEOMImpl_IPolyline.hxx"
28 #include "GEOMImpl_IPolyline2D.hxx"
29 #include "GEOMImpl_Types.hxx"
30 #include "GEOM_Function.hxx"
31 #include <GEOMUtils.hxx>
32 #include <Sketcher_Utils.hxx>
34 #include <BRepBuilderAPI_MakePolygon.hxx>
35 #include <BRepBuilderAPI_MakeVertex.hxx>
36 #include <BRep_Builder.hxx>
37 #include <BRep_Tool.hxx>
38 #include <Precision.hxx>
39 #include <TColgp_Array1OfPnt.hxx>
43 #include <TopoDS_Shape.hxx>
44 #include <TopoDS_Vertex.hxx>
45 #include <TopoDS_Wire.hxx>
49 //=======================================================================
52 //=======================================================================
53 const Standard_GUID& GEOMImpl_PolylineDriver::GetID()
55 static Standard_GUID aPolylineDriver("FF1BBB31-5D14-4df2-980B-3A668264EA16");
56 return aPolylineDriver;
60 //=======================================================================
61 //function : GEOMImpl_PolylineDriver
63 //=======================================================================
64 GEOMImpl_PolylineDriver::GEOMImpl_PolylineDriver()
68 //=======================================================================
69 //function : MakePolyline2D
71 //=======================================================================
72 Standard_Integer GEOMImpl_PolylineDriver::MakePolyline2D(LOGBOOK& log) const
74 if (Label().IsNull()) {
78 Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
79 GEOMImpl_IPolyline2D aCI(aFunction);
80 Standard_Integer aType = aFunction->GetType();
84 Handle(TColStd_HArray1OfExtendedString) aNames = aCI.GetNames();
85 Handle(TColStd_HArray1OfByte) aTypes = aCI.GetTypes();
86 Handle(TColStd_HArray1OfByte) aClosedFlags = aCI.GetClosedFlags();
87 std::list <std::list <double> > aCoords;
90 aCI.GetCoords(aCoords);
92 // Check the data validity
93 if (aNames.IsNull()) {
97 Standard_Integer aNbSections = aNames->Length();
99 if (aTypes.IsNull() || aNbSections != aTypes->Length()) {
103 if (aClosedFlags.IsNull() || aNbSections != aClosedFlags->Length()) {
107 if (aNbSections != aCoords.size()) {
111 if (aType == POLYLINE2D_PLN_COORDS) {
112 Handle(TColStd_HArray1OfReal) aPlaneCoords = aCI.GetWorkingPlaneDbls();
114 if (aPlaneCoords.IsNull()) {
118 if (aPlaneCoords->Length() != 9) {
122 Standard_Integer i = aPlaneCoords->Lower();
123 gp_Pnt aOrigin(aPlaneCoords->Value(i), aPlaneCoords->Value(i + 1),
124 aPlaneCoords->Value(i + 2));
125 gp_Dir aDirZ(aPlaneCoords->Value(i + 3), aPlaneCoords->Value(i + 4),
126 aPlaneCoords->Value(i + 5));
127 gp_Dir aDirX(aPlaneCoords->Value(i + 6), aPlaneCoords->Value(i + 7),
128 aPlaneCoords->Value(i + 8));
129 aWPlane = gp_Ax3(aOrigin, aDirZ, aDirX);
130 } else if (aType == POLYLINE2D_PLN_OBJECT) {
131 Handle(GEOM_Function) aRefFace = aCI.GetWorkingPlane();
132 TopoDS_Shape aShape = aRefFace->GetValue();
134 aWPlane = GEOMUtils::GetPosition(aShape);
139 // Construct a shape.
140 Standard_Integer iN = aNames->Lower();
141 Standard_Integer iT = aTypes->Lower();
142 Standard_Integer iC = aClosedFlags->Lower();
143 std::list <std::list <double> >::const_iterator anIter = aCoords.begin();
144 BRep_Builder aBuilder;
145 Standard_Boolean isEmpty = Standard_True;
147 if (aNbSections > 1) {
148 aBuilder.MakeCompound(TopoDS::Compound(aShape));
151 for (; anIter != aCoords.end(); ++anIter, ++iN, ++iT, ++iC) {
152 Standard_Integer aType = aTypes->Value(iT);
153 TopoDS_Shape aSection;
155 if (aType == GEOMImpl_ICurvesOperations::Polyline) {
156 aSection = Sketcher_Utils::MakePolyline
157 (*anIter, aClosedFlags->Value(iC), aWPlane);
158 } else if (aType == GEOMImpl_ICurvesOperations::Interpolation) {
159 aSection = Sketcher_Utils::MakeInterpolation
160 (*anIter, aClosedFlags->Value(iC), aWPlane);
163 if (aNbSections > 1) {
164 // There are multiple sections.
165 if (aSection.IsNull() == Standard_False) {
166 aBuilder.Add(aShape, aSection);
167 isEmpty = Standard_False;
170 // There is only one section.
171 isEmpty = aSection.IsNull();
180 aFunction->SetValue(aShape);
181 #if OCC_VERSION_MAJOR < 7
182 log.SetTouched(Label());
184 log->SetTouched(Label());
190 //=======================================================================
193 //=======================================================================
194 Standard_Integer GEOMImpl_PolylineDriver::Execute(LOGBOOK& log) const
196 if (Label().IsNull()) return 0;
197 Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
198 Standard_Integer aType = aFunction->GetType();
200 if (aType == POLYLINE2D_PLN_COORDS || aType == POLYLINE2D_PLN_OBJECT) {
201 return MakePolyline2D(log);
204 GEOMImpl_IPolyline aCI (aFunction);
208 if (aType == POLYLINE_POINTS) {
210 bool useCoords = aCI.GetConstructorType() == COORD_CONSTRUCTOR;
211 TColgp_Array1OfPnt points(1, (useCoords ? aCI.GetLength() : 1) );
213 Handle(TColStd_HArray1OfReal) aCoordsArray = aCI.GetCoordinates();
214 int anArrayLength = aCoordsArray->Length();
215 for (int i = 0, j = 1; i <= (anArrayLength-3); i += 3) {
216 gp_Pnt aPnt = gp_Pnt(aCoordsArray->Value(i+1), aCoordsArray->Value(i+2), aCoordsArray->Value(i+3));
217 points.SetValue(j,aPnt);
222 int aLen = aCI.GetLength();
224 BRepBuilderAPI_MakePolygon aMakePoly;
225 for (; ind <= aLen; ind++)
228 aMakePoly.Add(BRepBuilderAPI_MakeVertex(points.Value(ind)));
230 Handle(GEOM_Function) aRefPoint = aCI.GetPoint(ind);
231 TopoDS_Shape aShapePnt = aRefPoint->GetValue();
232 if (aShapePnt.ShapeType() != TopAbs_VERTEX) {
233 Standard_TypeMismatch::Raise
234 ("Polyline creation aborted : arguments are not a vertexes");
237 if (aShapePnt.ShapeType() == TopAbs_VERTEX) {
238 aMakePoly.Add(TopoDS::Vertex(aShapePnt));
239 //if (!aMakePoly.Added()) return 0;
243 // Compare first and last point coordinates and close polyline if it's the same.
247 aV1 = BRepBuilderAPI_MakeVertex(points.Value(1));
249 Handle(GEOM_Function) aFPoint = aCI.GetPoint(1);
250 TopoDS_Shape aFirstPnt = aFPoint->GetValue();
251 aV1 = TopoDS::Vertex(aFirstPnt);
256 aV2 = BRepBuilderAPI_MakeVertex(points.Value(aLen));
258 Handle(GEOM_Function) aLPoint = aCI.GetPoint(aLen);
259 TopoDS_Shape aLastPnt = aLPoint->GetValue();
260 aV2 = TopoDS::Vertex(aLastPnt);
263 if ( (!aV1.IsNull() && !aV2.IsNull() && aV1.IsSame(aV2)) ||
268 if (aMakePoly.IsDone()) {
269 aShape = aMakePoly.Wire();
275 if (aShape.IsNull()) return 0;
277 aFunction->SetValue(aShape);
279 #if OCC_VERSION_MAJOR < 7
280 log.SetTouched(Label());
282 log->SetTouched(Label());
288 //================================================================================
290 * \brief Returns a name of creation operation and names and values of creation parameters
292 //================================================================================
294 bool GEOMImpl_PolylineDriver::
295 GetCreationInformation(std::string& theOperationName,
296 std::vector<GEOM_Param>& theParams)
298 if (Label().IsNull()) return 0;
299 Handle(GEOM_Function) function = GEOM_Function::GetFunction(Label());
301 GEOMImpl_IPolyline aCI( function );
302 GEOMImpl_ICurveParametric aIP( function );
303 Standard_Integer aType = function->GetType();
306 case POLYLINE_POINTS:
307 theOperationName = "CURVE";
308 AddParam( theParams, "Type", "Polyline");
311 AddParam( theParams, "X(t) equation", aIP.GetExprX() );
312 AddParam( theParams, "Y(t) equation", aIP.GetExprY() );
313 AddParam( theParams, "Z(t) equation", aIP.GetExprZ() );
314 AddParam( theParams, "Min t", aIP.GetParamMin() );
315 AddParam( theParams, "Max t", aIP.GetParamMax() );
316 if ( aIP.GetParamNbStep() )
317 AddParam( theParams, "Number of steps", aIP.GetParamNbStep() );
319 AddParam( theParams, "t step", aIP.GetParamStep() );
323 GEOM_Param& pntParam = AddParam( theParams, "Points");
324 if ( aCI.GetConstructorType() == COORD_CONSTRUCTOR )
326 Handle(TColStd_HArray1OfReal) coords = aCI.GetCoordinates();
327 if ( coords->Length() > 3 )
328 pntParam << ( coords->Length() ) / 3 << " points: ";
329 for ( int i = coords->Lower(), nb = coords->Upper(); i <= nb; )
330 pntParam << "( " << coords->Value( i++ )
331 << ", " << coords->Value( i++ )
332 << ", " << coords->Value( i++ ) << " ) ";
336 if ( aCI.GetLength() > 1 )
337 pntParam << aCI.GetLength() << " points: ";
338 for ( int i = 1, nb = aCI.GetLength(); i <= nb; ++i )
339 pntParam << aCI.GetPoint( i ) << " ";
341 AddParam( theParams, "Is closed", aCI.GetIsClosed() );
344 case POLYLINE2D_PLN_COORDS:
345 case POLYLINE2D_PLN_OBJECT:
347 theOperationName = "SKETCH";
349 GEOMImpl_IPolyline2D aP2d(function);
350 Handle(TColStd_HArray1OfExtendedString) aNames = aP2d.GetNames();
352 if (aNames.IsNull() == Standard_False) {
353 if (aNames->Length() == 1) {
354 // This is the single curve. Make its full dump.
355 AddParam(theParams, "Name", aNames->Value(aNames->Lower()));
357 Handle(TColStd_HArray1OfByte) aTypes = aP2d.GetTypes();
359 if (aTypes.IsNull() == Standard_False && aTypes->Length() == 1) {
360 Standard_Integer aType = aTypes->Value(aTypes->Lower());
362 if (aType == GEOMImpl_ICurvesOperations::Polyline) {
363 AddParam(theParams, "Type") << "Polyline";
364 } else if (aType == GEOMImpl_ICurvesOperations::Interpolation) {
365 AddParam(theParams, "Type") << "Interpolation";
369 Handle(TColStd_HArray1OfByte) aCloseds = aP2d.GetClosedFlags();
371 if (aCloseds.IsNull() == Standard_False && aCloseds->Length() == 1) {
373 aCloseds->Value(aCloseds->Lower()) ? "Yes" : "No";
375 AddParam(theParams, "Is closed", aYesNo);
378 std::list <std::list <double> > aCoords;
380 aP2d.GetCoords(aCoords);
382 if (aCoords.size() == 1) {
383 AddParam(theParams, "Number of points", aCoords.front().size()/2);
386 // There are more than 1 curve.
387 Standard_Integer aNbCurves = aNames->Length();
389 std::list <std::list <double> > aCoords;
391 AddParam(theParams, "Number of curves", aNbCurves);
392 aP2d.GetCoords(aCoords);
394 Standard_Integer aNbCoords = aCoords.size();
395 std::list <std::list <double> >::const_iterator
396 anIt = aCoords.begin();
398 for (i = 0; i < aNbCurves; i++) {
399 TCollection_AsciiString aName("Curve ");
400 TCollection_ExtendedString
401 aValue(aNames->Value(aNames->Lower() + i));
403 aName.AssignCat(i + 1);
405 if (anIt != aCoords.end()) {
406 aValue.AssignCat(" (");
407 aValue.AssignCat(Standard_Integer(anIt->size()));
408 aValue.AssignCat(" points)");
412 AddParam(theParams, aName.ToCString(), aValue);
417 if (aType == POLYLINE2D_PLN_COORDS) {
418 Handle(TColStd_HArray1OfReal) aPln = aP2d.GetWorkingPlaneDbls();
420 if (aPln.IsNull() == Standard_False && aPln->Length() == 9) {
421 Standard_Integer i = aPln->Lower();
423 AddParam( theParams, "Origin")
424 << aPln->Value(i) << " "
425 << aPln->Value(i + 1) << " "
426 << aPln->Value(i + 2);
427 AddParam( theParams, "OZ")
428 << aPln->Value(i + 3) << " "
429 << aPln->Value(i + 4) << " "
430 << aPln->Value(i + 5);
431 AddParam( theParams, "OX")
432 << aPln->Value(i + 6) << " "
433 << aPln->Value(i + 7) << " "
434 << aPln->Value(i + 8);
437 AddParam(theParams, "Working plane", aP2d.GetWorkingPlane(), "XOY");
448 OCCT_IMPLEMENT_STANDARD_RTTIEXT (GEOMImpl_PolylineDriver,GEOM_BaseDriver);