Salome HOME
Merge branch 'BR_LAND_COVER_MAP' of ssh://git.salome-platform.org/modules/hydro into...
[modules/hydro.git] / src / HYDROData / HYDROData_LandCoverMap.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include <HYDROData_LandCoverMap.h>
20 #include <HYDROData_Object.h>
21 #include <HYDROData_PolylineXY.h>
22 #include <HYDROData_Tool.h>
23 #include <HYDROData_ShapeFile.h>
24 #include <HYDROData_Document.h>
25 #include <HYDROData_StricklerTable.h>
26
27 #include <BOPAlgo_BOP.hxx>
28 #include <BOPAlgo_Builder.hxx>
29 #include <BOPAlgo_PaveFiller.hxx>
30 #include <BOPCol_ListOfShape.hxx>
31 #include <BRep_Builder.hxx>
32 #include <BRepAdaptor_Curve.hxx>
33 #include <BRepAlgoAPI_Fuse.hxx>
34 #include <BRepBuilderAPI_MakeFace.hxx>
35 #include <GCPnts_QuasiUniformDeflection.hxx>
36 #include <TopoDS.hxx>
37 #include <TopoDS_Compound.hxx>
38 #include <TopoDS_Edge.hxx>
39 #include <TopoDS_Face.hxx>
40 #include <TopoDS_Iterator.hxx>
41 #include <TopoDS_Shell.hxx>
42 #include <TopExp_Explorer.hxx>
43 #include <TopTools_ListIteratorOfListOfShape.hxx>
44 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
45 #include <TopTools_SequenceOfShape.hxx>
46 #include <BOPAlgo_PaveFiller.hxx>
47 #include <BRepTools.hxx>
48 #include <TopExp_Explorer.hxx>
49 #include <ShapeUpgrade_UnifySameDomain.hxx>
50 #include <TopExp.hxx>
51 #include <TDataStd_Real.hxx>
52 #include <TopTools_IndexedMapOfShape.hxx>
53 #include <ShapeBuild_ReShape.hxx>
54 #include <ShapeFix_Shape.hxx>
55 #include <BRepCheck_Shell.hxx>
56 #include <BRepCheck_ListOfStatus.hxx>
57 #include <TopTools_SequenceOfShape.hxx>
58 #include <Handle_Geom_Curve.hxx>
59 #include <Handle_Geom_Line.hxx>
60 #include <Handle_Geom_TrimmedCurve.hxx>
61 #include <Geom_TrimmedCurve.hxx>
62
63
64 #include <QFile>
65 #include <QString>
66 #include <QTextStream>
67
68 const char TELEMAC_FORMAT = 'f';
69 const int TELEMAC_PRECISION = 3;
70
71
72 IMPLEMENT_STANDARD_HANDLE(HYDROData_LandCoverMap, HYDROData_Entity)
73 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_LandCoverMap, HYDROData_Entity)
74
75 /**
76   Constructor
77   @param theMap the land cover map to iterate through
78 */
79 HYDROData_LandCoverMap::Explorer::Explorer( const HYDROData_LandCoverMap& theMap )
80 {
81   Init( theMap );
82 }
83
84 HYDROData_LandCoverMap::Explorer::Explorer( const Handle( HYDROData_LandCoverMap )& theMap )
85 {
86   if( theMap.IsNull() )
87   {
88     myExplorer = 0;
89     myIndex = -1;
90   }
91   else
92     Init( *theMap );
93 }
94
95 /**
96   Initialize the iterator
97   @param theMap the land cover map to iterate through
98 */
99 void HYDROData_LandCoverMap::Explorer::Init( const HYDROData_LandCoverMap& theMap )
100 {
101   TopoDS_Shape aShape = theMap.GetShape();
102   if( aShape.IsNull() )
103     myExplorer = 0;
104   else
105   {
106     myExplorer = new TopExp_Explorer();
107     myExplorer->Init( aShape, TopAbs_FACE );
108   }
109   
110   theMap.myLab.FindChild( DataTag_Types ).FindAttribute( TDataStd_ExtStringArray::GetID(), myArray );
111   if( myArray.IsNull() )
112     myIndex = -1;
113   else
114     myIndex = myArray->Lower();
115 }
116
117 /**
118   Destructor
119 */
120 HYDROData_LandCoverMap::Explorer::~Explorer()
121 {
122   delete myExplorer;
123 }
124
125 /**
126   Return the current 0-based index of the iterator
127   @return the current index
128 */
129 int HYDROData_LandCoverMap::Explorer::Index() const
130 {
131   if( myArray.IsNull() )
132     return -1;
133   else
134     return myIndex - myArray->Lower();
135 }
136
137 /**
138   Return if the iterator has more elements
139   @return if the iterator has more elements
140 */
141 bool HYDROData_LandCoverMap::Explorer::More() const
142 {
143   return !myArray.IsNull() && myExplorer && myExplorer->More();
144 }
145
146 /**
147   Move iterator to the next element
148 */
149 void HYDROData_LandCoverMap::Explorer::Next()
150 {
151   if( myExplorer )
152   {
153     myExplorer->Next();
154     myIndex++;
155   }
156 }
157
158 /**
159   Get the current land cover (face)
160   @return the land cover's face
161 */
162 TopoDS_Face HYDROData_LandCoverMap::Explorer::Face() const
163 {
164   if( myExplorer )
165     return TopoDS::Face( myExplorer->Current() );
166   else
167     return TopoDS_Face();
168 }
169
170 /**
171   Get the current land cover's Strickler type 
172   @return the land cover's Strickler type 
173 */
174 QString HYDROData_LandCoverMap::Explorer::StricklerType() const
175 {
176   if( myArray.IsNull() || myIndex < myArray->Lower() || myIndex > myArray->Upper() )
177     return "";
178   else
179     return HYDROData_Tool::toQString( myArray->Value( myIndex ) );
180 }
181
182 /**
183   Set the Strickler type for the current land cover
184   @param theType the Strickler type
185 */
186 void HYDROData_LandCoverMap::Explorer::SetStricklerType( const QString& theType )
187 {
188   if( myArray.IsNull() || myIndex < myArray->Lower() || myIndex > myArray->Upper() )
189     return;
190   else
191     myArray->SetValue( myIndex, HYDROData_Tool::toExtString( theType ) );
192 }
193
194 /**
195   Constructor
196 */
197 HYDROData_LandCoverMap::HYDROData_LandCoverMap()
198   : HYDROData_Entity( Geom_No )
199 {
200 }
201
202 /**
203   Destructor
204 */
205 HYDROData_LandCoverMap::~HYDROData_LandCoverMap()
206 {
207 }
208
209 /**
210   Get object's kind
211   @return object's kind
212 */
213 const ObjectKind HYDROData_LandCoverMap::GetKind() const
214 {
215   return KIND_LAND_COVER_MAP;
216 }
217
218 int HYDROData_LandCoverMap::GetLCCount() const
219 {
220   Explorer anIt( *this );
221   int i = 0;
222   for( ; anIt.More(); anIt.Next() )
223     i++;
224   return i;
225 }
226
227 bool HYDROData_LandCoverMap::IsEmpty() const
228 {
229   Explorer anIt( *this );
230   if ( !anIt.More() )
231     return true;
232   else
233     return false;
234 }
235
236 /**
237   Load attributes from DBF File
238 ///
239 */
240 HYDROData_LandCoverMap::DBFStatus HYDROData_LandCoverMap::ImportDBF( const QString& theDBFFileName, 
241                                                                      const QString& theFieldName, 
242                                                                      const QStringList& theDBFValues,
243                                                                      const QStringList& theStricklerTypes,
244                                                                      const QList<int>& theIndices )
245 {
246   if (theDBFValues.size() != theStricklerTypes.size())
247     return DBFStatus_DIFF_SIZE_ERROR;
248   HYDROData_ShapeFile aDBFImporter;
249   if (!aDBFImporter.DBF_OpenDBF(theDBFFileName))
250     return DBFStatus_OPEN_FILE_ERROR; //cant open file
251
252   QStringList FieldList = aDBFImporter.DBF_GetFieldList();
253   int FieldNameIndex = FieldList.indexOf(theFieldName);
254   if (FieldNameIndex == -1)
255     return DBFStatus_NO_SUCH_FIELD_ERROR; //no such field
256
257   std::vector<HYDROData_ShapeFile::DBF_AttrValue> theAttrV;
258   aDBFImporter.DBF_GetAttributeList(FieldNameIndex, theAttrV ); 
259
260   bool allOK = true;
261   Explorer anIt( *this );
262   for( ; anIt.More(); anIt.Next() )
263   {
264     int CurIndex = anIt.Index();
265     int anIndex = CurIndex;
266     if( !theIndices.isEmpty() )
267       anIndex = theIndices[CurIndex];
268
269     HYDROData_ShapeFile::DBF_AttrValue AValue = theAttrV[anIndex];
270     int StricklerTypesInd = theDBFValues.indexOf( QString( AValue.myStrVal ) );
271     if ( StricklerTypesInd != -1)
272       anIt.SetStricklerType( theStricklerTypes[StricklerTypesInd] );
273     else
274       allOK = false;
275   }
276   if (allOK)
277     return DBFStatus_OK;
278   else
279     return DBFStatus_NO_DBFVALUES_CORRESPONDENCE_WARNING;
280 }
281
282 /**
283   Export attributes to DBF File
284 ///
285 */
286 void HYDROData_LandCoverMap::ExportDBF( const QString& theDBFFileName, 
287                                         const QString& theFieldName, 
288                                         const QStringList& theDBFValues,
289                                         const QStringList& theStricklerTypes) const
290 {
291   if (theDBFValues.size() != theStricklerTypes.size())
292     return;
293   HYDROData_ShapeFile anExporter; 
294   std::vector<HYDROData_ShapeFile::DBF_AttrValue> theAttrV;
295   Explorer anIt( *this );
296   for( ; anIt.More(); anIt.Next() )
297   {
298     QString CurST = anIt.StricklerType();
299     HYDROData_ShapeFile::DBF_AttrValue aCurAttrV;
300     aCurAttrV.myIsNull = false;
301     int StricklerTypesInd = theStricklerTypes.indexOf(CurST);
302     if (StricklerTypesInd != -1)
303     {
304       aCurAttrV.myStrVal = theDBFValues[StricklerTypesInd];
305       aCurAttrV.myFieldType = HYDROData_ShapeFile::DBF_FieldType_String;
306       theAttrV.push_back(aCurAttrV);
307     }
308     else
309       aCurAttrV.myIsNull = true;
310   }
311   //use actual str value; not the raw value
312   anExporter.DBF_WriteFieldAndValues(theDBFFileName, theFieldName, HYDROData_ShapeFile::DBF_FieldType_String, theAttrV, false);
313
314 }
315
316 int HashCode( const gp_Pnt& thePoint, const Standard_Integer theUpper )
317 {
318   int aHashX = HashCode( thePoint.X(), theUpper );
319   int aHashY = HashCode( thePoint.Y(), theUpper );
320   return (aHashX^aHashY)%theUpper;
321 }
322
323 bool operator == ( const gp_Pnt& thePoint1, const gp_Pnt& thePoint2 )
324 {
325   return thePoint1.IsEqual( thePoint2, Precision::Confusion() );
326 }
327
328 bool EdgeDiscretization( const TopoDS_Edge& theEdge, 
329                          Standard_Real theDeflection,
330                          NCollection_IndexedMap<gp_Pnt>& theVerticesMap,
331                          QList<int>& theVerticesIds )
332 {
333   BRepAdaptor_Curve aCurve( theEdge );
334   GCPnts_QuasiUniformDeflection aDiscrete( aCurve, theDeflection );
335   if( !aDiscrete.IsDone() )
336     return false;
337
338   int n = aDiscrete.NbPoints();
339   for( int i=1; i<=n; i++ )
340   {
341     gp_Pnt aPnt = aDiscrete.Value( i );
342     int anId;
343     if( theVerticesMap.Contains( aPnt ) )
344       anId = theVerticesMap.FindIndex( aPnt );
345     else
346     {
347       anId = theVerticesMap.Size();
348       theVerticesMap.Add( aPnt );
349     }
350     theVerticesIds.append( anId );
351   }
352   return true;
353 }
354
355 /**
356   Export the land cover map for the solver (Telemac)
357   @param theFileName the name of file
358   @return if the export is successful
359 */
360 bool HYDROData_LandCoverMap::ExportTelemac( const QString& theFileName,
361                                             double theDeflection,
362                                             const Handle(HYDROData_StricklerTable)& theTable ) const
363 {
364   TopoDS_Shape aLandCoverMapShape = GetShape();
365   TopTools_ListOfShape aListOfFaces;
366   Explorer anIt( *this );
367   QMap<Handle(TopoDS_TShape), QString> aTypesMap;
368   for( ; anIt.More(); anIt.Next() )
369   {
370     aListOfFaces.Append( anIt.Face() );
371     aTypesMap.insert( anIt.Face().TShape(), anIt.StricklerType() );
372   }
373
374   TopoDS_Shape aShape = MergeFaces( aListOfFaces, false );
375
376   NCollection_IndexedMap<gp_Pnt> aVerticesMap;
377   NCollection_IndexedDataMap< TopoDS_Edge, QList<int> > anEdgesMap;
378   typedef QPair< QString, QList<int> > FaceData;
379   NCollection_IndexedDataMap< TopoDS_Face, FaceData > aFacesMap;
380
381   // add into the map all edges existing in the shell
382   TopExp_Explorer anExp1( aShape, TopAbs_EDGE );
383   for( ; anExp1.More(); anExp1.Next() )
384   {
385     TopoDS_Edge anEdge = TopoDS::Edge( anExp1.Current() );
386     QList<int> aVerticesIdsList;
387     if( EdgeDiscretization( anEdge, theDeflection, aVerticesMap, aVerticesIdsList ) )
388       anEdgesMap.Add( anEdge, aVerticesIdsList );
389   }
390
391   // add into the map all faces existing in the shell and correspondence between face and edges ids
392   TopExp_Explorer anExp2( aShape, TopAbs_FACE );
393   for( ; anExp2.More(); anExp2.Next() )
394   {
395     TopoDS_Face aFace = TopoDS::Face( anExp2.Current() );
396     TopExp_Explorer anExp3( aFace, TopAbs_EDGE );
397     QList<int> anEdgesIdsList;
398     for( ; anExp3.More(); anExp3.Next() )
399     {
400       TopoDS_Edge anEdge = TopoDS::Edge( anExp3.Current() );
401       int anEdgeId = anEdgesMap.FindIndex( anEdge );
402       anEdgesIdsList.append( anEdgeId );
403     }
404
405     FaceData aData;
406     aData.first = aTypesMap[aFace.TShape()];
407     aData.second = anEdgesIdsList;
408     aFacesMap.Add( aFace, aData );
409   }
410
411   QFile aFile( theFileName );
412   if( !aFile.open( QFile::WriteOnly | QFile::Text ) )
413     return false;
414
415   QTextStream aStream( &aFile );
416   aStream << "# nodes\n";
417   NCollection_IndexedMap<gp_Pnt>::Iterator anIt1( aVerticesMap );
418   for( ; anIt1.More(); anIt1.Next() )
419   {
420     gp_Pnt aPnt = anIt1.Value();
421     aStream << QString::number( aPnt.X(), TELEMAC_FORMAT, TELEMAC_PRECISION );
422     aStream << " ";
423     aStream << QString::number( aPnt.Y(), TELEMAC_FORMAT, TELEMAC_PRECISION );
424     aStream << " ";
425     aStream << QString::number( aPnt.Z(), TELEMAC_FORMAT, TELEMAC_PRECISION );
426     aStream << "\n";
427   }
428   aStream << "\n";
429
430   aStream << "# edges\n";
431   NCollection_IndexedDataMap< TopoDS_Edge, QList<int> >::Iterator anIt2( anEdgesMap );
432   for( ; anIt2.More(); anIt2.Next() )
433   {
434     QList<int> aVerticesIds = anIt2.Value();
435     foreach( int anId, aVerticesIds )
436       aStream << anId << " ";
437     aStream << "\n";
438   }
439   aStream << "\n";
440
441   aStream << "# faces\n";
442   NCollection_IndexedDataMap< TopoDS_Face, FaceData >::Iterator anIt3( aFacesMap );
443   for( ; anIt3.More(); anIt3.Next() )
444   {
445     QString aType = anIt3.Value().first;
446     double aCoeff = theTable->Get( aType, 0.0 );
447     QList<int> anEdgesIds = anIt3.Value().second;
448     //aStream << "\"" << aType << "\" ";
449     aStream << QString::number( aCoeff, TELEMAC_FORMAT, TELEMAC_PRECISION ) << " ";
450     foreach( int anId, anEdgesIds )
451       aStream << anId << " ";
452     aStream << "\n";
453   }
454   aStream << "\n";
455
456   aFile.close();
457   return true;
458 }
459
460 /**
461   Add a new object as land cover
462   @param theObject the object to add as land cover
463   @param theType the Strickler type for the new land cover
464   @return if the addition is successful
465 */
466 bool HYDROData_LandCoverMap::Add( const Handle( HYDROData_Object )& theObject, const QString& theType )
467 {
468   if( theObject.IsNull() )
469     return false;
470
471   TopoDS_Shape aShape = theObject->GetTopShape();
472   if( aShape.ShapeType()!=TopAbs_FACE )
473     return false;
474
475   TopoDS_Face aFace = TopoDS::Face( aShape );
476   return LocalPartition( aFace, theType );
477 }
478
479 bool HYDROData_LandCoverMap::Add( const TopoDS_Wire& theWire, const QString& theType )
480 {
481   if( !theWire.Closed() )
482     return false;
483
484   TopoDS_Face aFace = BRepBuilderAPI_MakeFace( theWire, Standard_True ).Face();
485   return LocalPartition( aFace, theType );
486 }
487
488 /**
489   Add a new polyline as land cover
490   @param thePolyline the polyline to add as land cover
491   @param theType the Strickler type for the new land cover
492   @return if the addition is successful
493 */
494 bool HYDROData_LandCoverMap::Add( const Handle( HYDROData_PolylineXY )& thePolyline, const QString& theType )
495 {
496   if( thePolyline.IsNull() )
497     return false;
498
499   TopoDS_Shape aShape = thePolyline->GetShape();
500   if( aShape.ShapeType()==TopAbs_WIRE )
501     return Add( TopoDS::Wire( aShape ), theType );
502
503   if( aShape.ShapeType()==TopAbs_COMPOUND )
504   {
505     TopExp_Explorer anExp( aShape, TopAbs_WIRE );
506     for( ; anExp.More(); anExp.Next() )
507     {
508       TopoDS_Wire aPart = TopoDS::Wire( anExp.Current() );
509       if( !Add( aPart, theType ) )
510         return false;
511     }
512     return true;
513   }
514
515   return false;
516 }
517
518 /**
519   Remove the given face from land cover map
520   @param theFace the face to be removed
521   @return if the removing is successful
522 */
523 bool HYDROData_LandCoverMap::Remove( const TopoDS_Face& theFace )
524 {
525   TopTools_ListOfShape aList;
526   aList.Append( theFace );
527   return Remove( aList );
528 }
529
530 /**
531   Remove the given faces from land cover map
532   @param theFacesToRemove the face list to be removed
533   @return if the removing is successful
534 */
535 bool HYDROData_LandCoverMap::Remove( const TopTools_ListOfShape& theFacesToRemove )
536 {
537   HYDROData_MapOfFaceToStricklerType aFacesToRemove, aNewFaces;
538   TopTools_ListIteratorOfListOfShape aFIt( theFacesToRemove );
539   for( ; aFIt.More(); aFIt.Next() )
540   {
541     TopoDS_Shape aShape = aFIt.Value();
542     if( aShape.ShapeType()==TopAbs_FACE )
543       aFacesToRemove.Add( TopoDS::Face( aShape ), "" );
544   }
545
546   Explorer anIt( *this );
547   for( ; anIt.More(); anIt.Next() )
548     if( !aFacesToRemove.Contains( anIt.Face() ) )
549       aNewFaces.Add( anIt.Face(), anIt.StricklerType() );
550
551   if ( aNewFaces.IsEmpty() )
552     return false;
553
554   StoreLandCovers( aNewFaces );
555   return true;
556 }
557
558 /**
559   Split the land cover map by the given polyline
560   @param thePolyline the tool polyline to split the land cover map
561   @return if the removing is successful
562 */
563 bool HYDROData_LandCoverMap::Split( const Handle( HYDROData_PolylineXY )& thePolyline )
564 {
565   if( thePolyline.IsNull() )
566     return false;
567
568   TopoDS_Shape aShape = thePolyline->GetShape();
569   return Split( aShape );
570 }
571
572
573 /**
574   Split the land cover map by the given polyline
575   @param theShape the tool polyline to split the land cover map
576   @return if the removing is successful
577 */
578 bool HYDROData_LandCoverMap::Split( const TopoDS_Shape& theShape )
579 {
580   int aNbCL = GetLCCount();
581   bool aResult = LocalPartition( theShape, "" );
582   return aResult && aNbCL != GetLCCount();
583 }
584
585
586 /**
587   Merge the given faces in the land cover
588   @param theFaces the faces to merge in the land cover map
589   @param theType the Strickler type for the merged land cover
590   @return if the merge is successful
591 */
592 bool HYDROData_LandCoverMap::Merge( const TopTools_ListOfShape& theFaces, const QString& theType )
593 {
594   // 1. to fuse the faces into the new face
595   TopoDS_Shape aMergedFace = MergeFaces( theFaces, true );
596   if( !aMergedFace.IsNull() && aMergedFace.ShapeType()==TopAbs_FACE )
597   {
598     // 2. to remove the merged faces from the current map
599     Remove( theFaces );
600
601     // 3. to add the face into the map
602     return LocalPartition( TopoDS::Face( aMergedFace ), theType );
603   }
604   return false;
605 }
606
607 /**
608   Merge the given faces into the shell/face
609   @param theFaces the faces to merge
610   @param IsToUnify if the common edges should be removed (fused)
611   @param theTolerance the operation's tolerance
612   @return result shape (face or shell)
613 */
614 TopoDS_Shape HYDROData_LandCoverMap::MergeFaces( const TopTools_ListOfShape& theFaces,
615                                                  bool IsToUnify, double theTolerance )
616 {
617   int anError;
618   TopTools_ListIteratorOfListOfShape anIt;
619   BOPCol_ListOfShape aLC;
620   anIt.Initialize(theFaces);
621   for( ; anIt.More(); anIt.Next() )
622   {
623     if (anIt.Value().ShapeType() != TopAbs_FACE)
624       return TopoDS_Shape();
625     aLC.Append( anIt.Value() );
626   }
627
628   BOPAlgo_PaveFiller aPF;
629   aPF.SetArguments( aLC );
630   aPF.SetRunParallel( Standard_False );
631   aPF.SetFuzzyValue( theTolerance );
632
633   aPF.Perform();
634   anError = aPF.ErrorStatus();
635   if( anError )
636     return TopoDS_Shape();
637
638   BOPAlgo_Builder anAlgo;
639   anIt.Initialize( theFaces );
640   for( ; anIt.More(); anIt.Next() )
641     anAlgo.AddArgument( anIt.Value() );
642
643   anAlgo.PerformWithFiller( aPF ); 
644   anError = anAlgo.ErrorStatus();
645   if( anError )
646     return TopoDS_Shape();
647
648   const TopoDS_Shape& aMergedShape = anAlgo.Shape();
649
650   BRep_Builder aBuilder;
651   TopoDS_Shell aShell; 
652   aBuilder.MakeShell( aShell ); 
653   aShell.Closed( Standard_False );
654   TopExp_Explorer anExplorer( aMergedShape, TopAbs_FACE );
655   for( ; anExplorer.More(); anExplorer.Next() ) 
656   {
657     const TopoDS_Face& aFace = TopoDS::Face(anExplorer.Current());
658     if( aFace.IsNull() ) 
659       continue;
660     if( aFace.ShapeType() == TopAbs_FACE )
661     {
662       aBuilder.Add( aShell, aFace );
663       aShell.Closed( Standard_False );
664     }
665   }
666
667   TopoDS_Shape aResult;
668   if( IsToUnify )
669   {
670     ShapeUpgrade_UnifySameDomain aUSD;
671     aUSD.Initialize( aShell );
672     aUSD.Build();
673     aResult = aUSD.Shape();
674   }
675   else
676     aResult = aShell;
677
678   anExplorer.Init( aResult, TopAbs_FACE );
679   int n = 0;
680   TopoDS_Face anOneFace;
681   for( ; anExplorer.More(); anExplorer.Next(), n++ ) 
682     anOneFace = TopoDS::Face( anExplorer.Current() );
683
684   if (n == 1)
685     aResult = anOneFace;
686   else if (aResult.ShapeType() == TopAbs_SHELL)
687   {
688     BRepCheck_Shell aBCS(TopoDS::Shell(aResult));
689     if (aBCS.Status().First() != BRepCheck_NoError)
690     {
691       ShapeFix_Shell aFixer;
692       aFixer.FixFaceOrientation(TopoDS::Shell(aResult), 1);
693       aResult = aFixer.Shape();
694     }
695   }
696
697   return aResult;
698 }
699
700 /**
701   Change Strickler type for the list of faces to the given one
702   @param theFaces the faces to change type
703   @param theType the Strickler type for the given land cover(s)
704   @return if the change type operation is successful
705 */
706 bool HYDROData_LandCoverMap::ChangeType( const TopTools_ListOfShape& theFaces, const QString& theType )
707 {
708   HYDROData_MapOfFaceToStricklerType aFacesToChangeType;
709   TopTools_ListIteratorOfListOfShape aFIt( theFaces );
710   for( ; aFIt.More(); aFIt.Next() )
711   {
712     TopoDS_Shape aShape = aFIt.Value();
713     if( aShape.ShapeType()==TopAbs_FACE )
714       aFacesToChangeType.Add( TopoDS::Face( aShape ), "" );
715   }
716
717   int aNbChanges = 0;
718   Explorer anIt( *this );
719   for( ; anIt.More(); anIt.Next() )
720     if( aFacesToChangeType.Contains( anIt.Face() ) )
721     {
722       anIt.SetStricklerType( theType );
723       aNbChanges++;
724     }
725   if ( aNbChanges != theFaces.Extent() )
726     return false;
727
728   return true;
729 }
730
731 /**
732   Get the shape of the land cover map
733 */
734 TopoDS_Shape HYDROData_LandCoverMap::GetShape() const
735 {
736   return HYDROData_Entity::GetShape( DataTag_Shape );
737 }
738
739 /**
740   Get Strickler type of the given land cover
741   @param theLandCover the land cover to get Strickler type of
742   @return name of Strickler type
743 */
744 QString HYDROData_LandCoverMap::StricklerType( const TopoDS_Face& theLandCover ) const
745 {
746   QString aType = "";
747
748   Explorer anIt( *this );
749   for( ; anIt.More(); anIt.Next() )
750     if( anIt.Face().IsEqual( theLandCover) )
751     {
752       aType = anIt.StricklerType();
753       break;
754     }
755
756   return aType;
757 }
758
759 /**
760   Set the shape of the land cover map
761   @param theShape the new shape for the land cover map
762 */
763 void HYDROData_LandCoverMap::SetShape( const TopoDS_Shape& theShape )
764 {
765   HYDROData_Entity::SetShape( DataTag_Shape, theShape );
766 }
767
768 /**
769   Perform the local partition algorithm on the land cover
770   @param theNewShape the new shape to add into the land cover
771   @param theNewType the new Strickler type for the new land cover
772   @return if the local partition is successful
773 */
774 bool HYDROData_LandCoverMap::LocalPartition( const TopoDS_Shape& theNewShape, const QString& theNewType )
775 {
776   if( theNewShape.IsNull() )
777     return false;
778
779   BOPCol_ListOfShape aShapesList;
780   BOPAlgo_PaveFiller aPaveFiller;
781   HYDROData_MapOfFaceToStricklerType aNewFaces;
782
783   // add faces to shapes list
784   Explorer anIt( *this );
785   for( ; anIt.More(); anIt.Next() )
786     aShapesList.Append( anIt.Face() );
787   aShapesList.Append( theNewShape );
788
789   if( aShapesList.Size()==1 && theNewShape.ShapeType()==TopAbs_FACE )
790   {
791     aNewFaces.Add( TopoDS::Face( theNewShape ), theNewType );
792     StoreLandCovers( aNewFaces );
793     return true;
794   }
795
796   // prepare pave filler
797   aPaveFiller.SetArguments( aShapesList );
798   aPaveFiller.Perform();
799   Standard_Integer anError = aPaveFiller.ErrorStatus();
800   if( anError )
801     return false;
802
803   // add faces to builder
804   BOPAlgo_Builder aBuilder;
805   anIt.Init( *this );
806   for( ; anIt.More(); anIt.Next() )
807     aBuilder.AddArgument( anIt.Face() );
808   aBuilder.AddArgument( theNewShape );
809
810   // perform the partition with the pave filler
811   aBuilder.PerformWithFiller( aPaveFiller );
812   anError = aBuilder.ErrorStatus();
813   if( anError )
814     return false;
815
816   //std::cout << "History:" << std::endl;
817   // analysis of the history
818   //     a. to fill map of shapes which come from the new face
819   NCollection_IndexedMap<int> aShapesFromNewFace;
820   //std::cout << "from NEW " << theNewShape << ":" << theNewType << std::endl;
821   TopTools_ListOfShape aModified = aBuilder.Modified( theNewShape );
822   TopTools_ListIteratorOfListOfShape aMIt( aModified );
823   for( ; aMIt.More(); aMIt.Next() )
824   {
825     //std::cout << "   " << aMIt.Value() << std::endl;
826     int aKey = (int)(uintptr_t)aMIt.Value().TShape().operator->();
827     aShapesFromNewFace.Add( aKey );
828   }
829
830   //     b. to fill map of parts except parts from new face
831   anIt.Init( *this );
832   for( ; anIt.More(); anIt.Next() )
833   {
834     QString aSType = anIt.StricklerType();
835     //std::cout << "from " << anIt.Face() << ": " << anIt.StricklerType() << std::endl;
836     TopTools_ListOfShape aModified = aBuilder.Modified( anIt.Face() );
837
838     //
839     TopTools_ListOfShape aGen = aBuilder.Generated( anIt.Face() );
840     //
841     if( aModified.Extent() == 0 )
842       aModified.Append( anIt.Face() );
843
844     TopTools_ListIteratorOfListOfShape aMIt( aModified );
845     for( ; aMIt.More(); aMIt.Next() )
846     {
847       TopoDS_Shape aShape = aMIt.Value();
848       bool isFace = aShape.ShapeType()==TopAbs_FACE;
849       int aKey = (int)(uintptr_t)aShape.TShape().operator->();
850       bool isAlsoFromNew = aShapesFromNewFace.Contains( aKey );
851       //std::cout << "   " << aShape << " " << isAlsoFromNew << std::endl;
852       if( isFace && !isAlsoFromNew )
853         aNewFaces.Add( TopoDS::Face( aShape ), aSType );
854     }
855   }
856
857   //     c. add the new shape if it is face with its type
858   if( theNewShape.ShapeType()==TopAbs_FACE )
859     aNewFaces.Add( TopoDS::Face( theNewShape ), theNewType );
860   
861   // convert map of shape to type to compound and list of types
862   StoreLandCovers( aNewFaces );
863   return true;
864 }
865
866 /**
867   Replace the set of land covers in the land cover map
868   @param theMap the map of shape (face) to Strickler type (string)
869 */
870 void HYDROData_LandCoverMap::StoreLandCovers( const HYDROData_MapOfFaceToStricklerType& theMap )
871 {
872   TopTools_ListOfShape aListOfFaces;
873
874   int n = theMap.Size();
875
876   Handle( TDataStd_ExtStringArray ) aTypes = 
877     TDataStd_ExtStringArray::Set( myLab.FindChild( DataTag_Types ), 0, n-1, Standard_True );
878
879   HYDROData_MapOfFaceToStricklerType::Iterator aNFIt( theMap );
880   for( int i=0; aNFIt.More(); aNFIt.Next(), i++ )
881   {
882     TopoDS_Face aFace = aNFIt.Key();
883     if( aFace.IsNull() )
884       continue;
885     QString aType = aNFIt.Value();
886     aListOfFaces.Append(aFace);
887     aTypes->SetValue( i, HYDROData_Tool::toExtString( aType ) );
888   }
889
890   TopoDS_Shape aResult;
891   if( aListOfFaces.Extent() == 1 )
892     aResult = aListOfFaces.First();
893   else if( aListOfFaces.Extent() > 1 )
894     aResult = MergeFaces( aListOfFaces, false );
895
896   //remove internal edges
897   aResult = RemoveInternal(aResult);
898   SetShape( aResult );
899 }
900
901 /**
902    Checks that object has 2D presentation. Reimlemented to retun true.
903 */
904 bool HYDROData_LandCoverMap::IsHas2dPrs() const
905 {
906   return true;
907 }
908
909 /**
910   Find the land cover for the given point
911   @param thePoint the point laying in some land cover
912   @param theType the returned type
913   @return the found land cover's face
914 */
915 TopoDS_Face HYDROData_LandCoverMap::FindByPoint( const gp_Pnt2d& thePoint, QString& theType ) const
916 {
917   //TODO: some more optimal algorithm
918   Explorer anIt( *this );
919   for( ; anIt.More(); anIt.Next() )
920     if( HYDROData_Tool::ComputePointState( thePoint.XY(), anIt.Face() ) == TopAbs_IN )
921     {
922       theType = anIt.StricklerType();
923       return anIt.Face();
924     }
925
926   theType = "";
927   return TopoDS_Face();
928 }
929
930 void Dump( const QString& theName, const QStringList& theList, QStringList& theLines )
931 {
932   theLines.append( QString( "%1 = QStringList()" ).arg( theName ) );
933   foreach( QString anItem, theList )
934     theLines.append( QString( "%1.append( u\"%2\" )" ).arg( theName ).arg( anItem ) );
935 }
936
937 /**
938   Dump to Python
939   @param theTreatedObjects the map of treated objects
940 */
941 QStringList HYDROData_LandCoverMap::DumpToPython( const QString&       thePyScriptPath,
942                                                   MapOfTreatedObjects& theTreatedObjects ) const
943 {
944   QStringList aResList = dumpObjectCreation( theTreatedObjects );
945   QString aName = GetObjPyName();
946
947   QString aShpFileName = thePyScriptPath;
948   aShpFileName.replace( ".py", ".shp" );
949   QString aDbfFileName = thePyScriptPath;
950   aDbfFileName.replace( ".py", ".dbf" );
951
952   ExportSHP( aShpFileName, true, 0.1 );
953
954   QString anAttr = "CODE_06"; //TODO: some custom choice
955   QStringList anAttrValues, aTypes;
956   HYDROData_Document::Document( myLab )->CollectQGISValues( anAttr, anAttrValues, aTypes );
957   ExportDBF( aDbfFileName, anAttr, anAttrValues, aTypes );
958
959   aResList << QString( "%1.ImportSHP( '%2' )" ).
960     arg( aName ).arg( aShpFileName );
961
962   Dump( "attr_values", anAttrValues, aResList );
963   Dump( "types", aTypes, aResList );
964   aResList << QString( "%1.ImportDBF( '%2', '%3', attr_values, types )" ).
965     arg( aName ).arg( aDbfFileName ).arg( anAttr );
966
967   return aResList;
968 }
969
970 TopoDS_Shape HYDROData_LandCoverMap::RemoveInternal(const TopoDS_Shape& InSh)
971 {
972   //Shape must be topologically correct
973   TopExp_Explorer anExp(InSh, TopAbs_EDGE);
974   TopTools_ListOfShape anEdgesToRemove;
975
976   for(; anExp.More(); anExp.Next() )
977   {
978     TopoDS_Edge CurEdge = TopoDS::Edge(anExp.Current());
979     if (CurEdge.Orientation() == TopAbs_INTERNAL)
980       anEdgesToRemove.Append(CurEdge);
981   }
982  
983   Handle_ShapeBuild_ReShape aReshape = new ShapeBuild_ReShape();
984   TopoDS_Shape OutSh = aReshape->Apply(InSh);
985   TopTools_ListIteratorOfListOfShape aIt(anEdgesToRemove);
986   for (; aIt.More(); aIt.Next()) 
987     aReshape->Remove(aIt.Value());
988   OutSh = aReshape->Apply(InSh);
989
990   Handle(ShapeFix_Shape) sfs = new ShapeFix_Shape;
991   sfs->Init(OutSh);
992   sfs->Perform();
993   return sfs->Shape();
994
995 }
996
997 void HYDROData_LandCoverMap::SetTransparency( double theTransparency )
998 {
999   Handle(TDataStd_Real) anAttr;
1000   TDF_Label aLabel = myLab.FindChild( DataTag_Transparency );
1001   if( !aLabel.FindAttribute( TDataStd_Real::GetID(), anAttr ) )
1002     aLabel.AddAttribute( anAttr = new TDataStd_Real() );
1003   anAttr->Set( theTransparency );
1004 }
1005
1006 double HYDROData_LandCoverMap::GetTransparency() const
1007 {
1008   Handle(TDataStd_Real) anAttr;
1009   TDF_Label aLabel = myLab.FindChild( DataTag_Transparency );
1010   if( !aLabel.FindAttribute( TDataStd_Real::GetID(), anAttr ) )
1011     return 0.5;
1012
1013   return anAttr->Get();
1014   
1015 }
1016
1017 bool HYDROData_LandCoverMap::ImportSHP( const QString& theSHPFileName,
1018                                         const QList<int>& theIndices )
1019 {
1020   HYDROData_ShapeFile anImporter;
1021   QStringList aPolyList; 
1022   TopTools_SequenceOfShape aFaces;
1023   int aSHapeType = -1;
1024   int Stat = anImporter.ImportPolygons(theSHPFileName, aPolyList, aFaces, aSHapeType);
1025   //
1026   if (Stat != 1)
1027     return false;
1028   //
1029   HYDROData_MapOfFaceToStricklerType aMapFace2ST;
1030   int maxInd = *std::max_element(theIndices.begin(), theIndices.end());
1031   if (maxInd > aPolyList.length())
1032     return false;
1033   //
1034   if (theIndices.empty())
1035   {
1036     //import all shapes
1037     for ( int i = 1; i <=aFaces.Length(); i++ )
1038     {
1039       TopoDS_Shape aShape = aFaces(i);
1040       if ( aShape.IsNull() ) 
1041         continue;
1042       aMapFace2ST.Add( TopoDS::Face( aShape ), "" );
1043     }
1044   }
1045   else
1046   {
1047     //import given indices
1048     foreach ( int Ind, theIndices )
1049     {
1050       TopoDS_Shape aShape = aFaces(Ind + 1);
1051       if ( aShape.IsNull() ) 
1052         continue;
1053       aMapFace2ST.Add( TopoDS::Face( aShape ), "" );
1054     }
1055   }
1056   //
1057   StoreLandCovers(aMapFace2ST);
1058   return true;
1059 }
1060
1061 bool HYDROData_LandCoverMap::ExportSHP( const QString& theSHPFileName, bool bUseDiscr, double theDefl) const
1062 {
1063   HYDROData_ShapeFile anExporter;
1064   QStringList aList;
1065   anExporter.Export(theSHPFileName, this, aList, bUseDiscr, theDefl );
1066   if (aList.empty())
1067     return true;
1068   else 
1069     return false;
1070 }
1071
1072 bool HYDROData_LandCoverMap::CheckLinear()
1073 {
1074   TopoDS_Shape InpShape = GetShape();
1075   TopExp_Explorer anEdgeEx(InpShape, TopAbs_EDGE);
1076   for (; anEdgeEx.More(); anEdgeEx.Next()) 
1077   {
1078     TopoDS_Edge E = TopoDS::Edge(anEdgeEx.Current());
1079     double aFP, aLP;
1080     Handle_Geom_Curve aCur = BRep_Tool::Curve(E, aFP, aLP);
1081     Handle(Geom_Line) aLine = Handle(Geom_Line)::DownCast(aCur);
1082     if (aLine.IsNull())
1083     {
1084       Handle(Geom_TrimmedCurve) aTC = Handle(Geom_TrimmedCurve)::DownCast(aCur);
1085       if (!aTC.IsNull())
1086       {
1087         Handle(Geom_Line) aLine = Handle(Geom_Line)::DownCast(aTC->BasisCurve());
1088         if (aLine.IsNull())
1089           return false;
1090       }
1091       else
1092         return false;
1093     }
1094   }
1095   return true;
1096 }