X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Region.cxx;h=090171f9e8b09619801de27ad7976baa15c1c306;hb=ad8562bab9992101430a6327aa7ca06c71f6d084;hp=3a1c59acfcf819ef7f0666576b45d9c4fe20640e;hpb=84f8b4a57d3cdad820bc1333a5066699cd1c8ae3;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Region.cxx b/src/HYDROData/HYDROData_Region.cxx index 3a1c59ac..090171f9 100644 --- a/src/HYDROData/HYDROData_Region.cxx +++ b/src/HYDROData/HYDROData_Region.cxx @@ -1,10 +1,23 @@ #include "HYDROData_Region.h" +#include "HYDROData_CalculationCase.h" #include "HYDROData_Document.h" #include "HYDROData_Iterator.h" #include "HYDROData_Zone.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + #include #define PYTHON_REGION_ID "KIND_REGION" @@ -14,6 +27,7 @@ IMPLEMENT_STANDARD_RTTIEXT(HYDROData_Region, HYDROData_Entity) HYDROData_Region::HYDROData_Region() + : HYDROData_Entity() { } @@ -25,7 +39,7 @@ QStringList HYDROData_Region::DumpToPython( MapOfTreatedObjects& theTreatedObjec { QStringList aResList; - Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( this ); + Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab ); if ( aDocument.IsNull() ) return aResList; @@ -52,50 +66,43 @@ QStringList HYDROData_Region::DumpToPython( MapOfTreatedObjects& theTreatedObjec return aResList; } -Handle(HYDROData_Zone) HYDROData_Region::AddNewZone() +void HYDROData_Region::Remove() { - TDF_Label aNewLab = myLab.FindChild( ChildTag_Zone ).NewChild(); - - return Handle(HYDROData_Zone)::DownCast( - HYDROData_Iterator::CreateObject( aNewLab, KIND_ZONE ) ); -} + Handle(HYDROData_CalculationCase) aFatherCalc = + Handle(HYDROData_CalculationCase)::DownCast( GetFatherObject() ); -void HYDROData_Region::RemoveChildZones() -{ - myLab.FindChild( ChildTag_Zone ).ForgetAllAttributes( true ); -} + HYDROData_Entity::Remove(); -int HYDROData_Region::NbZones() const -{ - return NbReferenceObjects( DataTag_Zone ); -} - -void HYDROData_Region::AddZone( const Handle(HYDROData_Zone)& theZone ) -{ - AddReferenceObject( theZone, DataTag_Zone ); + if ( !aFatherCalc.IsNull() ) + aFatherCalc->UpdateRegionsOrder(); } -void HYDROData_Region::SetZone( const int theIndex, - const Handle(HYDROData_Zone)& theZone ) +bool HYDROData_Region::AddZone( const Handle(HYDROData_Zone)& theZone ) { - SetReferenceObject( theZone, DataTag_Zone, theIndex ); -} + if ( theZone.IsNull() ) + return false; + + if ( HasReference( theZone, DataTag_Zone ) ) + return false; // Object is already in reference list + + // Move the zone from other region + Handle(HYDROData_Region) aFatherRegion = + Handle(HYDROData_Region)::DownCast( theZone->GetFatherObject() ); + if ( !aFatherRegion.IsNull() && aFatherRegion->Label() != myLab ) + { + Handle(HYDROData_Zone) aNewZone = addNewZone(); + theZone->CopyTo( aNewZone ); -void HYDROData_Region::InsertZone( const int theBeforeIndex, - const Handle(HYDROData_Zone)& theZone ) -{ - InsertReferenceObject( theZone, DataTag_Zone, theBeforeIndex ); -} + aFatherRegion->RemoveZone( theZone ); -void HYDROData_Region::SetZones( const HYDROData_SequenceOfObjects& theZones ) -{ - SetReferenceObjects( theZones, DataTag_Zone ); -} + theZone->SetLabel( aNewZone->Label() ); + } + else + { + AddReferenceObject( theZone, DataTag_Zone ); + } -Handle(HYDROData_Zone) HYDROData_Region::GetZone( const int theIndex ) const -{ - return Handle(HYDROData_Zone)::DownCast( - GetReferenceObject( DataTag_Zone, theIndex ) ); + return true; } HYDROData_SequenceOfObjects HYDROData_Region::GetZones() const @@ -109,16 +116,116 @@ void HYDROData_Region::RemoveZone( const Handle(HYDROData_Zone)& theZone ) return; RemoveReferenceObject( theZone->Label(), DataTag_Zone ); -} -void HYDROData_Region::RemoveZone( const int theIndex ) -{ - RemoveReferenceObject( DataTag_Zone, theIndex ); + // Remove zone from data model + Handle(HYDROData_Region) aFatherRegion = + Handle(HYDROData_Region)::DownCast( theZone->GetFatherObject() ); + if ( !aFatherRegion.IsNull() && aFatherRegion->Label() == myLab ) + theZone->Remove(); + + // If the last zone has been removed from region we remove this region + HYDROData_SequenceOfObjects aRefZones = GetZones(); + if ( aRefZones.IsEmpty() ) + Remove(); } void HYDROData_Region::RemoveZones() { ClearReferenceObjects( DataTag_Zone ); + myLab.FindChild( DataTag_ChildZone ).ForgetAllAttributes( true ); } +Handle(HYDROData_Zone) HYDROData_Region::addNewZone() +{ + TDF_Label aNewLab = myLab.FindChild( DataTag_ChildZone ).NewChild(); + + Handle(HYDROData_Zone) aNewZone = + Handle(HYDROData_Zone)::DownCast( HYDROData_Iterator::CreateObject( aNewLab, KIND_ZONE ) ); + AddZone( aNewZone ); + return aNewZone; +} + +TopoDS_Shape HYDROData_Region::GetShape() const +{ + TopoDS_Shape aResShape; + + // Unite the region zones (each zone is a face) into one face (united face) + // If the zones can't be united into the single face - unite them into shell + + // Collect the list of region faces + TopTools_ListOfShape aRegionFacesList; + + HYDROData_SequenceOfObjects aZones = GetZones(); + HYDROData_SequenceOfObjects::Iterator aZoneIter( aZones ); + for ( ; aZoneIter.More(); aZoneIter.Next() ) { + Handle(HYDROData_Zone) aZone = + Handle(HYDROData_Zone)::DownCast( aZoneIter.Value() ); + + if ( aZone.IsNull() ) { + continue; + } + + TopoDS_Face aFace = TopoDS::Face( aZone->GetShape() ); + if ( !aFace.IsNull() ) { + aRegionFacesList.Append( aFace ); + } + } // zones iterator + + // Check number of faces + int aNbFaces = aRegionFacesList.Extent(); + if ( aNbFaces > 0 ) { + // The unite region face + TopoDS_Face aRegionFace; + + if ( aNbFaces == 1 ) { + aRegionFace = TopoDS::Face( aRegionFacesList.First() ); + } else { + // Fuse faces into one + TopoDS_Shape aFuseShape; + TopTools_ListIteratorOfListOfShape aFaceIter( aRegionFacesList ); + for ( ; aFaceIter.More(); aFaceIter.Next() ) { + if ( aFuseShape.IsNull() ) { + aFuseShape = aFaceIter.Value(); + } else { + BRepAlgoAPI_Fuse aFuse(aFuseShape, aFaceIter.Value()); + if ( !aFuse.IsDone() ) { + aFuseShape.Nullify(); + break; + } + aFuseShape = aFuse.Shape(); + } + } // faces iterator + + // Check the result of fuse operation + if ( !aFuseShape.IsNull() ) { + ShapeUpgrade_UnifySameDomain anUnifier( aFuseShape ); + anUnifier.Build(); + TopoDS_Shape anUnitedShape = anUnifier.Shape(); + + TopTools_IndexedMapOfShape aMapOfFaces; + TopExp::MapShapes( anUnitedShape, TopAbs_FACE, aMapOfFaces ); + if ( aMapOfFaces.Extent() == 1 ) { + aRegionFace = TopoDS::Face( aMapOfFaces(1) ); + } + } + } + + if ( !aRegionFace.IsNull() ) { // result shape is a face + aResShape = aRegionFace; + } else { // result shape is a shell + TopoDS_Shell aShell; + BRep_Builder aBuilder; + aBuilder.MakeShell( aShell ); + + TopTools_ListIteratorOfListOfShape aFaceIter( aRegionFacesList ); + for ( ; aFaceIter.More(); aFaceIter.Next() ) { + aBuilder.Add( aShell, aFaceIter.Value() ); + } + + aResShape = aShell; + } + } + + return aResShape; +}