X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROPy%2FHYDROData_CalculationCase.sip;h=dac4e0d40f026c2e4ad101f581c3cebfb3b1dc6d;hb=5c4e50dc9c57c22ea5d7422ca12ce95e45010950;hp=6bcfe0d244d1619abc0de70860e02217b9d7402f;hpb=9d657ba909dc1123967fae5790115866b406197c;p=modules%2Fhydro.git diff --git a/src/HYDROPy/HYDROData_CalculationCase.sip b/src/HYDROPy/HYDROData_CalculationCase.sip index 6bcfe0d2..dac4e0d4 100644 --- a/src/HYDROPy/HYDROData_CalculationCase.sip +++ b/src/HYDROPy/HYDROData_CalculationCase.sip @@ -1,12 +1,8 @@ -// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE -// -// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// +// Copyright (C) 2014-2015 EDF-R&D // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -66,11 +62,32 @@ public: AUTOMATIC, }; +public: + + enum DataTag + { + DataTag_First = 100, ///< first tag, to reserve + DataTag_GeometryObject, ///< reference geometry objects + DataTag_ChildRegion, ///< child regions + DataTag_Region, ///< reference regions + DataTag_Polyline, ///< reference boundary polyline + DataTag_GeometryGroup, ///< reference geometry groups + DataTag_SplitGroups, ///< reference split groups + DataTag_CustomRules, ///< custom rules + DataTag_AssignmentMode, ///< assignment mode + DataTag_StricklerTable, ///< reference Strickler table + DataTag_LandCover_Obsolete, ///< reference land covers + DataTag_CustomLandCoverRules_Obsolete, ///< custom rules for land covers priority + DataTag_AssignmentLandCoverMode_Obsolete, ///< assignment mode of land covers priority + DataTag_ChildLandCoverRegion_Obsolete, ///< child land cover regions + DataTag_LandCoverRegion_Obsolete ///< reference land cover regions + }; + public: /** * Add new one reference geometry object for calculation case. */ - bool AddGeometryObject( HYDROData_Object theObject ) [bool ( const Handle_HYDROData_Object& )]; + bool AddGeometryObject( HYDROData_Object theObject ) [bool ( const opencascade::handle& )]; %MethodCode Handle(HYDROData_Object) aRef = Handle(HYDROData_Object)::DownCast( createHandle( a0 ) ); @@ -91,7 +108,8 @@ public: /** * Removes reference geometry object from calculation case. */ - void RemoveGeometryObject( HYDROData_Object theObject ) [void ( const Handle_HYDROData_Object& )]; + void RemoveGeometryObject( HYDROData_Object theObject ) + [void ( const opencascade::handle& )]; %MethodCode Handle(HYDROData_Object) aRef = Handle(HYDROData_Object)::DownCast( createHandle( a0 ) ); @@ -116,7 +134,7 @@ public: /** * Add new one reference geometry group for calculation case. */ - bool AddGeometryGroup( HYDROData_ShapesGroup theGroup ) [bool ( const Handle_HYDROData_ShapesGroup& )]; + bool AddGeometryGroup( HYDROData_ShapesGroup theGroup ) [bool ( const opencascade::handle& )]; %MethodCode Handle(HYDROData_ShapesGroup) aRef = Handle(HYDROData_ShapesGroup)::DownCast( createHandle( a0 ) ); @@ -137,7 +155,7 @@ public: /** * Removes reference geometry group from calculation case. */ - void RemoveGeometryGroup( HYDROData_ShapesGroup theGroup ) [void ( const Handle_HYDROData_ShapesGroup& )]; + void RemoveGeometryGroup( HYDROData_ShapesGroup theGroup ) [void ( opencascade::handle& )]; %MethodCode Handle(HYDROData_ShapesGroup) aRef = Handle(HYDROData_ShapesGroup)::DownCast( createHandle( a0 ) ); @@ -158,11 +176,52 @@ public: */ void RemoveGeometryGroups(); + + /** + * Add new boundary polygon to calculation case. + */ + bool AddBoundaryPolygon( HYDROData_BCPolygon theObject ) [bool ( const opencascade::handle& )]; + %MethodCode + Handle(HYDROData_BCPolygon) aRef = + Handle(HYDROData_BCPolygon)::DownCast( createHandle( a0 ) ); + if ( !aRef.IsNull() ) + { + Py_BEGIN_ALLOW_THREADS + sipRes = sipSelfWasArg ? sipCpp->HYDROData_CalculationCase::AddBoundaryPolygon( aRef ): + sipCpp->AddBoundaryPolygon( aRef ); + Py_END_ALLOW_THREADS + } + %End + + /** + * Returns all boundary polygons of calculation case. + */ + HYDROData_SequenceOfObjects GetBoundaryPolygons() const; + + /** + * Removes boundary polygon from calculation case. + */ + void RemoveBoundaryPolygon( HYDROData_BCPolygon theObject ) + [void ( const opencascade::handle& )]; + %MethodCode + Handle(HYDROData_BCPolygon) aRef = + Handle(HYDROData_BCPolygon)::DownCast( createHandle( a0 ) ); + if ( !aRef.IsNull() ) + { + Py_BEGIN_ALLOW_THREADS + if ( sipSelfWasArg ) { + sipCpp->HYDROData_CalculationCase::RemoveBoundaryPolygon( aRef ); + } else { + sipCpp->RemoveBoundaryPolygon( aRef ); + } + Py_END_ALLOW_THREADS + } + %End /** * Sets reference boundary polyline object for calculation case. */ - void SetBoundaryPolyline( HYDROData_PolylineXY thePolyline ) [void ( const Handle_HYDROData_PolylineXY& )]; + void SetBoundaryPolyline( HYDROData_PolylineXY thePolyline ) [void ( opencascade::handle& )]; %MethodCode Handle(HYDROData_PolylineXY) aRef = Handle(HYDROData_PolylineXY)::DownCast( createHandle( a0 ) ); @@ -181,7 +240,7 @@ public: /** * Returns reference boundary polyline object of calculation case. */ - HYDROData_PolylineXY GetBoundaryPolyline() const [Handle_HYDROData_PolylineXY ()]; + HYDROData_PolylineXY GetBoundaryPolyline() const [opencascade::handle ()]; %MethodCode Handle(HYDROData_PolylineXY) aRef; @@ -197,7 +256,38 @@ public: * Remove reference boundary polyline object from calculation case. */ void RemoveBoundaryPolyline(); + + void SetLandCoverMap( HYDROData_LandCoverMap theLandCoverMap ) [void ( const opencascade::handle& )]; + %MethodCode + Handle(HYDROData_LandCoverMap) aRef = + Handle(HYDROData_LandCoverMap)::DownCast( createHandle( a0 ) ); + if ( !aRef.IsNull() ) + { + Py_BEGIN_ALLOW_THREADS + if ( sipSelfWasArg ) { + sipCpp->HYDROData_CalculationCase::SetLandCoverMap( aRef ); + } else { + sipCpp->SetLandCoverMap( aRef ); + } + Py_END_ALLOW_THREADS + } + %End + void SetStricklerTable( HYDROData_StricklerTable theStricklerTable ) [void ( const opencascade::handle& )]; + %MethodCode + Handle(HYDROData_StricklerTable) aRef = + Handle(HYDROData_StricklerTable)::DownCast( createHandle( a0 ) ); + if ( !aRef.IsNull() ) + { + Py_BEGIN_ALLOW_THREADS + if ( sipSelfWasArg ) { + sipCpp->HYDROData_CalculationCase::SetStricklerTable( aRef ); + } else { + sipCpp->SetStricklerTable( aRef ); + } + Py_END_ALLOW_THREADS + } + %End /** * Add new one child region for calculation case. @@ -205,7 +295,7 @@ public: * The label of theZone is changed during this operation * because of new region becomes the new parent for this zone. */ - HYDROData_Region AddNewRegion( HYDROData_Zone theZone ) [Handle_HYDROData_Region ( const Handle_HYDROData_Zone& )]; + HYDROData_Region AddNewRegion( HYDROData_Zone theZone ) [opencascade::handle ( opencascade::handle& )]; %MethodCode Handle(HYDROData_Zone) aRef = Handle(HYDROData_Zone)::DownCast( createHandle( a0 ) ); @@ -226,7 +316,7 @@ public: * Add new one reference region for calculation case. * The label of theRegion is changed in case if old parent is not this calculation. */ - bool AddRegion( HYDROData_Region theRegion ) [bool ( const Handle_HYDROData_Region& )]; + bool AddRegion( HYDROData_Region theRegion ) [bool ( opencascade::handle& )]; %MethodCode Handle(HYDROData_Region) aRef = Handle(HYDROData_Region)::DownCast( createHandle( a0 ) ); @@ -252,7 +342,7 @@ public: /** * Removes reference region from calculation case. */ - void RemoveRegion( HYDROData_Region theRegion ) [void ( const Handle_HYDROData_Region& )]; + void RemoveRegion( HYDROData_Region theRegion ) [void ( opencascade::handle& )]; %MethodCode Handle(HYDROData_Region) aRef = Handle(HYDROData_Region)::DownCast( createHandle( a0 ) ); @@ -277,12 +367,12 @@ public: /** * Returns all reference geometry groups of calculation case. */ - HYDROData_SequenceOfObjects GetSplittedGroups() const; + HYDROData_SequenceOfObjects GetSplitGroups() const; /** * Removes all reference geometry groups from calculation case. */ - void RemoveSplittedGroups(); + void RemoveSplitGroups(); /** @@ -299,6 +389,22 @@ public: public: // Public methods to work with Calculation services + /** + * Returns strickler coefficient for given point. + * \param thePoint the point to examine + * \return result strickler coefficient + */ + double GetStricklerCoefficientForPoint( const double theCoordX, + const double theCoordY ) const [double ( const gp_XY& ) ]; + %MethodCode + gp_XY aPnt( a0, a1 ); + + Py_BEGIN_ALLOW_THREADS + sipRes = sipSelfWasArg ? sipCpp->HYDROData_CalculationCase::GetStricklerCoefficientForPoint( aPnt ) : + sipCpp->GetStricklerCoefficientForPoint( aPnt ); + Py_END_ALLOW_THREADS + %End + /** * Returns altitude for given point. * \param thePoint the point to examine @@ -324,7 +430,7 @@ public: double GetAltitudeForPoint( const double theCoordX, const double theCoordY, HYDROData_Region theRegion ) const - [double ( const gp_XY&, const Handle_HYDROData_Region& )]; + [double ( const gp_XY&, opencascade::handle& )]; %MethodCode gp_XY aPnt( a0, a1 ); Handle(HYDROData_Region) aRefRegion = @@ -345,7 +451,7 @@ public: double GetAltitudeForPoint( const double theCoordX, const double theCoordY, HYDROData_Zone theZone ) const - [double ( const gp_XY&, const Handle_HYDROData_Zone& )]; + [double ( const gp_XY&, opencascade::handle& )]; %MethodCode gp_XY aPnt( a0, a1 ); Handle(HYDROData_Zone) aRefZone = @@ -365,8 +471,9 @@ public: */ NCollection_Sequence GetAltitudesForPoints( const NCollection_Sequence& theCoordsX, const NCollection_Sequence& theCoordsY, - HYDROData_Region theRegion ) const - [NCollection_Sequence ( const NCollection_Sequence&, const Handle_HYDROData_Region& )]; + HYDROData_Region theRegion, + int theMethod = 0) const + [NCollection_Sequence ( const NCollection_Sequence&, opencascade::handle&, int)]; %MethodCode NCollection_Sequence aPnts; @@ -380,16 +487,59 @@ public: Handle(HYDROData_Region) aRefRegion = Handle(HYDROData_Region)::DownCast( createHandle( a2 ) ); - + int aMethod = a3; + NCollection_Sequence aRes; Py_BEGIN_ALLOW_THREADS - aRes = sipSelfWasArg ? sipCpp->HYDROData_CalculationCase::GetAltitudesForPoints( aPnts, aRefRegion ) : - sipCpp->GetAltitudesForPoints( aPnts, aRefRegion ); + aRes = sipSelfWasArg ? sipCpp->HYDROData_CalculationCase::GetAltitudesForPoints( aPnts, aRefRegion, aMethod ) : + sipCpp->GetAltitudesForPoints( aPnts, aRefRegion, aMethod ); Py_END_ALLOW_THREADS sipRes = new NCollection_Sequence( aRes ); %End + std::vector GetStricklerCoefficientForPoints( const NCollection_Sequence& theCoordsX, + const NCollection_Sequence& theCoordsY, + double DefValue, + bool UseMax ) const + [std::vector ( const NCollection_Sequence&, double, bool)]; + %MethodCode + std::vector aPnts; + int aLen = qMin( a0->Length(), a1->Length() ); + for ( int i = 1; i <= aLen; ++i ) + { + gp_XY aPnt( a0->Value( i ), a1->Value( i ) ); + aPnts.push_back( aPnt ); + } + std::vector aRes; + Py_BEGIN_ALLOW_THREADS + aRes = sipSelfWasArg ? sipCpp->HYDROData_CalculationCase::GetStricklerCoefficientForPoints( aPnts, a2, a3 ) : + sipCpp->GetStricklerCoefficientForPoints( aPnts, a2, a3 ); + Py_END_ALLOW_THREADS + sipRes = new std::vector( aRes ); + %End + + + std::vector GetStricklerTypeForPoints( const NCollection_Sequence& theCoordsX, + const NCollection_Sequence& theCoordsY ) const + [std::vector( const NCollection_Sequence& )]; + %MethodCode + std::vector aPnts; + int aLen = qMin( a0->Length(), a1->Length() ); + for ( int i = 1; i <= aLen; ++i ) + { + gp_XY aPnt( a0->Value( i ), a1->Value( i ) ); + aPnts.push_back( aPnt ); + } + std::vector aRes; + Py_BEGIN_ALLOW_THREADS + aRes = sipSelfWasArg ? sipCpp->HYDROData_CalculationCase::GetStricklerTypeForPoints( aPnts ) : + sipCpp->GetStricklerTypeForPoints( aPnts ); + Py_END_ALLOW_THREADS + sipRes = new std::vector( aRes ); + %End + + /** * Returns altitudes for given points on given zone. * \param thePoints the points to examine @@ -398,8 +548,9 @@ public: */ NCollection_Sequence GetAltitudesForPoints( const NCollection_Sequence& theCoordsX, const NCollection_Sequence& theCoordsY, - HYDROData_Zone theZone ) const - [NCollection_Sequence ( const NCollection_Sequence&, const Handle_HYDROData_Zone& )]; + HYDROData_Zone theZone, + int theMethod = 0) const + [NCollection_Sequence ( const NCollection_Sequence&, opencascade::handle&, int )]; %MethodCode NCollection_Sequence aPnts; @@ -413,11 +564,12 @@ public: Handle(HYDROData_Zone) aRefZone = Handle(HYDROData_Zone)::DownCast( createHandle( a2 ) ); + int aMethod = a3; NCollection_Sequence aRes; Py_BEGIN_ALLOW_THREADS - aRes = sipSelfWasArg ? sipCpp->HYDROData_CalculationCase::GetAltitudesForPoints( aPnts, aRefZone ) : - sipCpp->GetAltitudesForPoints( aPnts, aRefZone ); + aRes = sipSelfWasArg ? sipCpp->HYDROData_CalculationCase::GetAltitudesForPoints( aPnts, aRefZone, aMethod ) : + sipCpp->GetAltitudesForPoints( aPnts, aRefZone, aMethod ); Py_END_ALLOW_THREADS sipRes = new NCollection_Sequence( aRes ); @@ -430,7 +582,7 @@ public: */ HYDROData_Region GetRegionFromPoint( const double theCoordX, const double theCoordY ) const - [Handle_HYDROData_Region ( const gp_XY& )]; + [opencascade::handle ( const gp_XY& )]; %MethodCode Handle(HYDROData_Region) aRes; @@ -451,7 +603,7 @@ public: */ HYDROData_Zone GetZoneFromPoint( const double theCoordX, const double theCoordY ) const - [Handle_HYDROData_Zone ( const gp_XY& )]; + [opencascade::handle ( const gp_XY& )]; %MethodCode Handle(HYDROData_Zone) aRes; @@ -474,7 +626,7 @@ public: PointClassification GetPointClassification( const double theCoordX, const double theCoordY, HYDROData_Zone theZone ) const - [PointClassification ( const gp_XY&, const Handle_HYDROData_Zone& )]; + [PointClassification ( const gp_XY&, opencascade::handle& )]; %MethodCode gp_XY aPnt( a0, a1 ); @@ -488,22 +640,21 @@ public: %End - void ClearRules(); + void ClearRules( HYDROData_CalculationCase::DataTag theDataTag ); - void AddRule( HYDROData_Object theObject1, + void AddRule( HYDROData_Entity theObject1, HYDROData_PriorityType thePriority, - HYDROData_Object theObject2, - HYDROData_Zone::MergeAltitudesType theMergeType ) - [void ( const Handle_HYDROData_Object&, HYDROData_PriorityType, const Handle_HYDROData_Object&, HYDROData_Zone::MergeAltitudesType )]; + HYDROData_Entity theObject2, + HYDROData_Zone::MergeType theMergeType, + HYDROData_CalculationCase::DataTag theDataTag ) + [void ( const opencascade::handle&, HYDROData_PriorityType, opencascade::handle&, HYDROData_Zone::MergeType, HYDROData_CalculationCase::DataTag )]; %MethodCode - Handle(HYDROData_Object) anObject1 = - Handle(HYDROData_Object)::DownCast( createHandle( a0 ) ); - Handle(HYDROData_Object) anObject2 = - Handle(HYDROData_Object)::DownCast( createHandle( a2 ) ); + Handle(HYDROData_Entity) anObject1 = createHandle( a0 ); + Handle(HYDROData_Entity) anObject2 = createHandle( a2 ); Py_BEGIN_ALLOW_THREADS - sipSelfWasArg ? sipCpp->HYDROData_CalculationCase::AddRule( anObject1, a1, anObject2, a3 ) : - sipCpp->AddRule( anObject1, a1, anObject2, a3 ); + sipSelfWasArg ? sipCpp->HYDROData_CalculationCase::AddRule( anObject1, a1, anObject2, a3, a4 ) : + sipCpp->AddRule( anObject1, a1, anObject2, a3, a4 ); Py_END_ALLOW_THREADS %End