Salome HOME
Dump to python corrected.
[modules/hydro.git] / src / HYDROData / HYDROData_Polyline3D.cxx
index 8bff09cb3301cb587b4de1b9c4e6dc684104e9d7..c8549930cf3ea682cb7b7e9ca7d898210d78911a 100644 (file)
@@ -1,9 +1,12 @@
 
 #include "HYDROData_Polyline3D.h"
 
+#include "HYDROData_IAltitudeObject.h"
 #include "HYDROData_Document.h"
 #include "HYDROData_PolylineXY.h"
+#include "HYDROData_Profile.h"
 #include "HYDROData_ProfileUZ.h"
+#include "HYDROData_Tool.h"
 
 #include <gp_Pnt2d.hxx>
 #include <gp_XY.hxx>
@@ -15,8 +18,6 @@
 #include <QColor>
 #include <QStringList>
 
-#define PYTHON_POLYLINE_ID "KIND_POLYLINE"
-
 IMPLEMENT_STANDARD_HANDLE(HYDROData_Polyline3D,HYDROData_Object)
 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_Polyline3D,HYDROData_Object)
 
@@ -32,21 +33,36 @@ HYDROData_Polyline3D::~HYDROData_Polyline3D()
 
 QStringList HYDROData_Polyline3D::DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const
 {
-  QStringList aResList;
+  QStringList aResList = dumpObjectCreation( theTreatedObjects );
+  QString aPolylineName = GetObjPyName();
 
-  Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
-  if ( aDocument.IsNull() )
-    return aResList;
+  Handle(HYDROData_PolylineXY) aRefPolyline = GetPolylineXY();
+  setPythonReferenceObject( theTreatedObjects, aResList, aRefPolyline, "SetPolylineXY" );
 
-  QString aDocName = aDocument->GetDocPyName();
-  QString aPolylineName = GetName();
+  Handle(HYDROData_ProfileUZ) aRefProfileUZ = GetProfileUZ();
+  if ( !aRefProfileUZ.IsNull() )
+  {
+    Handle(HYDROData_Profile) aProfile = 
+      Handle(HYDROData_Profile)::DownCast( aRefProfileUZ->GetFatherObject() );
+    if ( !aProfile.IsNull() )
+    {
+      QString aProfileName = aProfile->GetObjPyName();
+      if ( !aProfileName.isEmpty() )
+      {
+        aResList << QString( "%1.SetProfileUZ( %2.GetProfileUZ() );" )
+                     .arg( aPolylineName ).arg( aProfileName );
+      }
+    }
+  }
+  else
+  {
+    Handle(HYDROData_IAltitudeObject) aRefBathymetry = GetAltitudeObject();
+    setPythonReferenceObject( theTreatedObjects, aResList, aRefBathymetry, "SetAltitudeObject" );
+  }
 
-  aResList << QString( "%1 = %2.CreateObject( %3 );" )
-              .arg( aPolylineName ).arg( aDocName ).arg( PYTHON_POLYLINE_ID );
-  aResList << QString( "%1.SetName( \"%1\" );" ).arg( aPolylineName );
   aResList << QString( "" );
-
-  // TODO
+  aResList << QString( "%1.Update();" ).arg( aPolylineName );
+  aResList << QString( "" );
 
   return aResList;
 }
@@ -63,6 +79,10 @@ HYDROData_SequenceOfObjects HYDROData_Polyline3D::GetAllReferenceObjects() const
   if ( !aProfileUZ.IsNull() )
     aResSeq.Append( aProfileUZ );
 
+  Handle(HYDROData_ProfileUZ) aChildProfileUZ = GetChildProfileUZ( false );
+  if ( !aChildProfileUZ.IsNull() )
+    aResSeq.Append( aChildProfileUZ );
+
   return aResSeq;
 }
 
@@ -81,15 +101,26 @@ void HYDROData_Polyline3D::Update()
   HYDROData_Object::Update();
 
   Handle(HYDROData_PolylineXY) aPolylineXY = GetPolylineXY();
