Salome HOME
Copyrights update
[modules/geom.git] / src / GEOMImpl / GEOMImpl_FillingDriver.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20
21 #include <Standard_Stream.hxx>
22
23 #include <GEOMImpl_FillingDriver.hxx>
24 #include <GEOM_Function.hxx>
25 #include <GEOMImpl_IFilling.hxx>
26 #include <GEOMImpl_Types.hxx>
27
28 #include <BRep_Tool.hxx>
29 #include <BRepAlgo.hxx>
30 #include <BRepBuilderAPI_MakeFace.hxx>
31
32 #include <TopAbs.hxx>
33 #include <TopoDS.hxx>
34 #include <TopoDS_Shape.hxx>
35 #include <TopExp_Explorer.hxx>
36
37 #include <Geom_Curve.hxx>
38 #include <Geom_Surface.hxx>
39 #include <Geom_TrimmedCurve.hxx>
40 #include <Geom_BSplineSurface.hxx>
41 #include <GeomFill_Line.hxx>
42 #include <GeomFill_AppSurf.hxx>
43 #include <GeomFill_SectionGenerator.hxx>
44
45 #include <Precision.hxx>
46 #include <Standard_ConstructionError.hxx>
47
48 //=======================================================================
49 //function : GetID
50 //purpose  :
51 //=======================================================================
52 const Standard_GUID& GEOMImpl_FillingDriver::GetID()
53 {
54   static Standard_GUID aFillingDriver ("FF1BBB62-5D14-4df2-980B-3A668264EA16");
55   return aFillingDriver;
56 }
57
58
59 //=======================================================================
60 //function : GEOMImpl_FillingDriver
61 //purpose  :
62 //=======================================================================
63
64 GEOMImpl_FillingDriver::GEOMImpl_FillingDriver()
65 {
66 }
67
68 //=======================================================================
69 //function : Execute
70 //purpose  :
71 //=======================================================================
72 Standard_Integer GEOMImpl_FillingDriver::Execute(TFunction_Logbook& log) const
73 {
74   if (Label().IsNull()) return 0;
75   Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
76   if (aFunction.IsNull()) return 0;
77
78   if (aFunction->GetType() != BASIC_FILLING) return 0;
79
80   GEOMImpl_IFilling IF (aFunction);
81   Handle(GEOM_Function) aShapeFunction = IF.GetShape();
82   if (aShapeFunction.IsNull()) return 0;
83   TopoDS_Shape aShape = aShapeFunction->GetValue();
84   if (aShape.IsNull() || aShape.ShapeType() != TopAbs_COMPOUND) return 0;
85
86   Standard_Integer mindeg = IF.GetMinDeg();
87   Standard_Integer maxdeg = IF.GetMaxDeg();
88   Standard_Real tol3d = IF.GetTol2D();
89   Standard_Real tol2d = IF.GetTol3D();
90   Standard_Integer nbiter = IF.GetNbIter();
91
92   if (mindeg > maxdeg) {
93     Standard_RangeError::Raise("Minimal degree can not be more than maximal degree");
94   }
95
96   /* we verify the contents of the shape */
97   TopExp_Explorer Ex;
98   TopoDS_Shape Scurrent;
99   Standard_Real First, Last;
100   Handle(Geom_Curve) C;
101   GeomFill_SectionGenerator Section;
102
103   Standard_Integer i = 0;
104   for (Ex.Init(aShape, TopAbs_EDGE); Ex.More(); Ex.Next()) {
105     Scurrent = Ex.Current() ;
106     if (Scurrent.IsNull() || Scurrent.ShapeType() != TopAbs_EDGE) return 0;
107     C = BRep_Tool::Curve(TopoDS::Edge(Scurrent), First, Last);
108     C = new Geom_TrimmedCurve(C, First, Last);
109     Section.AddCurve(C);
110     i++;
111   }
112
113   /* a 'tolerance' is used to compare 2 knots : see GeomFill_Generator.cdl */
114   Section.Perform(Precision::Confusion());
115   Handle(GeomFill_Line) Line = new GeomFill_Line(i);
116
117   GeomFill_AppSurf App (mindeg, maxdeg, tol3d, tol2d, nbiter); /* user parameters */
118   App.Perform(Line, Section);
119
120   if (!App.IsDone()) return 0;
121   Standard_Integer UDegree, VDegree, NbUPoles, NbVPoles, NbUKnots, NbVKnots;
122   App.SurfShape(UDegree, VDegree, NbUPoles, NbVPoles, NbUKnots, NbVKnots);
123   Handle(Geom_BSplineSurface) GBS = new Geom_BSplineSurface
124     (App.SurfPoles(), App.SurfWeights(), App.SurfUKnots(), App.SurfVKnots(),
125      App.SurfUMults(), App.SurfVMults(), App.UDegree(), App.VDegree());
126
127   if (GBS.IsNull()) return 0;
128   aShape = BRepBuilderAPI_MakeFace(GBS);
129
130   /* We test the validity of resulting shape */
131   if (!BRepAlgo::IsValid((aShape))) {
132     Standard_ConstructionError::Raise("Algorithm have produced an invalid shape result");
133     return 0;
134   }
135
136   aFunction->SetValue(aShape);
137
138   log.SetTouched(Label());
139   return 1;
140 }
141
142
143 //=======================================================================
144 //function :  GEOMImpl_FillingDriver_Type_
145 //purpose  :
146 //=======================================================================
147 Standard_EXPORT Handle_Standard_Type& GEOMImpl_FillingDriver_Type_()
148 {
149
150   static Handle_Standard_Type aType1 = STANDARD_TYPE(TFunction_Driver);
151   if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TFunction_Driver);
152   static Handle_Standard_Type aType2 = STANDARD_TYPE(MMgt_TShared);
153   if ( aType2.IsNull()) aType2 = STANDARD_TYPE(MMgt_TShared);
154   static Handle_Standard_Type aType3 = STANDARD_TYPE(Standard_Transient);
155   if ( aType3.IsNull()) aType3 = STANDARD_TYPE(Standard_Transient);
156
157
158   static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,NULL};
159   static Handle_Standard_Type _aType = new Standard_Type("GEOMImpl_FillingDriver",
160                                                          sizeof(GEOMImpl_FillingDriver),
161                                                          1,
162                                                          (Standard_Address)_Ancestors,
163                                                          (Standard_Address)NULL);
164
165   return _aType;
166 }
167
168 //=======================================================================
169 //function : DownCast
170 //purpose  :
171 //=======================================================================
172
173 const Handle(GEOMImpl_FillingDriver) Handle(GEOMImpl_FillingDriver)::DownCast(const Handle(Standard_Transient)& AnObject)
174 {
175   Handle(GEOMImpl_FillingDriver) _anOtherObject;
176
177   if (!AnObject.IsNull()) {
178      if (AnObject->IsKind(STANDARD_TYPE(GEOMImpl_FillingDriver))) {
179        _anOtherObject = Handle(GEOMImpl_FillingDriver)((Handle(GEOMImpl_FillingDriver)&)AnObject);
180      }
181   }
182
183   return _anOtherObject ;
184 }
185
186