Salome HOME
e825ebb04d05b24f585b17b882d6b5f65f53743c
[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
25 #include <BOPAlgo_BOP.hxx>
26 #include <BOPAlgo_Builder.hxx>
27 #include <BOPAlgo_PaveFiller.hxx>
28 #include <BOPCol_ListOfShape.hxx>
29 #include <BRep_Builder.hxx>
30 #include <BRepAdaptor_Curve.hxx>
31 #include <BRepAlgoAPI_Fuse.hxx>
32 #include <BRepBuilderAPI_MakeFace.hxx>
33 #include <GCPnts_QuasiUniformDeflection.hxx>
34 #include <TopoDS.hxx>
35 #include <TopoDS_Compound.hxx>
36 #include <TopoDS_Edge.hxx>
37 #include <TopoDS_Face.hxx>
38 #include <TopoDS_Iterator.hxx>
39 #include <TopoDS_Shell.hxx>
40 #include <TopExp_Explorer.hxx>
41 #include <TopTools_ListIteratorOfListOfShape.hxx>
42 #include <BOPAlgo_PaveFiller.hxx>
43 #include <BRepTools.hxx>
44 #include <TopExp_Explorer.hxx>
45 #include <ShapeUpgrade_UnifySameDomain.hxx>
46
47 #include <QFile>
48 #include <QString>
49 #include <QTextStream>
50
51 const char TELEMAC_FORMAT = 'f';
52 const int TELEMAC_PRECISION = 3;
53
54
55 IMPLEMENT_STANDARD_HANDLE(HYDROData_LandCoverMap, HYDROData_Entity)
56 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_LandCoverMap, HYDROData_Entity)
57
58 /**
59   Constructor
60   @param theMap the land cover map to iterate through
61 */
62 HYDROData_LandCoverMap::Iterator::Iterator( const HYDROData_LandCoverMap& theMap )
63 {
64   Init( theMap );
65 }
66
67 HYDROData_LandCoverMap::Iterator::Iterator( const Handle( HYDROData_LandCoverMap )& theMap )
68 {
69   if( theMap.IsNull() )
70   {
71     myIterator = 0;
72     myIndex = -1;
73   }
74   else
75     Init( *theMap );
76 }
77
78 /**
79   Initialize the iterator
80   @param theMap the land cover map to iterate through
81 */
82 void HYDROData_LandCoverMap::Iterator::Init( const HYDROData_LandCoverMap& theMap )
83 {
84   TopoDS_Shape aShape = theMap.GetShape();
85   if( aShape.IsNull() )
86     myIterator = 0;
87   else
88     myIterator = new TopoDS_Iterator( aShape );
89   
90   theMap.myLab.FindChild( DataTag_Types ).FindAttribute( TDataStd_ExtStringArray::GetID(), myArray );
91   if( myArray.IsNull() )
92     myIndex = -1;
93   else
94     myIndex = myArray->Lower();
95 }
96
97 /**
98   Destructor
99 */
100 HYDROData_LandCoverMap::Iterator::~Iterator()
101 {
102   delete myIterator;
103 }
104
105 /**
106   Return the current 0-based index of the iterator
107   @return the current index
108 */
109 int HYDROData_LandCoverMap::Iterator::Index() const
110 {
111   if( myArray.IsNull() )
112     return -1;
113   else
114     return myIndex - myArray->Lower();
115 }
116
117 /**
118   Return if the iterator has more elements
119   @return if the iterator has more elements
120 */
121 bool HYDROData_LandCoverMap::Iterator::More() const
122 {
123   return !myArray.IsNull() && myIterator && myIterator->More();
124 }
125
126 /**
127   Move iterator to the next element
128 */
129 void HYDROData_LandCoverMap::Iterator::Next()
130 {
131   if( myIterator )
132   {
133     myIterator->Next();
134     myIndex++;
135   }
136 }
137
138 /**
139   Get the current land cover (face)
140   @return the land cover's face
141 */
142 TopoDS_Face HYDROData_LandCoverMap::Iterator::Face() const
143 {
144   if( myIterator )
145     return TopoDS::Face( myIterator->Value() );
146   else
147     return TopoDS_Face();
148 }
149
150 /**
151   Get the current land cover's Strickler type 
152   @return the land cover's Strickler type 
153 */
154 QString HYDROData_LandCoverMap::Iterator::StricklerType() const
155 {
156   if( myArray.IsNull() || myIndex < myArray->Lower() || myIndex > myArray->Upper() )
157     return "";
158   else
159     return HYDROData_Tool::toQString( myArray->Value( myIndex ) );
160 }
161
162 /**
163   Set the Strickler type for the current land cover
164   @param theType the Strickler type
165 */
166 void HYDROData_LandCoverMap::Iterator::SetStricklerType( const QString& theType )
167 {
168   if( myArray.IsNull() || myIndex < myArray->Lower() || myIndex > myArray->Upper() )
169     return;
170   else
171     myArray->SetValue( myIndex, HYDROData_Tool::toExtString( theType ) );
172 }
173
174 /**
175   Constructor
176 */
177 HYDROData_LandCoverMap::HYDROData_LandCoverMap()
178   : HYDROData_Entity( Geom_No )
179 {
180 }
181
182 /**
183   Destructor
184 */
185 HYDROData_LandCoverMap::~HYDROData_LandCoverMap()
186 {
187 }
188
189 /**
190   Get object's kind
191   @return object's kind
192 */
193 const ObjectKind HYDROData_LandCoverMap::GetKind() const
194 {
195   return KIND_LAND_COVER_MAP;
196 }
197
198 int HYDROData_LandCoverMap::GetLCCount() const
199 {
200   Iterator anIt( *this );
201   int i = 0;
202   for( ; anIt.More(); anIt.Next() )
203     i++;
204   return i;
205 }
206
207 bool HYDROData_LandCoverMap::IsEmpty() const
208 {
209   Iterator anIt( *this );
210   if ( !anIt.More() )
211     return true;
212   else
213     return false;
214 }
215
216 /**
217   Load attributes from DBF File
218 ///
219 */
220 HYDROData_LandCoverMap::DBFStatus HYDROData_LandCoverMap::ImportDBF( const QString& theDBFFileName, 
221                                                                      const QString& theFieldName, 
222                                                                      const QStringList& theDBFValues,
223                                                                      const QStringList& theStricklerTypes,
224                                                                      const QList<int>& theIndices )
225 {
226   if (theDBFValues.size() != theStricklerTypes.size())
227     return DBFStatus_DIFF_SIZE_ERROR;
228   HYDROData_ShapeFile aDBFImporter;
229   if (!aDBFImporter.DBF_OpenDBF(theDBFFileName))
230     return DBFStatus_OPEN_FILE_ERROR; //cant open file
231
232   QStringList FieldList = aDBFImporter.DBF_GetFieldList();
233   int FieldNameIndex = FieldList.indexOf(theFieldName);
234   if (FieldNameIndex == -1)
235     return DBFStatus_NO_SUCH_FIELD_ERROR; //no such field
236
237   std::vector<HYDROData_ShapeFile::DBF_AttrValue> theAttrV;
238   aDBFImporter.DBF_GetAttributeList(FieldNameIndex, theAttrV ); 
239
240   bool allOK = true;
241   Iterator anIt( *this );
242   for( ; anIt.More(); anIt.Next() )
243   {
244     int CurIndex = anIt.Index();
245     HYDROData_ShapeFile::DBF_AttrValue AValue = theAttrV[theIndices[CurIndex]];
246     int StricklerTypesInd = theDBFValues.indexOf(QString(AValue.myStrVal));
247     if ( StricklerTypesInd != -1)
248       anIt.SetStricklerType(theStricklerTypes[StricklerTypesInd]);
249     else
250       allOK = false;
251   }
252   if (allOK)
253     return DBFStatus_OK;
254   else
255     return DBFStatus_NO_DBFVALUES_CORRESPONDENCE_WARNING;
256 }
257
258 /**
259   Export attributes to DBF File
260 ///
261 */
262 void HYDROData_LandCoverMap::ExportDBF( const QString& theDBFFileName, 
263                                         const QString& theFieldName, 
264                                         const QStringList& theDBFValues,
265                                         const QStringList& theStricklerTypes) const
266 {
267   if (theDBFValues.size() != theStricklerTypes.size())
268     return;
269   HYDROData_ShapeFile anExporter; 
270   std::vector<HYDROData_ShapeFile::DBF_AttrValue> theAttrV;
271   Iterator anIt( *this );
272   for( ; anIt.More(); anIt.Next() )
273   {
274     QString CurST = anIt.StricklerType();
275     HYDROData_ShapeFile::DBF_AttrValue aCurAttrV;
276     aCurAttrV.myIsNull = false;
277     int StricklerTypesInd = theStricklerTypes.indexOf(CurST);
278     if (StricklerTypesInd != -1)
279     {
280       aCurAttrV.myStrVal = theDBFValues[StricklerTypesInd];
281       aCurAttrV.myFieldType = HYDROData_ShapeFile::DBF_FieldType_String;
282       theAttrV.push_back(aCurAttrV);
283     }
284     else
285       aCurAttrV.myIsNull = true;
286   }
287   //use actual str value; not the raw value
288   anExporter.DBF_WriteFieldAndValues(theDBFFileName, theFieldName, HYDROData_ShapeFile::DBF_FieldType_String, theAttrV, false);
289
290 }
291
292 int HashCode( const gp_Pnt& thePoint, const Standard_Integer theUpper )
293 {
294   int aHashX = HashCode( thePoint.X(), theUpper );
295   int aHashY = HashCode( thePoint.Y(), theUpper );
296   return (aHashX^aHashY)%theUpper;
297 }
298
299 bool operator == ( const gp_Pnt& thePoint1, const gp_Pnt& thePoint2 )
300 {
301   return thePoint1.IsEqual( thePoint2, Precision::Confusion() );
302 }
303
304 bool EdgeDiscretization( const TopoDS_Edge& theEdge, 
305                          Standard_Real theDeflection,
306                          NCollection_IndexedMap<gp_Pnt>& theVerticesMap,
307                          QList<int>& theVerticesIds )
308 {
309   BRepAdaptor_Curve aCurve( theEdge );
310   GCPnts_QuasiUniformDeflection aDiscrete( aCurve, theDeflection );
311   if( !aDiscrete.IsDone() )
312     return false;
313
314   int n = aDiscrete.NbPoints();
315   for( int i=1; i<=n; i++ )
316   {
317     gp_Pnt aPnt = aDiscrete.Value( i );
318     int anId;
319     if( theVerticesMap.Contains( aPnt ) )
320       anId = theVerticesMap.FindIndex( aPnt );
321     else
322     {
323       anId = theVerticesMap.Size();
324       theVerticesMap.Add( aPnt );
325     }
326     theVerticesIds.append( anId );
327   }
328   return true;
329 }
330
331 /**
332   Export the land cover map for the solver (Telemac)
333   @param theFileName the name of file
334   @return if the export is successful
335 */
336 bool HYDROData_LandCoverMap::ExportTelemac( const QString& theFileName, Standard_Real theDeflection ) const
337 {
338   TopoDS_Shape aLandCoverMapShape = GetShape();
339   TopTools_ListOfShape aListOfFaces;
340   TopExp_Explorer anExp( aLandCoverMapShape, TopAbs_FACE );
341   for( ; anExp.More(); anExp.Next() )
342     aListOfFaces.Append( anExp.Current() );
343
344   TopoDS_Shape aShape = MergeFaces( aListOfFaces, false );
345
346   NCollection_IndexedMap<gp_Pnt> aVerticesMap;
347   NCollection_IndexedDataMap< TopoDS_Edge, QList<int> > anEdgesMap;
348   NCollection_IndexedDataMap< TopoDS_Face, QList<int> > aFacesMap;
349
350   // add into the map all edges existing in the shell
351   TopExp_Explorer anExp1( aShape, TopAbs_EDGE );
352   for( ; anExp1.More(); anExp1.Next() )
353   {
354     TopoDS_Edge anEdge = TopoDS::Edge( anExp1.Current() );
355     QList<int> aVerticesIdsList;
356     if( EdgeDiscretization( anEdge, theDeflection, aVerticesMap, aVerticesIdsList ) )
357       anEdgesMap.Add( anEdge, aVerticesIdsList );
358   }
359
360   // add into the map all faces existing in the shell and correspondence between face and edges ids
361   TopExp_Explorer anExp2( aShape, TopAbs_FACE );
362   for( ; anExp2.More(); anExp2.Next() )
363   {
364     TopoDS_Face aFace = TopoDS::Face( anExp2.Current() );
365     TopExp_Explorer anExp3( aFace, TopAbs_EDGE );
366     QList<int> anEdgesIdsList;
367     for( ; anExp3.More(); anExp3.Next() )
368     {
369       TopoDS_Edge anEdge = TopoDS::Edge( anExp3.Current() );
370       int anEdgeId = anEdgesMap.FindIndex( anEdge );
371       anEdgesIdsList.append( anEdgeId );
372     }
373     aFacesMap.Add( aFace, anEdgesIdsList );
374   }
375
376   QFile aFile( theFileName );
377   if( !aFile.open( QFile::WriteOnly | QFile::Text ) )
378     return false;
379
380   QTextStream aStream( &aFile );
381   aStream << "# nodes\n";
382   NCollection_IndexedMap<gp_Pnt>::Iterator anIt1( aVerticesMap );
383   for( ; anIt1.More(); anIt1.Next() )
384   {
385     gp_Pnt aPnt = anIt1.Value();
386     aStream << QString::number( aPnt.X(), TELEMAC_FORMAT, TELEMAC_PRECISION );
387     aStream << " ";
388     aStream << QString::number( aPnt.Y(), TELEMAC_FORMAT, TELEMAC_PRECISION );
389     aStream << " ";
390     aStream << QString::number( aPnt.Z(), TELEMAC_FORMAT, TELEMAC_PRECISION );
391     aStream << "\n";
392   }
393   aStream << "\n";
394
395   aStream << "# edges\n";
396   NCollection_IndexedDataMap< TopoDS_Edge, QList<int> >::Iterator anIt2( anEdgesMap );
397   for( ; anIt2.More(); anIt2.Next() )
398   {
399     QList<int> aVerticesIds = anIt2.Value();
400     foreach( int anId, aVerticesIds )
401       aStream << anId << " ";
402     aStream << "\n";
403   }
404   aStream << "\n";
405
406   aStream << "# faces\n";
407   NCollection_IndexedDataMap< TopoDS_Face, QList<int> >::Iterator anIt3( aFacesMap );
408   for( ; anIt3.More(); anIt3.Next() )
409   {
410     QList<int> anEdgesIds = anIt3.Value();
411     foreach( int anId, anEdgesIds )
412       aStream << anId << " ";
413     aStream << "\n";
414   }
415   aStream << "\n";
416
417   aFile.close();
418   return true;
419 }
420
421 /**
422   Add a new object as land cover
423   @param theObject the object to add as land cover
424   @param theType the Strickler type for the new land cover
425   @return if the addition is successful
426 */
427 bool HYDROData_LandCoverMap::Add( const Handle( HYDROData_Object )& theObject, const QString& theType )
428 {
429   if( theObject.IsNull() )
430     return false;
431
432   TopoDS_Shape aShape = theObject->GetTopShape();
433   if( aShape.ShapeType()!=TopAbs_FACE )
434     return false;
435
436   TopoDS_Face aFace = TopoDS::Face( aShape );
437   return LocalPartition( aFace, theType );
438 }
439
440 /**
441   Add a new polyline as land cover
442   @param thePolyline the polyline to add as land cover
443   @param theType the Strickler type for the new land cover
444   @return if the addition is successful
445 */
446 bool HYDROData_LandCoverMap::Add( const Handle( HYDROData_PolylineXY )& thePolyline, const QString& theType )
447 {
448   if( thePolyline.IsNull() )
449     return false;
450
451   TopoDS_Shape aShape = thePolyline->GetShape();
452   if( aShape.ShapeType()!=TopAbs_WIRE )
453     return false;
454
455   TopoDS_Wire aWire = TopoDS::Wire( aShape );
456   if( !aWire.Closed() )
457     return false;
458
459   TopoDS_Face aFace = BRepBuilderAPI_MakeFace( aWire, Standard_True ).Face();
460   return LocalPartition( aFace, theType );
461 }
462
463 /**
464   Remove the given face from land cover map
465   @param theFace the face to be removed
466   @return if the removing is successful
467 */
468 bool HYDROData_LandCoverMap::Remove( const TopoDS_Face& theFace )
469 {
470   TopTools_ListOfShape aList;
471   aList.Append( theFace );
472   return Remove( aList );
473 }
474
475 /**
476   Remove the given faces from land cover map
477   @param theFacesToRemove the face list to be removed
478   @return if the removing is successful
479 */
480 bool HYDROData_LandCoverMap::Remove( const TopTools_ListOfShape& theFacesToRemove )
481 {
482   HYDROData_MapOfFaceToStricklerType aFacesToRemove, aNewFaces;
483   TopTools_ListIteratorOfListOfShape aFIt( theFacesToRemove );
484   for( ; aFIt.More(); aFIt.Next() )
485   {
486     TopoDS_Shape aShape = aFIt.Value();
487     if( aShape.ShapeType()==TopAbs_FACE )
488       aFacesToRemove.Add( TopoDS::Face( aShape ), "" );
489   }
490
491   Iterator anIt( *this );
492   for( ; anIt.More(); anIt.Next() )
493     if( !aFacesToRemove.Contains( anIt.Face() ) )
494       aNewFaces.Add( anIt.Face(), anIt.StricklerType() );
495
496   StoreLandCovers( aNewFaces );
497   return true;
498 }
499
500 /**
501   Split the land cover map by the given polyline
502   @param thePolyline the tool polyline to split the land cover map
503   @return if the removing is successful
504 */
505 bool HYDROData_LandCoverMap::Split( const Handle( HYDROData_PolylineXY )& thePolyline )
506 {
507   if( thePolyline.IsNull() )
508     return false;
509
510   TopoDS_Shape aShape = thePolyline->GetShape();
511   return Split( aShape );
512 }
513
514
515 /**
516   Split the land cover map by the given polyline
517   @param theShape the tool polyline to split the land cover map
518   @return if the removing is successful
519 */
520 bool HYDROData_LandCoverMap::Split( const TopoDS_Shape& theShape )
521 {
522   return LocalPartition( theShape, "" );
523 }
524
525
526 /**
527   Merge the given faces in the land cover
528   @param theFaces the faces to merge in the land cover map
529   @param theType the Strickler type for the merged land cover
530   @return if the merge is successful
531 */
532 bool HYDROData_LandCoverMap::Merge( const TopTools_ListOfShape& theFaces, const QString& theType )
533 {
534   // 1. to fuse the faces into the new face
535   TopoDS_Shape aMergedFace = MergeFaces( theFaces, true );
536   if( aMergedFace.ShapeType()==TopAbs_FACE )
537   {
538     // 2. to remove the merged faces from the current map
539     Remove( theFaces );
540
541     // 3. to add the face into the map
542     return LocalPartition( TopoDS::Face( aMergedFace ), theType );
543   }
544   return false;
545 }
546
547 /**
548   Merge the given faces into the shell/face
549   @param theFaces the faces to merge
550   @param IsToUnify if the common edges should be removed (fused)
551   @param theTolerance the operation's tolerance
552   @return result shape (face or shell)
553 */
554 TopoDS_Shape HYDROData_LandCoverMap::MergeFaces( const TopTools_ListOfShape& theFaces,
555                                                  bool IsToUnify, double theTolerance )
556 {
557   int anError;
558   TopTools_ListIteratorOfListOfShape anIt;
559   BOPCol_ListOfShape aLC;
560   anIt.Initialize(theFaces);
561   for( ; anIt.More(); anIt.Next() )
562   {
563     if (anIt.Value().ShapeType() != TopAbs_FACE)
564       return TopoDS_Shape();
565     aLC.Append( anIt.Value() );
566   }
567
568   BOPAlgo_PaveFiller aPF;
569   aPF.SetArguments( aLC );
570   aPF.SetRunParallel( Standard_False );
571   aPF.SetFuzzyValue( theTolerance );
572
573   aPF.Perform();
574   anError = aPF.ErrorStatus();
575   if( anError )
576     return TopoDS_Shape();
577
578   BOPAlgo_Builder anAlgo;
579   anIt.Initialize( theFaces );
580   for( ; anIt.More(); anIt.Next() )
581     anAlgo.AddArgument( anIt.Value() );
582
583   anAlgo.PerformWithFiller( aPF ); 
584   anError = anAlgo.ErrorStatus();
585   if( anError )
586     return TopoDS_Shape();
587
588   const TopoDS_Shape& aMergedShape = anAlgo.Shape();
589
590   BRep_Builder aBuilder;
591   TopoDS_Shell aShell; 
592   aBuilder.MakeShell( aShell ); 
593   aShell.Closed( Standard_False );
594   TopExp_Explorer anExplorer( aMergedShape, TopAbs_FACE );
595   for( ; anExplorer.More(); anExplorer.Next() ) 
596   {
597     const TopoDS_Face& aFace = TopoDS::Face(anExplorer.Current());
598     if( aFace.IsNull() ) 
599       continue;
600     if( aFace.ShapeType() == TopAbs_FACE )
601     {
602       aBuilder.Add( aShell, aFace );
603       aShell.Closed( Standard_False );
604     }
605   }
606
607   TopoDS_Shape aResult;
608   if( IsToUnify )
609   {
610     ShapeUpgrade_UnifySameDomain aUSD;
611     aUSD.Initialize( aShell );
612     aUSD.Build();
613     aResult = aUSD.Shape();
614   }
615   else
616     aResult = aShell;
617
618   anExplorer.Init( aResult, TopAbs_FACE );
619   int n = 0;
620   TopoDS_Face anOneFace;
621   for( ; anExplorer.More(); anExplorer.Next(), n++ ) 
622     anOneFace = TopoDS::Face( anExplorer.Current() );
623
624   if( n == 1 )
625     aResult = anOneFace;
626
627   return aResult;
628 }
629
630 /**
631   Get the shape of the land cover map
632 */
633 TopoDS_Shape HYDROData_LandCoverMap::GetShape() const
634 {
635   return HYDROData_Entity::GetShape( DataTag_Shape );
636 }
637
638 /**
639   Set the shape of the land cover map
640   @param theShape the new shape for the land cover map
641 */
642 void HYDROData_LandCoverMap::SetShape( const TopoDS_Shape& theShape )
643 {
644   HYDROData_Entity::SetShape( DataTag_Shape, theShape );
645 }
646
647 /**
648   Perform the local partition algorithm on the land cover
649   @param theNewShape the new shape to add into the land cover
650   @param theNewType the new Strickler type for the new land cover
651   @return if the local partition is successful
652 */
653 bool HYDROData_LandCoverMap::LocalPartition( const TopoDS_Shape& theNewShape, const QString& theNewType )
654 {
655   if( theNewShape.IsNull() )
656     return false;
657
658   BOPCol_ListOfShape aShapesList;
659   BOPAlgo_PaveFiller aPaveFiller;
660   HYDROData_MapOfFaceToStricklerType aNewFaces;
661
662   // add faces to shapes list
663   Iterator anIt( *this );
664   for( ; anIt.More(); anIt.Next() )
665     aShapesList.Append( anIt.Face() );
666   aShapesList.Append( theNewShape );
667
668   if( aShapesList.Size()==1 && theNewShape.ShapeType()==TopAbs_FACE )
669   {
670     aNewFaces.Add( TopoDS::Face( theNewShape ), theNewType );
671     StoreLandCovers( aNewFaces );
672     return true;
673   }
674
675   // prepare pave filler
676   aPaveFiller.SetArguments( aShapesList );
677   aPaveFiller.Perform();
678   Standard_Integer anError = aPaveFiller.ErrorStatus();
679   if( anError )
680     return false;
681
682   // add faces to builder
683   BOPAlgo_Builder aBuilder;
684   anIt.Init( *this );
685   for( ; anIt.More(); anIt.Next() )
686     aBuilder.AddArgument( anIt.Face() );
687   aBuilder.AddArgument( theNewShape );
688
689   // perform the partition with the pave filler
690   aBuilder.PerformWithFiller( aPaveFiller );
691   anError = aBuilder.ErrorStatus();
692   if( anError )
693     return false;
694
695   //std::cout << "History:" << std::endl;
696   // analysis of the history
697   //     a. to fill map of shapes which come from the new face
698   NCollection_IndexedMap<int> aShapesFromNewFace;
699   //std::cout << "from NEW " << theNewShape << ":" << theNewType << std::endl;
700   TopTools_ListOfShape aModified = aBuilder.Modified( theNewShape );
701   TopTools_ListIteratorOfListOfShape aMIt( aModified );
702   for( ; aMIt.More(); aMIt.Next() )
703   {
704     //std::cout << "   " << aMIt.Value() << std::endl;
705     int aKey = (int)(uintptr_t)aMIt.Value().TShape().operator->();
706     aShapesFromNewFace.Add( aKey );
707   }
708
709   //     b. to fill map of parts except parts from new face
710   anIt.Init( *this );
711   for( ; anIt.More(); anIt.Next() )
712   {
713     QString aSType = anIt.StricklerType();
714     //std::cout << "from " << anIt.Face() << ": " << anIt.StricklerType() << std::endl;
715     TopTools_ListOfShape aModified = aBuilder.Modified( anIt.Face() );
716     if( aModified.Extent() == 0 )
717       aModified.Append( anIt.Face() );
718
719     TopTools_ListIteratorOfListOfShape aMIt( aModified );
720     for( ; aMIt.More(); aMIt.Next() )
721     {
722       TopoDS_Shape aShape = aMIt.Value();
723       bool isFace = aShape.ShapeType()==TopAbs_FACE;
724       int aKey = (int)(uintptr_t)aShape.TShape().operator->();
725       bool isAlsoFromNew = aShapesFromNewFace.Contains( aKey );
726       //std::cout << "   " << aShape << " " << isAlsoFromNew << std::endl;
727       if( isFace && !isAlsoFromNew )
728         aNewFaces.Add( TopoDS::Face( aShape ), aSType );
729     }
730   }
731
732   //     c. add the new shape if it is face with its type
733   if( theNewShape.ShapeType()==TopAbs_FACE )
734     aNewFaces.Add( TopoDS::Face( theNewShape ), theNewType );
735   
736   // convert map of shape to type to compound and list of types
737   StoreLandCovers( aNewFaces );
738   return true;
739 }
740
741 /**
742   Replace the set of land covers in the land cover map
743   @param theMap the map of shape (face) to Strickler type (string)
744 */
745 void HYDROData_LandCoverMap::StoreLandCovers( const HYDROData_MapOfFaceToStricklerType& theMap )
746 {
747   TopTools_ListOfShape aListOfFaces;
748
749   int n = theMap.Size();
750
751   Handle( TDataStd_ExtStringArray ) aTypes = 
752     TDataStd_ExtStringArray::Set( myLab.FindChild( DataTag_Types ), 0, n-1, Standard_True );
753
754   HYDROData_MapOfFaceToStricklerType::Iterator aNFIt( theMap );
755   for( int i=0; aNFIt.More(); aNFIt.Next(), i++ )
756   {
757     TopoDS_Face aFace = aNFIt.Key();
758     if( aFace.IsNull() )
759       continue;
760     QString aType = aNFIt.Value();
761     aListOfFaces.Append(aFace);
762     aTypes->SetValue( i, HYDROData_Tool::toExtString( aType ) );
763   }
764
765   TopoDS_Shape aResult;
766   if( aListOfFaces.Extent() == 1 )
767   {
768     TopoDS_Shell aShell;
769     BRep_Builder aShellBuilder;
770     aShellBuilder.MakeShell( aShell );
771     aShell.Closed( Standard_False );
772     aShellBuilder.Add( aShell, aListOfFaces.First() );
773     aResult = aShell;
774   }
775   else if( aListOfFaces.Extent() > 1 )
776     aResult = MergeFaces( aListOfFaces, false );
777
778   SetShape( aResult );
779 }
780
781 /**
782   Find the land cover for the given point
783   @param thePoint the point laying in some land cover
784   @param theType the returned type
785   @return the found land cover's face
786 */
787 TopoDS_Face HYDROData_LandCoverMap::FindByPoint( const gp_Pnt2d& thePoint, QString& theType ) const
788 {
789   //TODO: some more optimal algorithm
790   Iterator anIt( *this );
791   for( ; anIt.More(); anIt.Next() )
792     if( HYDROData_Tool::ComputePointState( thePoint.XY(), anIt.Face() ) == TopAbs_IN )
793     {
794       theType = anIt.StricklerType();
795       return anIt.Face();
796     }
797
798   theType = "";
799   return TopoDS_Face();
800 }
801
802 /**
803   Dump to Python
804   @param theTreatedObjects the map of treated objects
805 */
806 QStringList HYDROData_LandCoverMap::DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const
807 {
808   QStringList aResList = dumpObjectCreation( theTreatedObjects );
809   QString aName = GetObjPyName();
810
811   //Handle(HYDROData_PolylineXY) aHydAxis = GetHydraulicAxis();
812   //setPythonReferenceObject( theTreatedObjects, aResList, aHydAxis, "SetHydraulicAxis" );
813
814   //HYDROData_SequenceOfObjects aSeqOfProfiles = GetProfiles();
815   //for ( int i = 1, aNb = aSeqOfProfiles.Size(); i <= aNb; ++i )
816   //{
817     //const Handle(HYDROData_Entity) aProfile = aSeqOfProfiles.Value( i );
818     //setPythonReferenceObject( theTreatedObjects, aResList, aProfile, "AddProfile" );
819   //}
820
821   //TODO
822
823   return aResList;
824 }