-  Handle(HYDROData_ProfileUZ) aProfileUZ = GetProfileUZ();
-  if ( aPolylineXY.IsNull() || aProfileUZ.IsNull() )
+  if ( aPolylineXY.IsNull() )
     return;
 
   bool anIsSectionClosed = aPolylineXY->IsClosedSection( 0 );
   HYDROData_IPolyline::SectionType aSectionType = aPolylineXY->GetSectionType( 0 );
   HYDROData_IPolyline::PointsList aPolylinePoints = aPolylineXY->GetPoints( 0 );
+  if ( aPolylinePoints.IsEmpty() )
+    return;
+
+  Handle(HYDROData_ProfileUZ) aProfileUZ = GetProfileUZ();
+
+  Handle(HYDROData_IAltitudeObject) anAltitude = GetAltitudeObject();
+  if ( !anAltitude.IsNull() )
+    aProfileUZ = GetChildProfileUZ();
+
+  if ( aProfileUZ.IsNull() )
+    return;
+
   HYDROData_IPolyline::PointsList aProfilePoints = aProfileUZ->GetPoints();
-  if ( aPolylinePoints.IsEmpty() || aProfilePoints.IsEmpty() )
+  if ( aProfilePoints.IsEmpty() )
     return;
 
   const HYDROData_IPolyline::Point& aFirstPoint = aPolylinePoints.First();
@@ -113,7 +144,7 @@ void HYDROData_Polyline3D::Update()
     double aDistance = aPolylineXY->GetDistance( 0, i - 1 );
 
     double aParLen = ( aDistance / aPolylineCommonDist ) * aParCommonDist;
-    double aDepth = aProfileUZ->GetDepthFromDistance( aParLen );
+    double aDepth = HYDROData_ProfileUZ::GetDepthFromDistance( aProfilePoints, aParLen );
 
     Polyline3DPoint aCompPoint( aPolylinePoint.X(), aPolylinePoint.Y(), aDepth );
     aResPoints.Append( aCompPoint );
@@ -147,7 +178,8 @@ QColor HYDROData_Polyline3D::getDefaultBorderColor() const
   return DefaultBorderColor();
 }
 
