Salome HOME
refs #493: fix bugs
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ProfileInterpolateOp.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include <HYDROGUI_ProfileInterpolateOp.h>
24
25 #include "HYDROGUI_Tool.h"
26 #include "HYDROGUI_Module.h"
27 #include "HYDROGUI_DataObject.h"
28 #include "HYDROGUI_UpdateFlags.h"
29 #include "HYDROGUI_ProfileInterpolateDlg.h"
30
31 #include <HYDROData_Stream.h>
32 #include <HYDROData_Profile.h>
33 #include <HYDROData_Document.h>
34 #include <HYDROData_ProfileUZ.h>
35 #include <HYDROData_IPolyline.h>
36 #include <HYDROData_PolylineXY.h>
37 #include <HYDROData_InterpolatorsFactory.h>
38 #include <HYDROData_IProfilesInterpolator.h>
39
40 #include <LightApp_Application.h>
41 #include <LightApp_SelectionMgr.h>
42 #include <LightApp_UpdateFlags.h>
43
44 #include <OCCViewer_ViewModel.h>
45 #include <OCCViewer_ViewManager.h>
46 #include <OCCViewer_ViewWindow.h>
47 #include <OCCViewer_AISSelector.h>
48
49 #include <AIS_ListOfInteractive.hxx>
50 #include <AIS_ListIteratorOfListOfInteractive.hxx>
51
52 #include <BRep_Builder.hxx>
53 #include <TopoDS_Compound.hxx>
54
55 #include <QMessageBox>
56
57 HYDROGUI_ProfileInterpolateOp::HYDROGUI_ProfileInterpolateOp( HYDROGUI_Module* theModule )
58     : HYDROGUI_Operation( theModule )
59 {
60     setName( tr( "PROFILE_INTERPOLATION" ) );
61 }
62
63 HYDROGUI_ProfileInterpolateOp::~HYDROGUI_ProfileInterpolateOp()
64 {
65 }
66
67 void HYDROGUI_ProfileInterpolateOp::startOperation()
68 {
69     HYDROGUI_Operation::startOperation();
70
71     HYDROGUI_ProfileInterpolateDlg* aPanel = ::qobject_cast<HYDROGUI_ProfileInterpolateDlg*>( inputPanel() );
72     if ( aPanel )
73     {
74         aPanel->reset();
75         aPanel->setInterpolators( interpolators() );
76     }
77 }
78
79 void HYDROGUI_ProfileInterpolateOp::abortOperation()
80 {
81     if ( !myPreview.IsNull() )
82     {
83         HYDROGUI_ProfileInterpolateDlg* aDlg = new HYDROGUI_ProfileInterpolateDlg( module(), getName() );
84         if ( aDlg && !aDlg->getAISContext().IsNull() )
85         {
86             aDlg->getAISContext()->Remove( myPreview, false );
87             myPreview.Nullify();
88         }
89     }
90
91     HYDROGUI_Operation::abortOperation();
92 }
93
94 void HYDROGUI_ProfileInterpolateOp::commitOperation()
95 {
96     if ( !myPreview.IsNull() )
97     {
98         HYDROGUI_ProfileInterpolateDlg* aDlg = new HYDROGUI_ProfileInterpolateDlg( module(), getName() );
99         if ( aDlg && !aDlg->getAISContext().IsNull() )
100         {
101             aDlg->getAISContext()->Remove( myPreview, false );
102             myPreview.Nullify();
103         }
104     }
105
106     HYDROGUI_Operation::commitOperation();
107 }
108
109 HYDROGUI_InputPanel* HYDROGUI_ProfileInterpolateOp::createInputPanel() const
110 {
111     HYDROGUI_ProfileInterpolateDlg* aDlg = new HYDROGUI_ProfileInterpolateDlg( module(), getName() );
112
113     connect( aDlg, SIGNAL( riverChanged( const QString& ) ), this, SLOT( onRiverChanged( const QString& ) ) );
114     connect( aDlg, SIGNAL( interpolatorChanged( const QString& ) ), this, SLOT( onInterpolatorChanged( const QString& ) ) );
115     connect( aDlg, SIGNAL( interpolatorParametersChanged( const QString& ) ), this, SLOT( updatePreview() ) );
116     connect( aDlg, SIGNAL( profileNumberChanged( int ) ), this, SLOT( updatePreview() ) );
117     connect( aDlg, SIGNAL( profileStartChanged( const QString& ) ), this, SLOT( updatePreview() ) );
118     connect( aDlg, SIGNAL( profileFinishChanged( const QString& ) ), this, SLOT( updatePreview() ) );
119
120     return aDlg;
121 }
122
123 bool HYDROGUI_ProfileInterpolateOp::processApply( int& theUpdateFlags, QString& theErrorMsg,
124                                                   QStringList& theBrowseObjectsEntries )
125 {
126     HYDROGUI_ProfileInterpolateDlg* aDlg = ::qobject_cast<HYDROGUI_ProfileInterpolateDlg*>( inputPanel() );
127     if ( !aDlg )
128         return false;
129
130     QString errMessage;
131     HYDROData_IProfilesInterpolator* anIterp = interpolator( aDlg->interpolator() );
132     if ( anIterp )
133     {
134         updateInterpolator( anIterp );
135         Handle(HYDROData_Stream) aRiver = Handle(HYDROData_Stream)::DownCast( HYDROGUI_Tool::FindObjectByName( module(), aDlg->river(), KIND_STREAM ) );
136         if ( !aRiver.IsNull() )
137         {
138             startDocOperation();
139             aRiver->Interpolate( anIterp );
140             if ( anIterp->GetErrorCode() == OK )
141                 commitDocOperation();
142             else
143             {
144                 errMessage = tr( "CALCULATE_ERROR" ), QString( anIterp->GetErrorMessage().c_str() );
145                 abortDocOperation();
146             }
147         }
148         else
149             errMessage = tr( "CANT_GET_RIVER_OBJECT" ).arg( aDlg->river() );
150
151         if ( !errMessage.isEmpty() )
152             QMessageBox::critical( aDlg->topLevelWidget(), tr( "INTERPOLATION_ERROR" ), errMessage, QMessageBox::Ok );
153         else
154             commit();
155     }
156
157     return errMessage.isEmpty();
158 }
159
160 void HYDROGUI_ProfileInterpolateOp::updatePreview()
161 {
162     HYDROGUI_ProfileInterpolateDlg* aDlg = ::qobject_cast<HYDROGUI_ProfileInterpolateDlg*>( inputPanel() );
163     if ( !aDlg )
164         return;
165
166     Handle(AIS_InteractiveContext) aCtx = aDlg->getAISContext();
167     if ( aCtx.IsNull() )
168         return;
169
170     if ( !myPreview.IsNull() )
171         aCtx->Remove( myPreview, false );
172
173     myPreview.Nullify();
174
175     HYDROData_IProfilesInterpolator* anIterp = interpolator( aDlg->interpolator() );
176     if ( anIterp )
177     {
178         updateInterpolator( anIterp );
179         anIterp->Calculate();
180         if ( anIterp->GetErrorCode() == OK )
181         {
182             TopoDS_Shape aShape = previewShape( anIterp );
183             if ( !aShape.IsNull() )
184             {
185                 myPreview = new AIS_Shape( aShape );
186                 myPreview->SetColor( Quantity_NOC_RED );
187                 aCtx->Display( myPreview, 0, -1, false );
188             }
189         }
190     }
191
192     aCtx->UpdateCurrentViewer();
193 }
194
195 void HYDROGUI_ProfileInterpolateOp::updateInterpolator( HYDROData_IProfilesInterpolator* theInt )
196 {
197     HYDROGUI_ProfileInterpolateDlg* aDlg = ::qobject_cast<HYDROGUI_ProfileInterpolateDlg*>( inputPanel() );
198     if ( !aDlg || !theInt )
199         return;
200
201     theInt->Reset();
202     theInt->SetResultProfilesNumber( aDlg->profileNumber() );
203     theInt->SetProfiles( profile( aDlg->profileStart() ), profile( aDlg->profileFinish() ) );
204     ParamsList aParams = parameters( aDlg->interpolatorParameters() );
205     for ( ParamsList::Iterator it = aParams.begin(); it != aParams.end(); ++it )
206         theInt->SetParameter( (*it).first.toStdString(), (*it).second.toStdString() );
207 }
208
209 std::vector<double> HYDROGUI_ProfileInterpolateOp::profile( const QString& theName ) const
210 {
211     std::vector<double> aPoints;
212     Handle(HYDROData_Profile) aProf = Handle(HYDROData_Profile)::DownCast( HYDROGUI_Tool::FindObjectByName( module(), theName, KIND_PROFILE ) );
213     if ( !aProf.IsNull() )
214     {
215         HYDROData_Profile::ProfilePoints aPntList = aProf->GetProfilePoints();
216         for ( int i = aPntList.Lower(); i <= aPntList.Upper(); i++ )
217         {
218             HYDROData_Profile::ProfilePoint aPnt = aPntList.Value( i );
219             aPoints.push_back( aPnt.X() );
220             aPoints.push_back( aPnt.Y() );
221             aPoints.push_back( aPnt.Z() );
222         }
223     }
224     return aPoints;
225 }
226
227 HYDROGUI_ProfileInterpolateOp::ParamsList HYDROGUI_ProfileInterpolateOp::parameters( const QString& theStr ) const
228 {
229     // Regular expression for parsing parameters string of kind: <param_name> <param_value> <param_name> <param_value> ..."
230     // QRegExp rx( "([A-Za-z_\\d]+)\\s+([A-Za-z_\\d]+)\\s*" );
231
232     // Regular expression for parsing parameters string of kind: <param_name> = <param_value> <param_name> = <param_value> ..."
233     QRegExp rx( "([A-Za-z_\\d]+)\\s*=\\s*([A-Za-z_\\d]+)\\s*" );
234
235     ParamsList aParamList;
236     for ( int i = 0; i >= 0; )
237     {
238         i = rx.indexIn( theStr, i );
239         if ( i >= 0  )
240         {
241             aParamList.append( QPair<QString, QString>( rx.cap( 1 ), rx.cap( 2 ) ) );
242             i += rx.matchedLength();
243         }
244     }
245
246     return aParamList;
247 }
248
249 QString HYDROGUI_ProfileInterpolateOp::parameters( const ParamsList& theParamList ) const
250 {
251     QStringList paramList;
252     for ( ParamsList::const_iterator it = theParamList.begin(); it != theParamList.end(); ++it )
253         paramList.append( QString( "%1 = %2" ).arg( (*it).first ).arg( (*it).second ) );
254     return paramList.join( " " );
255 }
256
257 QStringList HYDROGUI_ProfileInterpolateOp::interpolators() const
258 {
259     HYDROData_InterpolatorsFactory* anIFactory = 0;
260     Handle(HYDROData_Document) aDoc = doc();
261     if ( !aDoc.IsNull() )
262         anIFactory = aDoc->GetInterpolatorsFactory();
263
264     QStringList aNames;
265     if ( anIFactory )
266     {
267         std::vector<std::string> iNames = anIFactory->GetInterpolatorNames();
268         for ( std::vector<std::string>::iterator it = iNames.begin(); it != iNames.end(); ++it )
269             aNames.append( (*it).c_str() );
270     }
271
272     return aNames;
273 }
274
275 HYDROData_IProfilesInterpolator* HYDROGUI_ProfileInterpolateOp::interpolator( const QString& theName ) const
276 {
277     HYDROData_InterpolatorsFactory* anIFactory = 0;
278     Handle(HYDROData_Document) aDoc = doc();
279     if ( !aDoc.IsNull() )
280         anIFactory = aDoc->GetInterpolatorsFactory();
281
282     HYDROData_IProfilesInterpolator* aRes = 0;
283     if ( anIFactory )
284         aRes = anIFactory->GetInterpolator( theName.toStdString() );
285     return aRes;
286 }
287
288 TopoDS_Shape HYDROGUI_ProfileInterpolateOp::previewShape( HYDROData_IProfilesInterpolator* theInterp ) const
289 {
290     TopoDS_Compound aPreviewShape;
291     if ( theInterp )
292     {
293         BRep_Builder aBuilder;
294         aBuilder.MakeCompound( aPreviewShape );
295         for ( int i = 0; i < theInterp->GetCalculatedProfilesNumber(); i++ )
296         {
297             NCollection_Sequence<gp_XYZ> pointSeq;
298             std::vector<double> aPoints = theInterp->GetResultProfile( i );
299             for ( int i = 0; i < (int) aPoints.size(); i += 3 )
300                 pointSeq.Append( gp_XYZ( aPoints[i], aPoints[i+1], aPoints[i+2] ) );
301             TopoDS_Shape aWire = HYDROData_PolylineXY::BuildWire( HYDROData_IPolyline::SECTION_SPLINE, false, pointSeq );
302             if ( !aWire.IsNull() )
303                 aBuilder.Add( aPreviewShape, aWire );
304         }
305     }
306
307     return aPreviewShape;
308 }
309
310 void HYDROGUI_ProfileInterpolateOp::onInterpolatorChanged( const QString& theInterpName )
311 {
312     HYDROGUI_ProfileInterpolateDlg* aPanel = dynamic_cast<HYDROGUI_ProfileInterpolateDlg*>( inputPanel() );
313     HYDROData_IProfilesInterpolator* anInterp = interpolator( theInterpName );
314     if ( !aPanel || !anInterp )
315         return;
316
317     aPanel->setInterpolatorDescription( QString( anInterp->GetDescription().c_str() ) );
318
319     updatePreview();
320 }
321
322 void HYDROGUI_ProfileInterpolateOp::onRiverChanged( const QString& theRiver )
323 {
324     HYDROGUI_ProfileInterpolateDlg* aDlg = ::qobject_cast<HYDROGUI_ProfileInterpolateDlg*>( inputPanel() );
325     if ( !aDlg )
326         return;
327
328     Handle(AIS_InteractiveContext) aCtx = aDlg->getAISContext();
329     if ( !aCtx.IsNull() )
330     {
331         AIS_ListOfInteractive aList;
332         aCtx->DisplayedObjects( aList );
333         for ( AIS_ListIteratorOfListOfInteractive it( aList ); it.More(); it.Next() )
334         {
335             Handle(AIS_Shape) anObj = Handle(AIS_Shape)::DownCast( it.Value() );
336             if ( !anObj.IsNull() )
337                 aCtx->Remove( anObj, false );
338         }
339
340         Handle(HYDROData_Stream) aStream = Handle(HYDROData_Stream)::DownCast( HYDROGUI_Tool::FindObjectByName( module(), theRiver, KIND_STREAM ) );
341         if ( !aStream.IsNull() )
342         {
343             HYDROData_SequenceOfObjects aSeq = aStream->GetProfiles();
344             for ( int i = aSeq.Lower(); i <= aSeq.Upper(); i++ )
345             {
346                 Handle(HYDROData_Profile) aProfile = Handle(HYDROData_Profile)::DownCast( aSeq.Value( i ) );
347                 if ( !aProfile.IsNull() )
348                 {
349                     Handle(AIS_Shape) aPrs = new AIS_Shape( aProfile->GetShape3D() );
350                     aPrs->SetOwner( aProfile );
351                     aPrs->SetColor( Quantity_NOC_BLACK );
352                     aCtx->Display( aPrs, 0, 0, false );
353                 }
354             }
355         }
356     }
357     updatePreview();
358 }