Salome HOME
patch for correct compilation on Linux
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ExportFileOp.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "HYDROGUI_ExportFileOp.h"
24
25 #include "HYDROGUI_DataModel.h"
26 #include "HYDROGUI_Module.h"
27 #include "HYDROGUI_UpdateFlags.h"
28 #include "HYDROGUI_Tool.h"
29 #include <HYDROData_PolylineXY.h>
30 #include <HYDROData_Polyline3D.h>
31 #include <HYDROGUI_DataObject.h>
32 #include <HYDROData_Bathymetry.h>
33 #include <HYDROData_LandCover.h>
34
35 #include <HYDROData_Profile.h>
36
37 #include <SUIT_Desktop.h>
38 #include <SUIT_FileDlg.h>
39 #include <LightApp_Application.h>
40
41 #include <QApplication>
42 #include <QFile>
43 #include <QFileInfo>
44 #include <SUIT_MessageBox.h>
45 #include <TopoDS.hxx>
46 #include <TopExp_Explorer.hxx>
47 #include <TopoDS_Wire.hxx>
48 #include <TopoDS_Vertex.hxx>
49 #include <BRep_Tool.hxx>
50 #include <Precision.hxx>
51
52
53 HYDROGUI_ExportFileOp::HYDROGUI_ExportFileOp( HYDROGUI_Module* theModule )
54 : HYDROGUI_Operation( theModule )
55 {
56   setName( tr( "EXPORT_TO_SHAPE_FILE" ) );
57 }
58
59 HYDROGUI_ExportFileOp::~HYDROGUI_ExportFileOp()
60 {
61 }
62
63 void HYDROGUI_ExportFileOp::startOperation()
64 {
65   HYDROGUI_Operation::startOperation();
66   
67   QString aFilter( tr("SHP_FILTER") ); //temp  ext-n; replace with filter; TODO
68   
69   Handle(HYDROData_PolylineXY) aPolyXY;
70   Handle(HYDROData_Polyline3D) aPoly3D;
71   Handle(HYDROData_LandCover) aLC;
72   NCollection_Sequence<Handle_HYDROData_PolylineXY> aPolyXYSeq;
73   NCollection_Sequence<Handle_HYDROData_Polyline3D> aPoly3DSeq;
74   NCollection_Sequence<Handle_HYDROData_LandCover> aLCSeq;
75   
76   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( module() );
77   for( int anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
78   {
79     aPolyXY = Handle(HYDROData_PolylineXY)::DownCast( aSeq.Value( anIndex ));
80     if (!aPolyXY.IsNull())
81       aPolyXYSeq.Append(aPolyXY);
82
83     aPoly3D = Handle(HYDROData_Polyline3D)::DownCast( aSeq.Value( anIndex ));
84     if (!aPoly3D.IsNull())
85       aPoly3DSeq.Append(aPoly3D);
86
87     aLC = Handle(HYDROData_LandCover)::DownCast( aSeq.Value( anIndex ));
88     if (!aLC.IsNull())
89       aLCSeq.Append(aLC);
90   }
91
92   if (!aPolyXYSeq.IsEmpty() && !aPoly3DSeq.IsEmpty())
93     SUIT_MessageBox::warning( module()->getApp()->desktop(), "Export Polyline", "Cannot export polylines of different kind");
94   else
95   {
96     QString aFileName = SUIT_FileDlg::getFileName( module()->getApp()->desktop(), "", aFilter, tr( "EXPORT_TO_SHAPE_FILE" ), false );
97     if (!aFileName.isEmpty())
98     {
99       SHPHandle hSHPHandle;
100       if (!aPolyXYSeq.IsEmpty() && aPoly3DSeq.IsEmpty())
101       {
102         hSHPHandle = SHPCreate( aFileName.toAscii().data(), SHPT_ARC );
103         for (int i = 1; i <= aPolyXYSeq.Size(); i++)
104           WriteObjectPolyXY(hSHPHandle, aPolyXYSeq(i));
105       }
106       else if (aPolyXYSeq.IsEmpty() && !aPoly3DSeq.IsEmpty())
107       {
108         hSHPHandle = SHPCreate( aFileName.toAscii().data(), SHPT_ARCZ );
109         for (int i = 1; i <= aPoly3DSeq.Size(); i++)
110           WriteObjectPoly3D(hSHPHandle, aPoly3DSeq(i));
111       }
112       else if (aPolyXYSeq.IsEmpty() && aPoly3DSeq.IsEmpty() && !aLCSeq.IsEmpty())
113       {
114         hSHPHandle = SHPCreate( aFileName.toAscii().data(), SHPT_POLYGON );
115         for (int i = 1; i <= aLCSeq.Size(); i++)
116           WriteObjectLC(hSHPHandle, aLCSeq(i));
117       }
118       SHPClose( hSHPHandle );
119       commit();
120     }
121     else
122       abort();
123   }
124
125 }
126
127 void HYDROGUI_ExportFileOp::WriteObjectPolyXY(SHPHandle theShpHandle, Handle_HYDROData_PolylineXY thePoly )
128 {
129   SHPObject     *aSHPObj;
130   std::vector<double> x, y;
131   std::vector<int> anPartStart;
132   
133   for (int i = 0; i < thePoly->NbSections(); i++)
134   {
135     anPartStart.push_back(x.size());
136     HYDROData_PolylineXY::PointsList aPointList = thePoly->GetPoints(i);
137     for (int j = 1; j <= aPointList.Size(); j++)
138     {
139       x.push_back( aPointList(j).X());
140       y.push_back( aPointList(j).Y()); 
141     }
142     if (thePoly->IsClosedSection(i))
143     {
144       x.push_back( aPointList(1).X());
145       y.push_back( aPointList(1).Y()); 
146     }
147   }
148     
149   aSHPObj = SHPCreateObject( SHPT_ARC, -1, thePoly->NbSections(), &anPartStart[0], NULL, x.size(), &x[0], &y[0], NULL, NULL );
150   SHPWriteObject( theShpHandle, -1, aSHPObj );
151   SHPDestroyObject( aSHPObj );
152 }
153
154 void HYDROGUI_ExportFileOp::WriteObjectPoly3D(SHPHandle theShpHandle, Handle_HYDROData_Polyline3D thePoly )
155 {
156   SHPObject     *aSHPObj;
157   std::vector<double> x, y, z;
158   std::vector<int> anPartStart;
159   
160   for (int i = 0; i < thePoly->GetPolylineXY()->NbSections(); i++)
161   {
162     anPartStart.push_back(x.size());
163     HYDROData_PolylineXY::PointsList aPointList = thePoly->GetPolylineXY()->GetPoints(i);
164     for (int j = 1; j <= aPointList.Size(); j++)
165     {
166       x.push_back( aPointList(j).X());
167       y.push_back( aPointList(j).Y()); 
168       z.push_back(thePoly->GetAltitudeObject()->GetAltitudeForPoint(gp_XY (aPointList(j).X(), aPointList(j).Y())));
169     }
170     if ( thePoly->GetPolylineXY()->IsClosedSection(i))
171     {
172       x.push_back( aPointList(1).X());
173       y.push_back( aPointList(1).Y()); 
174       z.push_back(thePoly->GetAltitudeObject()->GetAltitudeForPoint(gp_XY (aPointList(1).X(), aPointList(1).Y())));
175
176     }
177   }
178   
179   aSHPObj = SHPCreateObject( SHPT_ARCZ, -1, thePoly->GetPolylineXY()->NbSections(), &anPartStart[0], NULL, x.size(), &x[0], &y[0], &z[0], NULL );
180   SHPWriteObject( theShpHandle, -1, aSHPObj );
181   SHPDestroyObject( aSHPObj );
182 }
183
184 void HYDROGUI_ExportFileOp::WriteObjectLC(SHPHandle theShpHandle, Handle_HYDROData_LandCover theLC )
185 {
186
187   TopoDS_Shape aSh = theLC->GetShape();
188   if (aSh.IsNull())
189     return;
190   if (aSh.ShapeType() == TopAbs_FACE)
191   {
192     ProcessFace(TopoDS::Face(aSh), theShpHandle);
193   }
194   else if (aSh.ShapeType() == TopAbs_COMPOUND)
195   {
196     TopExp_Explorer Ex(aSh, TopAbs_FACE);
197     for (; Ex.More(); Ex.Next()) 
198     {
199       TopoDS_Face aF = TopoDS::Face(Ex.Current());   
200       if (aF.IsNull())
201         continue;
202       ProcessFace(aF, theShpHandle);
203     }
204   }
205   else
206     return;
207  
208 }
209
210 void HYDROGUI_ExportFileOp::ProcessFace(TopoDS_Face theFace, SHPHandle theShpHandle)
211 {
212   SHPObject     *aSHPObj;
213   std::vector<double> x, y;
214   std::vector<int> anPartStart;
215   if (theFace.ShapeType() == TopAbs_FACE)
216   {
217     TopExp_Explorer Ex(theFace, TopAbs_WIRE);
218     int NbWires = 0;
219     for (; Ex.More(); Ex.Next()) 
220     {
221       TopoDS_Wire aW = TopoDS::Wire(Ex.Current());   
222       if (aW.IsNull())
223         continue;
224       NbWires++;
225       anPartStart.push_back(x.size());
226       TopExp_Explorer aVEx(aW, TopAbs_VERTEX);
227       NCollection_Sequence<gp_Pnt2d> aPnts;
228       for (; aVEx.More(); aVEx.Next())
229       {
230         TopoDS_Vertex aV = TopoDS::Vertex(aVEx.Current()); 
231         if (aV.IsNull())
232           continue;
233         gp_Pnt P = BRep_Tool::Pnt(aV);
234         aPnts.Append(gp_Pnt2d(P.X(), P.Y()));
235       }
236       NCollection_Sequence<gp_Pnt2d> aNPnts;
237       aNPnts.Append(aPnts.First());
238       for (int j = 1; j <= aPnts.Size() - 1; j++)
239       {
240         if (!aPnts(j).IsEqual(aPnts(j + 1), Precision::Confusion())) 
241           aNPnts.Append(aPnts(j + 1));
242       }
243
244       for (int j = 1; j <= aNPnts.Size(); j++)
245       { 
246         x.push_back( aNPnts(j).X());
247         y.push_back( aNPnts(j).Y()); 
248       }
249       //x.push_back( aNPnts(1).X());
250       //y.push_back( aNPnts(1).Y()); 
251
252     }
253     
254     aSHPObj = SHPCreateObject( SHPT_POLYGON, -1, NbWires, &anPartStart[0], NULL, x.size(), &x[0], &y[0], NULL, NULL );
255     SHPWriteObject( theShpHandle, -1, aSHPObj );
256     SHPDestroyObject( aSHPObj );
257   }
258   else
259     return;
260 }