-bool HYDROData_Polyline3D::SetPolylineXY( const Handle(HYDROData_PolylineXY)& thePolyline )
+bool HYDROData_Polyline3D::SetPolylineXY( const Handle(HYDROData_PolylineXY)& thePolyline,
+                                          const bool                          theIsUpdateProfile )
 {
   if ( thePolyline.IsNull() )
     return false;
@@ -158,6 +190,10 @@ bool HYDROData_Polyline3D::SetPolylineXY( const Handle(HYDROData_PolylineXY)& th
 
   SetReferenceObject( thePolyline, DataTag_PolylineXY );
 
+  // Update the child profile object 
+  if ( theIsUpdateProfile )
+    updateChildProfilePoints();
+
   // Indicate model of the need to update the polyline presentation
   SetToUpdate( true );
 
@@ -193,6 +229,9 @@ bool HYDROData_Polyline3D::SetProfileUZ( const Handle(HYDROData_ProfileUZ)& theP
 
   SetReferenceObject( theProfile, DataTag_ProfileUZ );
 
+  // Remove the bathymetry, because one altitude object can be presented at time
+  RemoveAltitudeObject();
+
   // Indicate model of the need to update the polyline presentation
   SetToUpdate( true );
 
@@ -217,3 +256,128 @@ void HYDROData_Polyline3D::RemoveProfileUZ()
   SetToUpdate( true );
 }
 
+bool HYDROData_Polyline3D::SetAltitudeObject( 
+  const Handle(HYDROData_IAltitudeObject)& theAltitude )
+{
+  Handle(HYDROData_IAltitudeObject) aPrevAltitude = GetAltitudeObject();
+
+  if ( !HYDROData_Object::SetAltitudeObject( theAltitude ) )
+    return false;
+
+  if ( IsEqual( aPrevAltitude, theAltitude ) )
+    return true;
+
+  // Remove the u,z profile, because one altitude object can be presented at time
+  RemoveProfileUZ();
+
+  // Create the child profile object 
+  updateChildProfilePoints();
+
+  return true;
+}
+
+
+void HYDROData_Polyline3D::RemoveAltitudeObject()
+{
+  HYDROData_Object::RemoveAltitudeObject();
+
+  // Remove the child profile object 
+  removeChildProfileUZ();
+}
+
+Handle(HYDROData_ProfileUZ) HYDROData_Polyline3D::GetChildProfileUZ( const bool theIsCreate ) const
+{
+  Handle(HYDROData_ProfileUZ) aProfileUZ =
+    Handle(HYDROData_ProfileUZ)::DownCast( GetReferenceObject( DataTag_ChildProfileUZ ) );
+  if ( !theIsCreate || !aProfileUZ.IsNull() )
+    return aProfileUZ;
+
+  Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
+  if ( aDocument.IsNull() )
+    return aProfileUZ;
+
+  Handle(HYDROData_Profile) aProfile =
+    Handle(HYDROData_Profile)::DownCast( aDocument->CreateObject( KIND_PROFILE ) );
+  
+  QString aProfilePref = GetName() + "_Profile";
+  QString aProfileName = HYDROData_Tool::GenerateObjectName( aDocument, aProfilePref );
+
+  aProfile->SetName( aProfileName );
+
+  aProfileUZ = aProfile->GetProfileUZ();
+
+  HYDROData_Polyline3D* me = const_cast<HYDROData_Polyline3D*>( this ); // Temporary to be revised
+  me->SetReferenceObject( aProfileUZ, DataTag_ChildProfileUZ );
+
+  return aProfileUZ;
+}
+
+HYDROData_IPolyline::PointsList generateProfileUZPoints(
+  const Handle(HYDROData_PolylineXY)&      thePolyline,
+  const Handle(HYDROData_IAltitudeObject)& theAltitude )
+{
+  HYDROData_IPolyline::PointsList aPointsList;
+  if ( thePolyline.IsNull() || theAltitude.IsNull() )
+    return aPointsList;
+
+  bool anIsSectionClosed = thePolyline->IsClosedSection( 0 );
+  HYDROData_IPolyline::SectionType aSectionType = thePolyline->GetSectionType( 0 );
+  HYDROData_IPolyline::PointsList aPolylinePoints = thePolyline->GetPoints( 0 );
+  if ( aPolylinePoints.IsEmpty() )
+    return aPointsList;
+
+  for ( int i = 1, aNbPoints = aPolylinePoints.Size(); i <= aNbPoints; ++i )
+  {
+    const HYDROData_PolylineXY::Point& aSectPoint = aPolylinePoints.Value( i );
+
+    double aPointDistance = thePolyline->GetDistance( 0, i - 1 );
+    double aPointDepth = theAltitude->GetAltitudeForPoint( aSectPoint );
+    if( aPointDepth == theAltitude->GetInvalidAltitude() )
+      aPointDepth = 0.0;
+
+    HYDROData_IPolyline::Point anAltitudePoint( aPointDistance, aPointDepth );
+    aPointsList.Append( anAltitudePoint );
+  }
+
+  return aPointsList;
+}
+
+void HYDROData_Polyline3D::updateChildProfilePoints()
+{
+  Handle(HYDROData_IAltitudeObject) anAltitude = GetAltitudeObject();
+  if ( anAltitude.IsNull() )
+    return;
+
+  Handle(HYDROData_ProfileUZ) aChildProfileUZ = GetChildProfileUZ();
+  if ( aChildProfileUZ.IsNull() )
+    return;
+
+  Handle(HYDROData_Profile) aProfile = 
+    Handle(HYDROData_Profile)::DownCast( aChildProfileUZ->GetFatherObject() );
+  if ( aProfile.IsNull() )
+    return;
+
+  HYDROData_IPolyline::PointsList aProfilePoints = 
+    generateProfileUZPoints( GetPolylineXY(), anAltitude );
+  aProfile->SetParametricPoints( aProfilePoints );
+
+  aProfile->Update();
+}
+
+void HYDROData_Polyline3D::removeChildProfileUZ()
+{
+  Handle(HYDROData_ProfileUZ) aChildProfileUZ = GetChildProfileUZ( false );
+  if ( aChildProfileUZ.IsNull() )
+    return;
+
+  ClearReferenceObjects( DataTag_ChildProfileUZ );
+
+  /* Uncomment if removing is requested
+  Handle(HYDROData_Profile) aProfile = 
+    Handle(HYDROData_Profile)::DownCast( aChildProfileUZ->GetFatherObject() );
+  if ( !aProfile.IsNull() )
+    aProfile->Remove();
+  */
+}
+
+