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.
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.
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
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #pragma warning ( disable: 4251 )
23 #include "HYDROData_CalculationCase.h"
24 #include "HYDROData_ArtificialObject.h"
25 #include "HYDROData_IAltitudeObject.h"
26 #include "HYDROData_Document.h"
27 #include "HYDROData_ShapesGroup.h"
28 #include "HYDROData_Iterator.h"
29 #include "HYDROData_NaturalObject.h"
30 #include "HYDROData_PolylineXY.h"
31 #include "HYDROData_StricklerTable.h"
32 #include "HYDROData_LandCover.h"
33 #include "HYDROData_SplittedShapesGroup.h"
34 #include "HYDROData_Region.h"
35 #include "HYDROData_Tool.h"
36 #include "HYDROData_GeomTool.h"
43 #include <TopoDS_Shell.hxx>
44 #include <TopoDS_Edge.hxx>
46 #include <BRep_Builder.hxx>
47 #include <BRepBuilderAPI_Sewing.hxx>
48 #include <BRepTopAdaptor_FClass2d.hxx>
50 #include <BRepTools.hxx>
53 #include <TopExp_Explorer.hxx>
55 #include <TopTools_ListOfShape.hxx>
56 #include <TopTools_ListIteratorOfListOfShape.hxx>
57 #include <TDataStd_Integer.hxx>
59 //#define DEB_CALCULATION 1
60 #ifdef DEB_CALCULATION
61 #include <BRepTools.hxx>
62 #include <TopLoc_Location.hxx>
64 #define CALCULATION_REGIONS_PREF GetName() + "_Reg"
65 #define CALCULATION_ZONES_PREF GetName() + "_Zone"
66 #define CALCULATION_LANDCOVER_ZONES_PREF GetName() + "_LandCoverZone"
67 #define CALCULATION_GROUPS_PREF GetName() + "_"
68 //#define DEB_CLASS2D 1
70 #include <BRepBuilderAPI_MakeVertex.hxx>
74 #pragma warning ( default: 4251 )
77 #define EXPORT_NAME "HYDRO_" + GetName()
79 #include <SALOME_NamingService.hxx>
80 #include <SALOME_LifeCycleCORBA.hxx>
83 #include "HYDRO_trace.hxx"
85 IMPLEMENT_STANDARD_HANDLE(HYDROData_CalculationCase, HYDROData_Entity)
86 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_CalculationCase, HYDROData_Entity)
88 HYDROData_CalculationCase::HYDROData_CalculationCase()
89 : HYDROData_Entity( Geom_2d_and_groups )
93 HYDROData_CalculationCase::~HYDROData_CalculationCase()
97 void HYDROData_CalculationCase::SetName( const QString& theName )
99 QString anOldCaseName = GetName();
100 if ( anOldCaseName != theName )
102 // Update names of regions and its zones
103 UpdateRegionsNames( GetRegions( false ), anOldCaseName, theName );
104 // Update names of land cover regions and its zones
105 UpdateRegionsNames( GetRegions( true ), anOldCaseName, theName );
107 HYDROData_SequenceOfObjects aGroups = GetSplittedGroups();
109 HYDROData_SequenceOfObjects::Iterator anIter;
110 anIter.Init( aGroups );
111 for ( ; anIter.More(); anIter.Next() )
113 Handle(HYDROData_SplittedShapesGroup) aGroup =
114 Handle(HYDROData_SplittedShapesGroup)::DownCast( anIter.Value() );
115 if ( aGroup.IsNull() )
118 HYDROData_Tool::UpdateChildObjectName( anOldCaseName, theName, aGroup );
122 HYDROData_Entity::SetName( theName );
125 QStringList HYDROData_CalculationCase::DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const
127 QStringList aResList = dumpObjectCreation( theTreatedObjects );
128 aResList.prepend( "# Calculation case" );
130 QString aCalculName = GetObjPyName();
132 AssignmentMode aMode = GetAssignmentMode();
133 QString aModeStr = aMode==MANUAL ? "HYDROData_CalculationCase.MANUAL" : "HYDROData_CalculationCase.AUTOMATIC";
134 aResList << QString( "%0.SetAssignmentMode( %1 )" ).arg( aCalculName ).arg( aModeStr );
136 AssignmentMode aModeLC = GetAssignmentLandCoverMode();
137 QString aModeLCStr = aModeLC==MANUAL ? "HYDROData_CalculationCase.MANUAL" : "HYDROData_CalculationCase.AUTOMATIC";
138 aResList << QString( "%0.SetAssignmentLandCoverMode( %1 )" ).arg( aCalculName ).arg( aModeLCStr );
140 HYDROData_SequenceOfObjects aGeomObjects = GetGeometryObjects();
141 HYDROData_SequenceOfObjects::Iterator anIter( aGeomObjects );
142 for ( ; anIter.More(); anIter.Next() )
144 Handle(HYDROData_Object) aRefGeomObj =
145 Handle(HYDROData_Object)::DownCast( anIter.Value() );
146 setPythonReferenceObject( theTreatedObjects, aResList, aRefGeomObj, "AddGeometryObject" );
148 aResList << QString( "" );
150 QString aGroupName = HYDROData_Tool::GenerateNameForPython( theTreatedObjects, "case_geom_group" );
152 HYDROData_SequenceOfObjects aGeomGroups = GetGeometryGroups();
153 anIter.Init( aGeomGroups );
154 for ( ; anIter.More(); anIter.Next() )
156 Handle(HYDROData_ShapesGroup) aGeomGroup =
157 Handle(HYDROData_ShapesGroup)::DownCast( anIter.Value() );
158 if ( aGeomGroup.IsNull() )
161 Handle(HYDROData_Object) aFatherGeom =
162 Handle(HYDROData_Object)::DownCast( aGeomGroup->GetFatherObject() );
163 if ( aFatherGeom.IsNull() )
166 int aGroupId = aFatherGeom->GetGroupId( aGeomGroup );
167 aResList << QString( "%1 = %2.GetGroup( %3 );" )
168 .arg( aGroupName ).arg( aFatherGeom->GetObjPyName() ).arg( aGroupId );
170 aResList << QString( "%1.AddGeometryGroup( %2 );" ).arg( aCalculName ).arg( aGroupName );
173 Handle(HYDROData_PolylineXY) aBoundaryPolyline = GetBoundaryPolyline();
174 setPythonReferenceObject( theTreatedObjects, aResList, aBoundaryPolyline, "SetBoundaryPolyline" );
176 if( aMode==AUTOMATIC )
177 DumpRulesToPython( aCalculName, aResList );
178 if( aModeLC==AUTOMATIC )
179 DumpLandCoverRulesToPython( aCalculName, aResList );
181 aResList << QString( "" );
182 aResList << "# Start the algorithm of the partition and assignment";
183 aResList << QString( "%1.Update();" ).arg( aCalculName );
187 // Now we restore the
188 // - regions and zones order
189 DumpRegionsToPython( aResList, theTreatedObjects, GetRegions( false ) );
192 if( aModeLC==MANUAL )
194 // Now we restore the
195 // - land cover regions and zones order
196 DumpRegionsToPython( aResList, theTreatedObjects, GetRegions( true ) );
199 // Export calculation case
200 aResList << QString( "" );
201 aResList << "# Export of the calculation case";
202 QString aStudyName = "theStudy";
203 QString anEntryVar = aCalculName + "_entry";
204 aResList << QString( "%1 = %2.Export( %3._get_StudyId() )" ).arg( anEntryVar ).arg( aCalculName ).arg( aStudyName );
206 // Get geometry object and print debug information
208 aResList << "# Get geometry shape and print debug information";
209 aResList << "import GEOM";
210 aResList << QString( "print \"Entry:\", %1" ).arg( anEntryVar );
211 QString aGeomShapeName = aCalculName + "_geom";
212 aResList << QString( "%1 = salome.IDToObject( str( %2 ) )" ).arg( aGeomShapeName ).arg( anEntryVar );
213 aResList << QString( "print \"Geom shape:\", %1" ).arg( aGeomShapeName );
214 aResList << QString( "print \"Geom shape name:\", %1.GetName()" ).arg( aGeomShapeName );
216 DumpSampleMeshing( aResList, aStudyName, aGeomShapeName, aCalculName+"_mesh" );
218 aResList << QString( "" );
222 void HYDROData_CalculationCase::DumpSampleMeshing( QStringList& theResList,
223 const QString& theStudyName,
224 const QString& theGeomShapeName,
225 const QString& theMeshName ) const
228 theResList << "# Meshing";
229 theResList << "import SMESH, SALOMEDS";
230 theResList << "from salome.smesh import smeshBuilder";
231 theResList << "from salome.geom import geomBuilder";
233 theResList << QString( "smesh = smeshBuilder.New( %1 )" ).arg( theStudyName );
234 theResList << QString( "%1 = smesh.Mesh( %2 )" ).arg( theMeshName ).arg( theGeomShapeName );
235 theResList << QString( "MEFISTO_2D = %1.Triangle( algo=smeshBuilder.MEFISTO )" ).arg( theMeshName );
236 theResList << "Max_Element_Area_1 = MEFISTO_2D.MaxElementArea( 10 )";
237 theResList << QString( "Regular_1D = %1.Segment()" ).arg( theMeshName );
238 theResList << "Max_Size_1 = Regular_1D.MaxSize(10)";
239 theResList << QString( "isDone = %1.Compute()" ).arg( theMeshName );
242 theResList << "# Set names of Mesh objects";
243 theResList << "smesh.SetName( MEFISTO_2D.GetAlgorithm(), 'MEFISTO_2D' )";
244 theResList << "smesh.SetName( Regular_1D.GetAlgorithm(), 'Regular_1D' )";
245 theResList << "smesh.SetName( Max_Size_1, 'Max Size_1' )";
246 theResList << "smesh.SetName( Max_Element_Area_1, 'Max. Element Area_1' )";
247 theResList << QString( "smesh.SetName( %1.GetMesh(), '%1' )" ).arg( theMeshName );
250 theResList << "# Greate SMESH groups";
251 theResList << QString( "geompy = geomBuilder.New( %1 )" ).arg( theStudyName );
252 theResList << QString( "geom_groups = geompy.GetGroups( %1 )" ).arg( theGeomShapeName );
253 theResList << QString( "for group in geom_groups:" );
254 theResList << QString( " smesh_group = %1.GroupOnGeom(group, group.GetName(), SMESH.EDGE)" )
256 theResList << QString( " smesh.SetName(smesh_group, group.GetName())" );
257 theResList << QString( " print \"SMESH group '%s': %s\" % (smesh_group.GetName(), smesh_group)" );
260 HYDROData_SequenceOfObjects HYDROData_CalculationCase::GetAllReferenceObjects() const
262 HYDROData_SequenceOfObjects aResSeq = HYDROData_Entity::GetAllReferenceObjects();
264 Handle(HYDROData_PolylineXY) aBoundaryPolyline = GetBoundaryPolyline();
265 if ( !aBoundaryPolyline.IsNull() )
266 aResSeq.Append( aBoundaryPolyline );
269 HYDROData_SequenceOfObjects aSeqOfRegions = GetRegions( false );
270 aResSeq.Append( aSeqOfRegions );
272 // Land cover regions
273 HYDROData_SequenceOfObjects aSeqOfLandCoverRegions = GetRegions( true );
274 aResSeq.Append( aSeqOfLandCoverRegions );
279 void HYDROData_CalculationCase::Update()
281 HYDROData_Entity::Update();
284 // At first we remove previously created objects
285 RemoveRegions( false );
286 RemoveRegions( true );
287 RemoveSplittedGroups();
289 Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
290 if ( aDocument.IsNull() )
294 HYDROData_SplitToZonesTool::SplitDataList aZonesList, anEdgesList;
296 Handle(HYDROData_PolylineXY) aBoundaryPolyline = GetBoundaryPolyline();
297 HYDROData_SequenceOfObjects aGeomObjects = GetGeometryObjects();
298 if ( !aGeomObjects.IsEmpty() ) {
299 HYDROData_SequenceOfObjects aGeomGroups = GetGeometryGroups();
301 HYDROData_SplitToZonesTool::SplitDataList aSplitObjects =
302 HYDROData_SplitToZonesTool::Split( aGeomObjects, aGeomGroups, aBoundaryPolyline );
303 if ( !aSplitObjects.isEmpty() ) {
304 HYDROData_SplitToZonesTool::SplitDataListIterator anIter( aSplitObjects );
305 while( anIter.hasNext() ) {
306 const HYDROData_SplitToZonesTool::SplitData& aSplitData = anIter.next();
307 if ( aSplitData.Type == HYDROData_SplitToZonesTool::SplitData::Data_Zone )
308 aZonesList.append( aSplitData );
309 else if ( aSplitData.Type == HYDROData_SplitToZonesTool::SplitData::Data_Edge )
310 anEdgesList.append( aSplitData );
315 // Split to land cover zones
316 HYDROData_SplitToZonesTool::SplitDataList aLandCoverZonesList;
318 HYDROData_SequenceOfObjects aLandCovers = GetLandCovers();
319 if ( !aLandCovers.IsEmpty() ) {
320 HYDROData_SplitToZonesTool::SplitDataList aSplitLandCoverObjects =
321 HYDROData_SplitToZonesTool::Split( aLandCovers );
322 if ( !aSplitLandCoverObjects.isEmpty() ) {
323 HYDROData_SplitToZonesTool::SplitDataListIterator anIter( aSplitLandCoverObjects );
324 while( anIter.hasNext() ) {
325 const HYDROData_SplitToZonesTool::SplitData& aSplitData = anIter.next();
326 if ( aSplitData.Type == HYDROData_SplitToZonesTool::SplitData::Data_Zone )
327 aLandCoverZonesList.append( aSplitData );
332 switch( GetAssignmentMode() )
335 CreateRegionsDef( aDocument, aZonesList, false );
338 CreateRegionsAuto( aDocument, aZonesList, false );
342 switch( GetAssignmentLandCoverMode() )
345 CreateRegionsDef( aDocument, aLandCoverZonesList, true );
348 CreateRegionsAuto( aDocument, aLandCoverZonesList, true );
352 CreateEdgeGroupsDef( aDocument, anEdgesList );
355 void HYDROData_CalculationCase::CreateRegionsDef( const Handle(HYDROData_Document)& theDoc,
356 const HYDROData_SplitToZonesTool::SplitDataList& theZones,
357 const bool theLandCover )
359 // Create result regions for case, by default one zone for one region
360 QString aRegsPref = CALCULATION_REGIONS_PREF;
361 QString aZonesPref = theLandCover ? CALCULATION_LANDCOVER_ZONES_PREF : CALCULATION_ZONES_PREF;
363 HYDROData_SplitToZonesTool::SplitDataListIterator anIter( theZones );
364 while( anIter.hasNext() )
366 const HYDROData_SplitToZonesTool::SplitData& aSplitData = anIter.next();
368 Handle(HYDROData_Region) aRegion = addNewRegion( theDoc, aRegsPref, theLandCover );
370 // Add the zone for region
371 Handle(HYDROData_Zone) aRegionZone = aRegion->addNewZone( theDoc, aZonesPref, aSplitData.Face(), aSplitData.ObjectNames );
375 void HYDROData_CalculationCase::CreateRegionsAuto( const Handle(HYDROData_Document)& theDoc,
376 const HYDROData_SplitToZonesTool::SplitDataList& theZones,
377 const bool theLandCover )
379 DEBTRACE("HYDROData_CalculationCase::CreateRegionsAuto");
380 QMap<QString, Handle(HYDROData_Region)> aRegionsMap; //object name to region
381 QMap<QString, QString> aRegionNameToObjNameMap;
382 QString aZonesPref = theLandCover ? CALCULATION_LANDCOVER_ZONES_PREF : CALCULATION_ZONES_PREF;
383 HYDROData_PriorityQueue aPr( this, theLandCover ? DataTag_CustomLandCoverRules : DataTag_CustomRules );
385 // 1. First we create a default region for each object included into the calculation case
386 HYDROData_SequenceOfObjects anObjects = theLandCover ? GetLandCovers() : GetGeometryObjects();
387 for( int i = anObjects.Lower(), n = anObjects.Upper(); i<=n; i++ )
389 Handle(HYDROData_Entity) anObj = anObjects.Value( i );
392 QString anObjName = anObj->GetName();
393 QString aRegName = anObjName + "_reg";
394 Handle(HYDROData_Region) aRegion = addNewRegion( theDoc, aRegName, theLandCover, false );
395 aRegionsMap.insert( anObjName, aRegion );
396 aRegionNameToObjNameMap.insert( aRegName, anObjName );
399 // 2. Now for each zone it is necessary to determine the most priority object
400 // and assign to zone to corresponding region
401 HYDROData_SplitToZonesTool::SplitDataListIterator anIter( theZones );
402 while( anIter.hasNext() )
404 const HYDROData_SplitToZonesTool::SplitData& aSplitData = anIter.next();
405 HYDROData_Zone::MergeType aMergeType;
406 Handle(HYDROData_Entity) aRegObj = aPr.GetMostPriorityObject( aSplitData.ObjectNames, aMergeType );
407 if( aRegObj.IsNull() )
409 Handle(HYDROData_Region) aRegion = aRegionsMap[aRegObj->GetName()];
410 if( aRegion.IsNull() )
412 Handle(HYDROData_Zone) aRegionZone = aRegion->addNewZone( theDoc, aZonesPref, aSplitData.Face(), aSplitData.ObjectNames );
414 if( aSplitData.ObjectNames.count() > 1 && aMergeType==HYDROData_Zone::Merge_UNKNOWN )
416 qDebug( "Error in algorithm: unresolved conflicts" );
419 Handle(HYDROData_Entity) aMergeEntity = aRegObj;
420 if ( !theLandCover ) {
421 Handle(HYDROData_Object) aMergeObject = Handle(HYDROData_Object)::DownCast( aMergeEntity );
422 if ( !aMergeObject.IsNull() ) {
423 DEBTRACE("aMergeEntity " << aMergeEntity->GetName().toStdString());
424 aMergeEntity = aMergeObject->GetAltitudeObject();
430 case HYDROData_Zone::Merge_ZMIN:
431 case HYDROData_Zone::Merge_ZMAX:
432 aRegionZone->SetMergeType( aMergeType );
434 case HYDROData_Zone::Merge_Object:
435 aRegionZone->SetMergeType( aMergeType );
436 aRegionZone->RemoveMergeObject();
437 aRegionZone->SetMergeObject( aMergeEntity );
442 QStringList anObjectsWithEmptyRegions;
443 QMap<QString, Handle(HYDROData_Region)>::const_iterator
444 anIt = aRegionsMap.begin(), aLast = aRegionsMap.end();
445 for( ; anIt!=aLast; anIt++ )
447 Handle(HYDROData_Region) aRegion = anIt.value();
448 if( aRegion->GetZones().IsEmpty() )
450 QString aRegName = aRegion->GetName();
451 QString anObjName = aRegionNameToObjNameMap[aRegName];
452 anObjectsWithEmptyRegions.append( anObjName );
456 if( !anObjectsWithEmptyRegions.empty() )
458 QString aData = anObjectsWithEmptyRegions.join( ", " );
459 SetWarning( WARN_EMPTY_REGIONS, aData );
463 void HYDROData_CalculationCase::CreateEdgeGroupsDef( const Handle(HYDROData_Document)& theDoc,
464 const HYDROData_SplitToZonesTool::SplitDataList& theEdges )
466 QMap<QString,Handle(HYDROData_SplittedShapesGroup)> aSplittedEdgesGroupsMap;
468 HYDROData_SplitToZonesTool::SplitDataListIterator anIter( theEdges );
469 while( anIter.hasNext() )
471 const HYDROData_SplitToZonesTool::SplitData& aSplitData = anIter.next();
472 // Create new edges group
473 if ( aSplitData.ObjectNames.isEmpty() || aSplitData.Shape.IsNull() )
476 QString anObjName = aSplitData.ObjectNames.first();
477 if ( anObjName.isEmpty() )
479 #ifdef DEB_CALCULATION
480 QString aStr = aSplitData.ObjectNames.join(" ");
481 cout << " CCase: Names = "<<aStr.toStdString() << " size = " <<aSplitData.ObjectNames.size() <<endl;
483 Handle(HYDROData_SplittedShapesGroup) aSplittedGroup;
484 if ( !aSplittedEdgesGroupsMap.contains( anObjName ) )
486 aSplittedGroup = addNewSplittedGroup( CALCULATION_GROUPS_PREF + anObjName );
487 aSplittedEdgesGroupsMap.insert( anObjName, aSplittedGroup );
491 aSplittedGroup = aSplittedEdgesGroupsMap[ anObjName ];
493 if ( aSplittedGroup.IsNull() )
496 aSplittedGroup->AddShape( aSplitData.Shape );
500 bool HYDROData_CalculationCase::AddGeometryObject( const Handle(HYDROData_Object)& theObject )
502 if ( !HYDROData_Tool::IsGeometryObject( theObject ) )
503 return false; // Wrong type of object
505 if ( HasReference( theObject, DataTag_GeometryObject ) )
506 return false; // Object is already in reference list
508 AddReferenceObject( theObject, DataTag_GeometryObject );
510 // Indicate model of the need to update splitting
516 HYDROData_SequenceOfObjects HYDROData_CalculationCase::GetGeometryObjects() const
518 return GetReferenceObjects( DataTag_GeometryObject );
521 void HYDROData_CalculationCase::RemoveGeometryObject( const Handle(HYDROData_Object)& theObject )
523 if ( theObject.IsNull() )
526 RemoveReferenceObject( theObject->Label(), DataTag_GeometryObject );
528 // Indicate model of the need to update splitting
532 void HYDROData_CalculationCase::RemoveGeometryObjects()
534 ClearReferenceObjects( DataTag_GeometryObject );
536 // Indicate model of the need to update splitting
540 bool HYDROData_CalculationCase::AddGeometryGroup( const Handle(HYDROData_ShapesGroup)& theGroup )
542 if ( theGroup.IsNull() )
545 if ( HasReference( theGroup, DataTag_GeometryGroup ) )
546 return false; // Object is already in reference list
548 AddReferenceObject( theGroup, DataTag_GeometryGroup );
550 // Indicate model of the need to update splitting
551 Changed( Geom_Groups );
556 HYDROData_SequenceOfObjects HYDROData_CalculationCase::GetGeometryGroups() const
558 return GetReferenceObjects( DataTag_GeometryGroup );
561 void HYDROData_CalculationCase::RemoveGeometryGroup( const Handle(HYDROData_ShapesGroup)& theGroup )
563 if ( theGroup.IsNull() )
566 RemoveReferenceObject( theGroup->Label(), DataTag_GeometryGroup );
568 // Indicate model of the need to update splitting
569 Changed( Geom_Groups );
572 void HYDROData_CalculationCase::RemoveGeometryGroups()
574 ClearReferenceObjects( DataTag_GeometryGroup );
576 // Indicate model of the need to update splitting
577 Changed( Geom_Groups );
580 void HYDROData_CalculationCase::SetBoundaryPolyline( const Handle(HYDROData_PolylineXY)& thePolyline )
582 Handle(HYDROData_PolylineXY) aPrevPolyline = GetBoundaryPolyline();
584 SetReferenceObject( thePolyline, DataTag_Polyline );
586 // Indicate model of the need to update zones splitting
587 if( !IsEqual( aPrevPolyline, thePolyline ) )
591 Handle(HYDROData_PolylineXY) HYDROData_CalculationCase::GetBoundaryPolyline() const
593 return Handle(HYDROData_PolylineXY)::DownCast(
594 GetReferenceObject( DataTag_Polyline ) );
597 void HYDROData_CalculationCase::RemoveBoundaryPolyline()
599 Handle(HYDROData_PolylineXY) aPrevPolyline = GetBoundaryPolyline();
601 ClearReferenceObjects( DataTag_Polyline );
603 // Indicate model of the need to update zones splitting
607 void HYDROData_CalculationCase::SetStricklerTable( const Handle(HYDROData_StricklerTable)& theStricklerTable )
609 Handle(HYDROData_StricklerTable) aPrevStricklerTable = GetStricklerTable();
611 SetReferenceObject( theStricklerTable, DataTag_StricklerTable );
613 // Indicate model of the need to update land covers partition
614 if( !IsEqual( aPrevStricklerTable, theStricklerTable ) )
618 Handle(HYDROData_StricklerTable) HYDROData_CalculationCase::GetStricklerTable() const
620 return Handle(HYDROData_StricklerTable)::DownCast(
621 GetReferenceObject( DataTag_StricklerTable ) );
624 void HYDROData_CalculationCase::RemoveStricklerTable()
626 Handle(HYDROData_StricklerTable) aPrevStricklerTable = GetStricklerTable();
628 ClearReferenceObjects( DataTag_StricklerTable );
630 // Indicate model of the need to update land covers partition
634 bool HYDROData_CalculationCase::AddLandCover( const Handle(HYDROData_LandCover)& theLandCover )
636 if ( HasReference( theLandCover, DataTag_LandCover ) )
637 return false; // Land cover is already in reference list
639 AddReferenceObject( theLandCover, DataTag_LandCover );
641 // Indicate model of the need to update land covers partition
647 HYDROData_SequenceOfObjects HYDROData_CalculationCase::GetLandCovers() const
649 return GetReferenceObjects( DataTag_LandCover );
652 void HYDROData_CalculationCase::RemoveLandCover( const Handle(HYDROData_LandCover)& theLandCover )
654 if ( theLandCover.IsNull() )
657 RemoveReferenceObject( theLandCover->Label(), DataTag_LandCover );
659 // Indicate model of the need to update land cover partition
663 void HYDROData_CalculationCase::RemoveLandCovers()
665 ClearReferenceObjects( DataTag_LandCover );
667 // Indicate model of the need to update land cover partition
671 Handle(HYDROData_Region) HYDROData_CalculationCase::AddNewRegion( const Handle(HYDROData_Zone)& theZone,
672 const bool theLandCover )
674 Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
675 Handle(HYDROData_Region) aNewRegion = addNewRegion( aDocument, CALCULATION_REGIONS_PREF, theLandCover );
676 if ( aNewRegion.IsNull() )
679 aNewRegion->AddZone( theZone );
684 bool HYDROData_CalculationCase::AddRegion( const Handle(HYDROData_Region)& theRegion,
685 const bool theLandCover )
687 Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
689 if ( theRegion.IsNull() )
692 HYDROData_CalculationCase::DataTag aDataTag =
693 theLandCover ? DataTag_LandCoverRegion : DataTag_Region;
695 if ( HasReference( theRegion, aDataTag ) )
696 return false; // Object is already in reference list
698 // Move the region from other calculation
699 Handle(HYDROData_CalculationCase) aFatherCalc =
700 Handle(HYDROData_CalculationCase)::DownCast( theRegion->GetFatherObject() );
701 if ( !aFatherCalc.IsNull() && aFatherCalc->Label() != myLab )
703 Handle(HYDROData_Region) aNewRegion = addNewRegion( aDocument, CALCULATION_REGIONS_PREF, theLandCover );
704 theRegion->CopyTo( aNewRegion, true );
706 aFatherCalc->RemoveRegion( theRegion, theLandCover );
708 theRegion->SetLabel( aNewRegion->Label() );
712 AddReferenceObject( theRegion, aDataTag );
718 HYDROData_SequenceOfObjects HYDROData_CalculationCase::GetRegions( const bool theLandCover ) const
720 return GetReferenceObjects( theLandCover ? DataTag_LandCoverRegion : DataTag_Region );
723 void HYDROData_CalculationCase::UpdateRegionsOrder()
725 Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
726 if ( aDocument.IsNull() )
729 HYDROData_SequenceOfObjects aRegions = GetRegions( false );
730 HYDROData_SequenceOfObjects aRegionsLC = GetRegions( true );
731 aRegions.Append( aRegionsLC );
733 HYDROData_SequenceOfObjects::Iterator anIter( aRegions );
734 for ( ; anIter.More(); anIter.Next() )
736 Handle(HYDROData_Region) aRegion =
737 Handle(HYDROData_Region)::DownCast( anIter.Value() );
738 if ( aRegion.IsNull() )
741 aRegion->SetName( "" );
744 QString aRegsPref = CALCULATION_REGIONS_PREF;
746 anIter.Init( aRegions );
747 for ( ; anIter.More(); anIter.Next() )
749 Handle(HYDROData_Region) aRegion =
750 Handle(HYDROData_Region)::DownCast( anIter.Value() );
751 if ( aRegion.IsNull() )
754 QString aRegionName = HYDROData_Tool::GenerateObjectName( aDocument, aRegsPref );
755 aRegion->SetName( aRegionName );
759 void HYDROData_CalculationCase::RemoveRegion( const Handle(HYDROData_Region)& theRegion,
760 const bool theLandCover )
762 if ( theRegion.IsNull() )
765 HYDROData_CalculationCase::DataTag aDataTag =
766 theLandCover ? DataTag_LandCoverRegion : DataTag_Region;
767 RemoveReferenceObject( theRegion->Label(), aDataTag );
769 // Remove region from data model
770 Handle(HYDROData_CalculationCase) aFatherCalc =
771 Handle(HYDROData_CalculationCase)::DownCast( theRegion->GetFatherObject() );
772 if ( !aFatherCalc.IsNull() && aFatherCalc->Label() == myLab )
776 void HYDROData_CalculationCase::RemoveRegions( const bool theLandCover )
778 myLab.FindChild( theLandCover ? DataTag_ChildLandCoverRegion : DataTag_ChildRegion ).ForgetAllAttributes();
781 HYDROData_SequenceOfObjects HYDROData_CalculationCase::GetSplittedGroups() const
783 return GetReferenceObjects( DataTag_SplittedGroups );
786 void HYDROData_CalculationCase::RemoveSplittedGroups()
788 myLab.FindChild( DataTag_SplittedGroups ).ForgetAllAttributes();
791 double HYDROData_CalculationCase::GetAltitudeForPoint( const gp_XY& thePoint ) const
793 Handle(HYDROData_Zone) aZone = GetZoneFromPoint( thePoint, false );
794 return GetAltitudeForPoint( thePoint, aZone );
797 double HYDROData_CalculationCase::GetAltitudeForPoint( const gp_XY& thePoint,
798 const Handle(HYDROData_Region)& theRegion ) const
800 double aResAltitude = HYDROData_IAltitudeObject::GetInvalidAltitude();
802 Handle(HYDROData_Zone) aZone = GetZoneFromPoint( thePoint, false );
803 if ( !aZone.IsNull() )
805 //DEBTRACE("GetAltitudeForPoint Region " << theRegion->GetName().toStdString() << " Zone " << aZone->GetName().toStdString());
806 Handle(HYDROData_Region) aRefRegion = Handle(HYDROData_Region)::DownCast( aZone->GetFatherObject() );
807 if ( IsEqual( aRefRegion, theRegion ) )
808 aResAltitude = GetAltitudeForPoint( thePoint, aZone );
811 DEBTRACE("GetAltitudeForPoint Region " << aRefRegion->GetName().toStdString() << " Zone " << aZone->GetName().toStdString() << " ---------------------------");
812 aResAltitude = GetAltitudeForPoint( thePoint, aZone );
817 DEBTRACE(" --- GetAltitudeForPoint No Zone ---");
823 double HYDROData_CalculationCase::GetAltitudeForPoint( const gp_XY& thePoint,
824 const Handle(HYDROData_Zone)& theZone ) const
826 //DEBTRACE("GetAltitudeForPoint Zone " << theZone->GetName().toStdString());
827 double aResAltitude = HYDROData_IAltitudeObject::GetInvalidAltitude();
828 if ( theZone.IsNull() )
830 DEBTRACE("Zone nulle");
834 HYDROData_Zone::MergeType aZoneMergeType = theZone->GetMergeType();
835 //DEBTRACE("aZoneMergeType " << aZoneMergeType);
836 if ( !theZone->IsMergingNeed() )
838 aZoneMergeType = HYDROData_Zone::Merge_UNKNOWN;
841 else if ( aZoneMergeType == HYDROData_Zone::Merge_UNKNOWN )
843 DEBTRACE("GetAltitudeForPoint Zone " << theZone->GetName().toStdString() << " Merge_UNKNOWN");
847 HYDROData_IInterpolator* aZoneInterpolator = theZone->GetInterpolator();
848 if ( aZoneMergeType == HYDROData_Zone::Merge_Object )
850 Handle(HYDROData_IAltitudeObject) aMergeAltitude =
851 Handle(HYDROData_IAltitudeObject)::DownCast( theZone->GetMergeObject() );
852 if ( !aMergeAltitude.IsNull() )
854 if ( aZoneInterpolator != NULL )
856 DEBTRACE("aZoneInterpolator != NULL");
857 aZoneInterpolator->SetAltitudeObject( aMergeAltitude );
858 aResAltitude = aZoneInterpolator->GetAltitudeForPoint( thePoint );
862 DEBTRACE("aZoneInterpolator == NULL");
863 aResAltitude = aMergeAltitude->GetAltitudeForPoint( thePoint );
869 //DEBTRACE("aZoneMergeType != HYDROData_Zone::Merge_Object");
870 HYDROData_SequenceOfObjects aZoneObjects = theZone->GetObjects();
871 HYDROData_SequenceOfObjects::Iterator anIter( aZoneObjects );
872 for ( ; anIter.More(); anIter.Next() )
874 Handle(HYDROData_Object) aZoneObj =
875 Handle(HYDROData_Object)::DownCast( anIter.Value() );
876 if ( aZoneObj.IsNull() )
879 Handle(HYDROData_IAltitudeObject) anObjAltitude = aZoneObj->GetAltitudeObject();
880 if ( anObjAltitude.IsNull() )
883 double aPointAltitude = 0.0;
884 if ( aZoneInterpolator != NULL )
886 DEBTRACE("aZoneInterpolator != NULL");
887 aZoneInterpolator->SetAltitudeObject( anObjAltitude );
888 aPointAltitude = aZoneInterpolator->GetAltitudeForPoint( thePoint );
892 //DEBTRACE("aZoneInterpolator == NULL");
893 aPointAltitude = anObjAltitude->GetAltitudeForPoint( thePoint );
896 if ( ValuesEquals( aPointAltitude, HYDROData_IAltitudeObject::GetInvalidAltitude() ) )
899 if ( aZoneMergeType == HYDROData_Zone::Merge_UNKNOWN )
901 aResAltitude = aPointAltitude;
904 else if ( aZoneMergeType == HYDROData_Zone::Merge_ZMIN )
906 if ( ValuesEquals( aResAltitude, HYDROData_IAltitudeObject::GetInvalidAltitude() ) ||
907 aResAltitude > aPointAltitude )
909 aResAltitude = aPointAltitude;
912 else if ( aZoneMergeType == HYDROData_Zone::Merge_ZMAX )
914 if ( ValuesEquals( aResAltitude, HYDROData_IAltitudeObject::GetInvalidAltitude() ) ||
915 aResAltitude < aPointAltitude )
917 aResAltitude = aPointAltitude;
926 NCollection_Sequence<double> HYDROData_CalculationCase::GetAltitudesForPoints(
927 const NCollection_Sequence<gp_XY>& thePoints,
928 const Handle(HYDROData_Region)& theRegion ) const
930 //DEBTRACE("HYDROData_CalculationCase::GetAltitudesForPoints " << theRegion->GetName().toStdString());
931 NCollection_Sequence<double> aResSeq;
933 for ( int i = 1, n = thePoints.Length(); i <= n; ++i )
935 const gp_XY& thePnt = thePoints.Value( i );
937 double anAltitude = GetAltitudeForPoint( thePnt, theRegion );
938 aResSeq.Append( anAltitude );
944 NCollection_Sequence<double> HYDROData_CalculationCase::GetAltitudesForPoints(
945 const NCollection_Sequence<gp_XY>& thePoints,
946 const Handle(HYDROData_Zone)& theZone ) const
948 NCollection_Sequence<double> aResSeq;
950 for ( int i = 1, n = thePoints.Length(); i <= n; ++i )
952 const gp_XY& thePnt = thePoints.Value( i );
954 double anAltitude = GetAltitudeForPoint( thePnt, theZone );
955 aResSeq.Append( anAltitude );
961 double HYDROData_CalculationCase::GetStricklerCoefficientForPoint( const gp_XY& thePoint ) const
964 Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
965 if ( !aDocument.IsNull() )
966 aCoeff = aDocument->GetDefaultStricklerCoefficient();
968 Handle(HYDROData_LandCover) aLandCover;
969 Handle(HYDROData_Zone) aZone = GetZoneFromPoint( thePoint, Standard_True );
970 if ( !aZone.IsNull() )
972 HYDROData_SequenceOfObjects anObjList = aZone->GetObjects();
973 if ( anObjList.Length() == 1 )
974 aLandCover = Handle(HYDROData_LandCover)::DownCast( anObjList.First() );
976 aLandCover = Handle(HYDROData_LandCover)::DownCast( aZone->GetMergeObject() );
979 if ( !aLandCover.IsNull() )
981 QString aType = aLandCover->GetStricklerType();
982 Handle(HYDROData_StricklerTable) aTable = GetStricklerTable();
983 if ( !aTable.IsNull() )
985 if ( aTable->GetTypes().contains( aType ) )
986 aCoeff = aTable->Get( aType, aCoeff );
993 Handle(HYDROData_Region) HYDROData_CalculationCase::GetRegionFromPoint( const gp_XY& thePoint,
994 const bool theLandCover ) const
996 Handle(HYDROData_Region) aResRegion;
998 Handle(HYDROData_Zone) aZone = GetZoneFromPoint( thePoint, theLandCover );
999 if ( !aZone.IsNull() )
1000 aResRegion = Handle(HYDROData_Region)::DownCast( aZone->GetFatherObject() );
1005 Handle(HYDROData_Zone) HYDROData_CalculationCase::GetZoneFromPoint( const gp_XY& thePoint,
1006 const bool theLandCover ) const
1008 Handle(HYDROData_Zone) aResZone;
1010 HYDROData_SequenceOfObjects aRegions = GetRegions( theLandCover );
1012 HYDROData_SequenceOfObjects::Iterator anIter( aRegions );
1013 for ( ; anIter.More() && aResZone.IsNull(); anIter.Next() )
1015 Handle(HYDROData_Region) aRegion =
1016 Handle(HYDROData_Region)::DownCast( anIter.Value() );
1017 if ( aRegion.IsNull() )
1020 HYDROData_SequenceOfObjects aZones = aRegion->GetZones();
1021 HYDROData_SequenceOfObjects::Iterator aZonesIter( aZones );
1022 for ( ; aZonesIter.More() && aResZone.IsNull(); aZonesIter.Next() )
1024 Handle(HYDROData_Zone) aRegZone =
1025 Handle(HYDROData_Zone)::DownCast( aZonesIter.Value() );
1026 if ( aRegZone.IsNull() )
1029 PointClassification aPointRelation = GetPointClassification( thePoint, aRegZone );
1030 if ( aPointRelation != POINT_OUT )
1031 aResZone = aRegZone; // We found the desired zone
1038 HYDROData_CalculationCase::PointClassification HYDROData_CalculationCase::GetPointClassification(
1039 const gp_XY& thePoint,
1040 const Handle(HYDROData_Zone)& theZone ) const
1042 PointClassification aRes = POINT_OUT;
1043 if ( theZone.IsNull() )
1046 TopoDS_Face aZoneFace = TopoDS::Face( theZone->GetShape() );
1047 if ( aZoneFace.IsNull() )
1050 TopoDS_Compound aCmp;
1052 aBB.MakeCompound(aCmp);
1053 aBB.Add(aCmp, aZoneFace);
1054 gp_Pnt aPnt (thePoint.X(), thePoint.Y(), 0.);
1055 BRepBuilderAPI_MakeVertex aMk(aPnt);
1056 aBB.Add(aCmp, aMk.Vertex());
1057 BRepTools::Write(aCmp, "FCL2d.brep");
1059 TopAbs_State State = HYDROData_Tool::ComputePointState(thePoint, aZoneFace);
1060 if (State == TopAbs_OUT)
1062 else if(State == TopAbs_IN)
1064 else if(State == TopAbs_ON)
1069 Handle(HYDROData_Region) HYDROData_CalculationCase::addNewRegion( const Handle(HYDROData_Document)& theDoc,
1070 const QString& thePrefixOrName,
1071 const bool theLandCover,
1074 TDF_Label aNewLab = myLab.FindChild( theLandCover ? DataTag_ChildLandCoverRegion : DataTag_ChildRegion ).NewChild();
1075 int aTag = aNewLab.Tag();
1077 Handle(HYDROData_Region) aNewRegion =
1078 Handle(HYDROData_Region)::DownCast( HYDROData_Iterator::CreateObject( aNewLab, KIND_REGION ) );
1079 AddRegion( aNewRegion, theLandCover );
1081 QString aRegionName = isPrefix ? HYDROData_Tool::GenerateObjectName( theDoc, thePrefixOrName ) : thePrefixOrName;
1082 aNewRegion->SetName( aRegionName );
1087 Handle(HYDROData_SplittedShapesGroup) HYDROData_CalculationCase::addNewSplittedGroup( const QString& theName )
1089 TDF_Label aNewLab = myLab.FindChild( DataTag_SplittedGroups ).NewChild();
1091 Handle(HYDROData_SplittedShapesGroup) aNewGroup =
1092 Handle(HYDROData_SplittedShapesGroup)::DownCast(
1093 HYDROData_Iterator::CreateObject( aNewLab, KIND_SPLITTED_GROUP ) );
1094 AddReferenceObject( aNewGroup, DataTag_SplittedGroups );
1096 aNewGroup->SetName( theName );
1101 QString HYDROData_CalculationCase::Export( int theStudyId ) const
1103 GEOM::GEOM_Gen_var aGEOMEngine = HYDROData_GeomTool::GetGeomGen();
1104 SALOMEDS::Study_var aDSStudy = HYDROData_GeomTool::GetStudyByID( theStudyId );
1106 QString aGeomObjEntry, anErrorMsg;
1107 bool isOK = Export( aGEOMEngine, aDSStudy, aGeomObjEntry, anErrorMsg );
1108 return isOK ? aGeomObjEntry : QString();
1111 bool HYDROData_CalculationCase::Export( GEOM::GEOM_Gen_var theGeomEngine,
1112 SALOMEDS::Study_ptr theStudy,
1113 QString& theGeomObjEntry,
1114 QString& theErrorMsg ) const
1116 HYDROData_ShapesGroup::SeqOfGroupsDefs aSeqOfGroupsDefs;
1118 // Get groups definitions
1119 HYDROData_SequenceOfObjects aSplittedGroups = GetSplittedGroups();
1121 HYDROData_SequenceOfObjects::Iterator anIter( aSplittedGroups );
1122 for ( ; anIter.More(); anIter.Next() )
1125 Handle(HYDROData_ShapesGroup) aGroup =
1126 Handle(HYDROData_ShapesGroup)::DownCast( anIter.Value() );
1127 if ( aGroup.IsNull() )
1130 HYDROData_ShapesGroup::GroupDefinition aGroupDef;
1132 aGroupDef.Name = aGroup->GetName().toLatin1().constData();
1133 aGroup->GetShapes( aGroupDef.Shapes );
1135 aSeqOfGroupsDefs.Append( aGroupDef );
1139 bool isAllNotSubmersible = true;
1140 TopTools_ListOfShape aFaces;
1141 HYDROData_SequenceOfObjects aCaseRegions = GetRegions( false );
1142 HYDROData_SequenceOfObjects::Iterator aRegionIter( aCaseRegions );
1143 for ( ; aRegionIter.More(); aRegionIter.Next() )
1145 Handle(HYDROData_Region) aRegion =
1146 Handle(HYDROData_Region)::DownCast( aRegionIter.Value() );
1147 if( aRegion.IsNull() || !aRegion->IsSubmersible() )
1150 if ( isAllNotSubmersible )
1151 isAllNotSubmersible = false;
1153 TopoDS_Shape aRegionShape = aRegion->GetShape( &aSeqOfGroupsDefs );
1154 aFaces.Append( aRegionShape );
1159 if ( aCaseRegions.IsEmpty() ) {
1160 theErrorMsg = QString("the list of regions is empty.");
1161 } else if ( isAllNotSubmersible ) {
1162 theErrorMsg = QString("there are no submersible regions.");
1164 aRes = Export( theGeomEngine, theStudy, aFaces, aSeqOfGroupsDefs, theGeomObjEntry );;
1170 bool HYDROData_CalculationCase::Export( GEOM::GEOM_Gen_var theGeomEngine,
1171 SALOMEDS::Study_ptr theStudy,
1172 const TopTools_ListOfShape& theFaces,
1173 const HYDROData_ShapesGroup::SeqOfGroupsDefs& theGroupsDefs,
1174 QString& theGeomObjEntry ) const
1177 BRepBuilderAPI_Sewing aSewing( Precision::Confusion() * 10.0 );
1178 aSewing.SetNonManifoldMode( Standard_False );
1179 #ifdef DEB_CALCULATION
1180 TCollection_AsciiString aNam("Sh_");
1183 TopTools_ListIteratorOfListOfShape aFaceIter( theFaces );
1184 for ( ; aFaceIter.More(); aFaceIter.Next() )
1186 TopoDS_Shape aShape = aFaceIter.Value();
1187 if ( aShape.IsNull() )
1190 if ( aShape.ShapeType() == TopAbs_FACE )
1192 aSewing.Add( aShape );
1193 #ifdef DEB_CALCULATION
1194 TCollection_AsciiString aName = aNam + ++i + ".brep";
1195 BRepTools::Write(aShape ,aName.ToCString());
1200 #ifdef DEB_CALCULATION
1203 TopExp_Explorer anExp( aShape, TopAbs_FACE );
1204 for (; anExp.More(); anExp.Next() ) {
1205 aSewing.Add( anExp.Current() );
1206 #ifdef DEB_CALCULATION
1208 TCollection_AsciiString aName = aNam + i + "_" + ++j + ".brep";
1209 BRepTools::Write(anExp.Current() ,aName.ToCString());
1216 TopoDS_Shape aSewedShape = aSewing.SewedShape();
1218 // If the sewed shape is empty - return false
1219 if ( aSewedShape.IsNull() || !TopoDS_Iterator( aSewedShape ).More() )
1222 #ifdef DEB_CALCULATION
1223 BRepTools::Write(aSewedShape ,"Sew.brep");
1225 // Publish the sewed shape
1226 QString aName = EXPORT_NAME;
1227 GEOM::GEOM_Object_ptr aMainShape =
1228 HYDROData_GeomTool::publishShapeInGEOM( theGeomEngine, theStudy, aSewedShape, aName, theGeomObjEntry );
1230 if ( aMainShape->_is_nil() )
1233 if ( theGroupsDefs.IsEmpty() )
1237 TopTools_IndexedMapOfShape aMapOfSubShapes;
1238 TopExp::MapShapes( aSewedShape, aMapOfSubShapes );
1240 NCollection_DataMap< TCollection_AsciiString, NCollection_Sequence<int> > aGroupsData;
1242 for ( int aGrId = 1, nbGroups = theGroupsDefs.Length(); aGrId <= nbGroups; ++aGrId )
1244 const HYDROData_ShapesGroup::GroupDefinition& aGroupDef = theGroupsDefs.Value( aGrId );
1246 NCollection_Sequence<int> aGroupIndexes;
1247 for( int i = 1, n = aGroupDef.Shapes.Length(); i <= n; i++ )
1249 const TopoDS_Shape& aShape = aGroupDef.Shapes.Value( i );
1250 #ifdef DEB_CALCULATION
1251 cout << "\nOld shape(" << i << ") = " << aShape.TShape() <<endl;
1254 TopoDS_Shape aModifiedShape = aShape;
1255 if ( aSewing.IsModified( aShape ) )
1256 aModifiedShape = aSewing.Modified( aShape );
1257 else if ( aSewing.IsModifiedSubShape( aShape ) )
1258 aModifiedShape = aSewing.ModifiedSubShape( aShape );
1260 #ifdef DEB_CALCULATION
1261 const TopLoc_Location& aL1 = aShape.Location();
1262 const TopLoc_Location& aL2 = aModifiedShape.Location();
1263 cout << "\nNew shape(" << i << ") = " << aModifiedShape.TShape() << " Location is Equal = " << aL1.IsEqual(aL2)<<endl;
1266 int anIndex = aMapOfSubShapes.FindIndex(aModifiedShape);
1267 if ( anIndex > 0 ) {
1268 aGroupIndexes.Append( anIndex );
1270 #ifdef DEB_CALCULATION
1271 TCollection_AsciiString aNam("Lost_");
1272 if(!aMapOfSubShapes.Contains(aModifiedShape)) {
1273 for ( int anIndex = 1; anIndex <= aMapOfSubShapes.Extent(); anIndex++ )
1275 const TopoDS_Shape& aS = aMapOfSubShapes.FindKey( anIndex );
1276 if ( aModifiedShape.IsPartner( aS ) )
1278 cout <<"\nIndex in Map = " << anIndex << "TShape = " << aS.TShape() <<endl;
1279 TCollection_AsciiString aName = aNam + i + "_" + anIndex + ".brep";
1280 BRepTools::Write(aS ,aName.ToCString());
1288 if ( !aGroupIndexes.IsEmpty() )
1289 aGroupsData.Bind( aGroupDef.Name, aGroupIndexes );
1292 if ( !aGroupsData.IsEmpty() )
1294 GEOM::GEOM_IGroupOperations_var aGroupOp =
1295 theGeomEngine->GetIGroupOperations( theStudy->StudyId() );
1297 NCollection_DataMap< TCollection_AsciiString, NCollection_Sequence<int> >::Iterator aMapIt( aGroupsData );
1298 for ( ; aMapIt.More(); aMapIt.Next() )
1300 const TCollection_AsciiString& aGroupName = aMapIt.Key();
1301 const NCollection_Sequence<int>& aGroupIndexes = aMapIt.Value();
1303 GEOM::GEOM_Object_var aGeomGroup = aGroupOp->CreateGroup( aMainShape, TopAbs_EDGE );
1304 if ( CORBA::is_nil( aGeomGroup ) || !aGroupOp->IsDone() )
1307 GEOM::ListOfLong_var aGeomIndexes = new GEOM::ListOfLong;
1308 aGeomIndexes->length( aGroupIndexes.Length() );
1310 for( int i = 1, n = aGroupIndexes.Length(); i <= n; i++ )
1311 aGeomIndexes[ i - 1 ] = aGroupIndexes.Value( i );
1313 aGroupOp->UnionIDs( aGeomGroup, aGeomIndexes );
1314 if ( aGroupOp->IsDone() )
1316 SALOMEDS::SObject_var aGroupSO =
1317 theGeomEngine->AddInStudy( theStudy, aGeomGroup, aGroupName.ToCString(), aMainShape );
1325 void HYDROData_CalculationCase::ClearRules( HYDROData_CalculationCase::DataTag theDataTag,
1326 const bool theIsSetToUpdate )
1328 TDF_Label aRulesLab = myLab.FindChild( theDataTag );
1329 HYDROData_PriorityQueue::ClearRules( aRulesLab );
1331 // Indicate model of the need to update splitting
1332 if ( theIsSetToUpdate ) {
1337 void HYDROData_CalculationCase::AddRule( const Handle(HYDROData_Entity)& theObject1,
1338 HYDROData_PriorityType thePriority,
1339 const Handle(HYDROData_Entity)& theObject2,
1340 HYDROData_Zone::MergeType theMergeType,
1341 HYDROData_CalculationCase::DataTag theDataTag )
1343 TDF_Label aRulesLab = myLab.FindChild( theDataTag );
1344 HYDROData_PriorityQueue::AddRule( aRulesLab, theObject1, thePriority, theObject2, theMergeType );
1346 // Indicate model of the need to update splitting
1350 QString HYDROData_CalculationCase::DumpRules() const
1352 TDF_Label aRulesLab = myLab.FindChild( DataTag_CustomRules );
1353 return HYDROData_PriorityQueue::DumpRules( aRulesLab );
1356 QString HYDROData_CalculationCase::DumpLandCoverRules() const
1358 TDF_Label aRulesLab = myLab.FindChild( DataTag_CustomLandCoverRules );
1359 return HYDROData_PriorityQueue::DumpRules( aRulesLab );
1362 void HYDROData_CalculationCase::SetAssignmentMode( AssignmentMode theMode )
1364 TDF_Label aModeLab = myLab.FindChild( DataTag_AssignmentMode );
1365 TDataStd_Integer::Set( aModeLab, ( int ) theMode );
1367 // Indicate model of the need to update splitting
1371 HYDROData_CalculationCase::AssignmentMode HYDROData_CalculationCase::GetAssignmentMode() const
1373 Handle(TDataStd_Integer) aModeAttr;
1374 bool isOK = myLab.FindChild( DataTag_AssignmentMode ).FindAttribute( TDataStd_Integer::GetID(), aModeAttr );
1376 return ( AssignmentMode ) aModeAttr->Get();
1381 void HYDROData_CalculationCase::DumpRulesToPython( const QString& theCalcCaseName,
1382 QStringList& theScript ) const
1384 TDF_Label aRulesLab = myLab.FindChild( DataTag_CustomRules );
1385 HYDROData_PriorityQueue::DumpRulesToPython( aRulesLab, theCalcCaseName, theScript );
1388 void HYDROData_CalculationCase::DumpLandCoverRulesToPython( const QString& theCalcCaseName,
1389 QStringList& theScript ) const
1391 TDF_Label aRulesLab = myLab.FindChild( DataTag_CustomLandCoverRules );
1392 HYDROData_PriorityQueue::DumpRulesToPython( aRulesLab, theCalcCaseName, theScript );
1395 HYDROData_Warning HYDROData_CalculationCase::GetLastWarning() const
1397 return myLastWarning;
1400 void HYDROData_CalculationCase::SetWarning( HYDROData_WarningType theType, const QString& theData )
1402 myLastWarning.Type = theType;
1403 myLastWarning.Data = theData;
1406 void HYDROData_CalculationCase::UpdateRegionsNames( const HYDROData_SequenceOfObjects& theRegions,
1407 const QString& theOldCaseName,
1408 const QString& theName )
1410 HYDROData_SequenceOfObjects::Iterator anIter( theRegions );
1411 for ( ; anIter.More(); anIter.Next() )
1413 Handle(HYDROData_Region) aRegion =
1414 Handle(HYDROData_Region)::DownCast( anIter.Value() );
1415 if ( aRegion.IsNull() )
1418 HYDROData_Tool::UpdateChildObjectName( theOldCaseName, theName, aRegion );
1420 HYDROData_SequenceOfObjects aZones = aRegion->GetZones();
1421 HYDROData_SequenceOfObjects::Iterator anIter( aZones );
1422 for ( ; anIter.More(); anIter.Next() )
1424 Handle(HYDROData_Zone) aRegZone =
1425 Handle(HYDROData_Zone)::DownCast( anIter.Value() );
1426 if ( aRegZone.IsNull() )
1429 HYDROData_Tool::UpdateChildObjectName( theOldCaseName, theName, aRegZone );
1434 void HYDROData_CalculationCase::DumpRegionsToPython( QStringList& theResList,
1435 MapOfTreatedObjects& theTreatedObjects,
1436 const HYDROData_SequenceOfObjects& theRegions ) const
1438 HYDROData_SequenceOfObjects::Iterator anIter;
1439 anIter.Init( theRegions );
1440 for ( ; anIter.More(); anIter.Next() )
1442 Handle(HYDROData_Region) aRegion =
1443 Handle(HYDROData_Region)::DownCast( anIter.Value() );
1444 if ( aRegion.IsNull() )
1447 theTreatedObjects.insert( aRegion->GetName(), aRegion );
1448 QStringList aRegDump = aRegion->DumpToPython( theTreatedObjects );
1449 theResList << aRegDump;
1453 bool HYDROData_CalculationCase::GetRule( int theIndex,
1454 Handle(HYDROData_Entity)& theObject1,
1455 HYDROData_PriorityType& thePriority,
1456 Handle(HYDROData_Entity)& theObject2,
1457 HYDROData_Zone::MergeType& theMergeType,
1458 HYDROData_CalculationCase::DataTag& theDataTag) const
1460 TDF_Label aRulesLab = myLab.FindChild( theDataTag );
1461 return HYDROData_PriorityQueue::GetRule( aRulesLab, theIndex,
1462 theObject1, thePriority, theObject2, theMergeType );
1465 void HYDROData_CalculationCase::SetAssignmentLandCoverMode( AssignmentMode theMode )
1467 TDF_Label aModeLab = myLab.FindChild( DataTag_AssignmentLandCoverMode );
1468 TDataStd_Integer::Set( aModeLab, ( int ) theMode );
1470 // Indicate model of the need to update land covers partition
1474 HYDROData_CalculationCase::AssignmentMode HYDROData_CalculationCase::GetAssignmentLandCoverMode() const
1476 Handle(TDataStd_Integer) aModeAttr;
1477 bool isOK = myLab.FindChild( DataTag_AssignmentLandCoverMode ).FindAttribute( TDataStd_Integer::GetID(), aModeAttr );
1479 return ( AssignmentMode ) aModeAttr->Get();