Salome HOME
Merge remote-tracking branch 'remotes/origin/BR_HYDRO_IMPS_2016' into BR_MULTI_BATHS
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ShapeBathymetry.cxx
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.
6 //
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.
11 //
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
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include <HYDROGUI_ShapeBathymetry.h>
20 #include <HYDROGUI_OCCDisplayer.h>
21 #include <HYDROGUI_BathymetryPrs.h>
22 #include <HYDROData_Bathymetry.h>
23
24 #include <AIS_InteractiveContext.hxx>
25 #include <Aspect_ColorScale.hxx>
26 #include <Prs3d_PointAspect.hxx>
27
28 HYDROGUI_ShapeBathymetry::HYDROGUI_ShapeBathymetry( HYDROGUI_OCCDisplayer*                theDisplayer,
29                                                     const Handle(AIS_InteractiveContext)& theContext,
30                                                     const Handle_HYDROData_Bathymetry&    theBathymetry,
31                                                     const int                             theZLayer )
32 : HYDROGUI_Shape( theContext, theBathymetry, theZLayer ),
33   myDisplayer( theDisplayer )
34 {
35   setDisplayMode( AIS_PointCloud::DM_Points );
36 }
37
38 HYDROGUI_ShapeBathymetry::~HYDROGUI_ShapeBathymetry()
39 {
40   setToUpdateColorScale( true );
41 }
42
43 void HYDROGUI_ShapeBathymetry::update( bool theIsUpdateViewer, bool isDeactivateSelection )
44 {
45   setIsToUpdate( false );
46
47   // Try to retrieve information from object
48
49   Handle(HYDROData_Bathymetry) aBath = Handle(HYDROData_Bathymetry)::DownCast( getObject() );
50
51   if ( !aBath.IsNull() )
52   {
53     buildShape();
54     updateShape( false, false );
55   }
56
57   HYDROGUI_Shape::update( theIsUpdateViewer, isDeactivateSelection );
58 }
59
60
61 Handle_AIS_InteractiveObject HYDROGUI_ShapeBathymetry::createShape() const
62 {
63   Handle_HYDROData_Bathymetry aBath = Handle_HYDROData_Bathymetry::DownCast( getObject() );
64   if( !aBath.IsNull() )
65   {
66     Handle_AIS_PointCloud aPntCloud = new HYDROGUI_BathymetryPrs();
67     aPntCloud->SetHilightMode( AIS_PointCloud::DM_BndBox );
68     aPntCloud->Attributes()->SetPointAspect (new Prs3d_PointAspect (Aspect_TOM_POINT, Quantity_NOC_WHITE, 2.0));
69
70     const HYDROData_Bathymetry::AltitudePoints& aBathPoints = aBath->GetAltitudePoints();
71     int aLower = 0;
72     int anUpper = (int)aBathPoints.size()-1;
73
74     HYDROGUI_ShapeBathymetry* aThat = const_cast<HYDROGUI_ShapeBathymetry*>( this );
75     aThat->myCoords = new TColgp_HArray1OfPnt( aLower, anUpper );
76     aThat->myColors = new Quantity_HArray1OfColor( aLower, anUpper );
77     for( int i=aLower; i<=anUpper; i++ )
78       aThat->myCoords->SetValue( i, gp_Pnt( aBathPoints[i].X, aBathPoints[i].Y, aBathPoints[i].Z ) );
79
80     return aPntCloud;
81   }
82   else
83     return Handle_AIS_InteractiveObject();
84 }
85
86 void HYDROGUI_ShapeBathymetry::GetRange( double& theMin, double& theMax ) const
87 {
88   theMin = 0;
89   theMax = 0;
90   if( myCoords.IsNull() )
91     return;
92
93   bool isFirst = true;
94   for( int i=myCoords->Lower(), n=myCoords->Upper(); i<=n; i++ )
95   {
96     double aValue = myCoords->Value( i ).Z();
97     if( isFirst || aValue < theMin )
98       theMin = aValue;
99     if( isFirst || aValue > theMax )
100       theMax = aValue;
101     isFirst = false;
102   }
103 }
104
105 void HYDROGUI_ShapeBathymetry::UpdateWithColorScale( const Handle(Aspect_ColorScale)& theColorScale )
106 {
107   for( int i=myCoords->Lower(), n=myCoords->Upper(); i<=n; i++ )
108   {
109     double z = myCoords->Value( i ).Z();
110     Quantity_Color aColor;
111     theColorScale->FindColor( z, aColor );
112     myColors->SetValue( i, aColor );
113   }
114   Handle_AIS_PointCloud aPntCloud = Handle_AIS_PointCloud::DownCast( getAISObject() );
115   aPntCloud->SetPoints( myCoords, myColors );
116   getContext()->Redisplay( aPntCloud, Standard_False );
117 }
118
119 void HYDROGUI_ShapeBathymetry::setVisible( const bool theState,
120                                            const bool theIsUpdateViewer )
121 {
122   bool isShown = getContext()->IsDisplayed( getAISObject() );
123   bool isChanged = ( isShown != theState );
124   HYDROGUI_Shape::setVisible( theState, theIsUpdateViewer );
125   setToUpdateColorScale( isChanged );
126 }
127
128 void HYDROGUI_ShapeBathymetry::displayShape( const bool theIsUpdateViewer )
129 {
130   bool isShown = getContext()->IsDisplayed( getAISObject() );
131   bool isChanged = ( !isShown  );
132   HYDROGUI_Shape::displayShape( theIsUpdateViewer );
133   setToUpdateColorScale( isChanged );
134 }
135
136 void HYDROGUI_ShapeBathymetry::display( const bool theIsUpdateViewer )
137 {
138   bool isShown = getContext()->IsDisplayed( getAISObject() );
139   bool isChanged = ( !isShown  );
140   HYDROGUI_Shape::display( theIsUpdateViewer );
141   setToUpdateColorScale( isChanged );
142 }
143
144 void HYDROGUI_ShapeBathymetry::erase( const bool theIsUpdateViewer )
145 {
146   bool isShown = getContext()->IsDisplayed( getAISObject() );
147   bool isChanged = ( isShown  );
148   HYDROGUI_Shape::erase( theIsUpdateViewer );
149   setToUpdateColorScale( isChanged );
150 }
151
152 void HYDROGUI_ShapeBathymetry::setToUpdateColorScale( bool isChanged )
153 {
154 #ifndef LIGHT_MODE
155   if( isChanged && myDisplayer )
156     myDisplayer->SetToUpdateColorScale();
157 #endif
158 }