X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Tool.cxx;h=8867c8eafe999e2d99c20929d0a7eb6cd5400b2f;hb=81c9f5cdf82909d0aebd2c491c50fa7516cc80b7;hp=e507b9f778d4869dcc5e5620458a8082143a4048;hpb=9b2bfc45ba9bf3430d7fb6ed9bfe8352a91885a3;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Tool.cxx b/src/HYDROData/HYDROData_Tool.cxx index e507b9f7..8867c8ea 100644 --- a/src/HYDROData/HYDROData_Tool.cxx +++ b/src/HYDROData/HYDROData_Tool.cxx @@ -6,16 +6,21 @@ #include "HYDROData_Iterator.h" #include "HYDROData_NaturalObject.h" -#include - -#include - -#include - #include #include #include +#include +#include +#include +#include +#include +#include +#include +#include + +static int aMaxNameId = std::numeric_limits::max(); + void HYDROData_Tool::WriteStringsToFile( QFile& theFile, const QStringList& theStrings, const QString& theSep ) @@ -91,7 +96,7 @@ QString HYDROData_Tool::GenerateObjectName( const Handle(HYDROData_Document)& th aName = thePrefix; } else { int anId = 1; - while( anId < 1000 ) + while( anId < aMaxNameId ) { aName = QString( "%1_%2" ).arg( thePrefix ).arg( QString::number( anId++ ) ); @@ -104,62 +109,72 @@ QString HYDROData_Tool::GenerateObjectName( const Handle(HYDROData_Document)& th return aName; } -Handle(HYDROData_Entity) HYDROData_Tool::FindObjectByName( const Handle(HYDROData_Document)& theDoc, - const QString& theName, - const ObjectKind theObjectKind ) +bool HYDROData_Tool::IsGeometryObject( const Handle(HYDROData_Entity)& theObject ) { - Handle(HYDROData_Entity) anObject; - if ( theName.isEmpty() || theDoc.IsNull() ) - return anObject; - - QStringList aNamesList; - aNamesList << theName; - - HYDROData_SequenceOfObjects aSeqOfObjs = FindObjectsByNames( theDoc, aNamesList, theObjectKind ); - if( aSeqOfObjs.IsEmpty() ) - return anObject; + if ( theObject.IsNull() ) + return false; - anObject = aSeqOfObjs.First(); - return anObject; + return theObject->IsKind( STANDARD_TYPE(HYDROData_ArtificialObject) ) || + theObject->IsKind( STANDARD_TYPE(HYDROData_NaturalObject) ); } -HYDROData_SequenceOfObjects HYDROData_Tool::FindObjectsByNames( const Handle(HYDROData_Document)& theDoc, - const QStringList& theNames, - const ObjectKind theObjectKind ) +void HYDROData_Tool::UpdateChildObjectName( const QString& theOldStr, + const QString& theNewStr, + const Handle(HYDROData_Entity)& theObject ) { - HYDROData_SequenceOfObjects aResSeq; - if( theDoc.IsNull() ) - return aResSeq; + if ( theObject.IsNull() ) + return; - QStringList aNamesList = theNames; + QString anObjName = theObject->GetName(); + if ( theOldStr.isEmpty() ) + { + while ( anObjName.startsWith( '_' ) ) + anObjName.remove( 0, 1 ); - HYDROData_Iterator anIter( theDoc, theObjectKind ); - for( ; anIter.More(); anIter.Next() ) + anObjName.prepend( theNewStr + "_" ); + } + else if ( anObjName.startsWith( theOldStr ) ) { - Handle(HYDROData_Entity) anObject = anIter.Current(); - if( anObject.IsNull() ) - continue; + anObjName.replace( 0, theOldStr.length(), theNewStr ); + } + else + return; - QString anObjName = anObject->GetName(); - if ( anObjName.isEmpty() || !aNamesList.contains( anObjName ) ) - continue; + theObject->SetName( anObjName ); +} - aResSeq.Append( anObject ); +QString HYDROData_Tool::GenerateNameForPython( const MapOfTreatedObjects& theTreatedObjects, + const QString& thePrefix ) +{ + QString aName = thePrefix; + if ( !theTreatedObjects.contains( aName ) ) + return aName; - aNamesList.removeAll( anObjName ); - if ( aNamesList.isEmpty() ) + int anId = 1; + while( anId < aMaxNameId ) + { + aName = QString( "%1_%2" ).arg( thePrefix ).arg( QString::number( anId++ ) ); + + // check that there are no other objects with the same name + if ( !theTreatedObjects.contains( aName ) ) break; } - return aResSeq; + return aName; } - -bool HYDROData_Tool::IsGeometryObject( const Handle(HYDROData_Entity)& theObject ) +//====================================================================================================== +TopAbs_State HYDROData_Tool::ComputePointState( const gp_XY& theXY, const TopoDS_Face& theFace ) { - if ( theObject.IsNull() ) - return false; - - return theObject->IsKind( STANDARD_TYPE(HYDROData_ArtificialObject) ) || - theObject->IsKind( STANDARD_TYPE(HYDROData_NaturalObject) ); -} - + TopAbs_State aState(TopAbs_UNKNOWN); + if(theFace.IsNull()) return aState; + Standard_Real aTol = BRep_Tool::Tolerance(theFace); + BRepAdaptor_Surface Ads ( theFace, Standard_False ); + Standard_Real toluv = Min ( Ads.UResolution(aTol), Ads.VResolution(aTol) ); + const gp_Pln& aPlane = Ads.Surface().Plane(); + gp_Pnt aPnt(theXY.X(), theXY.Y(), 0.); + Standard_Real aU1, aV1; + ElSLib::Parameters(aPlane,aPnt, aU1, aV1); + BRepTopAdaptor_FClass2d aClassifier( theFace, toluv ); + aState = aClassifier.Perform( gp_Pnt2d(aU1, aV1), Standard_False ); + return aState; +} \ No newline at end of file