Salome HOME
Do not take into account selected objects which are not profiles.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_StreamOp.cxx
1 // Copyright (C) 2007-2013  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.
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_StreamOp.h"
24
25 #include "HYDROGUI_Module.h"
26 #include "HYDROGUI_Shape.h"
27 #include "HYDROGUI_StreamDlg.h"
28 #include "HYDROGUI_Tool.h"
29 #include "HYDROGUI_UpdateFlags.h"
30
31 #include <HYDROData_Document.h>
32 #include <HYDROData_PolylineXY.h>
33 #include <HYDROData_Profile.h>
34
35 #include <LightApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
37 #include <LightApp_UpdateFlags.h>
38
39 #include <SUIT_MessageBox.h>
40 #include <SUIT_Desktop.h>
41
42 #include <OCCViewer_ViewManager.h>
43 #include <OCCViewer_ViewModel.h>
44 #include <OCCViewer_ViewWindow.h>
45 #include <gp_Ax1.hxx>
46 #include <gp_Ax2.hxx>
47 #include <gp_Ax3.hxx>
48 #include <gp_Vec.hxx>
49 #include <gp_Pnt.hxx>
50 #include <gp_Pln.hxx>
51 #include <gp.hxx>
52 #include <TopoDS_Face.hxx>
53 #include <TopoDS.hxx>
54 #include <BRepBuilderAPI_MakeFace.hxx>
55 HYDROGUI_StreamOp::HYDROGUI_StreamOp( HYDROGUI_Module* theModule, bool theIsEdit )
56 : HYDROGUI_Operation( theModule ), 
57   myIsEdit( theIsEdit ),
58   myViewManager( NULL ),
59   myPreviewPrs( NULL )
60 {
61   setName( theIsEdit ? tr( "EDIT_STREAM" ) : tr( "CREATE_STREAM" ) );
62 }
63
64 HYDROGUI_StreamOp::~HYDROGUI_StreamOp()
65 {
66   erasePreview();
67 }
68
69 void HYDROGUI_StreamOp::startOperation()
70 {
71   HYDROGUI_Operation::startOperation();
72
73   // We start operation in the document
74   startDocOperation();
75
76   // Get panel and reset its state
77   HYDROGUI_StreamDlg* aPanel = (HYDROGUI_StreamDlg*)inputPanel();
78   aPanel->reset();
79
80   // Get/create the edited object
81   if( myIsEdit ) {
82     myEditedObject = Handle(HYDROData_Stream)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) );
83   } else {
84     myEditedObject = Handle(HYDROData_Stream)::DownCast( doc()->CreateObject( KIND_STREAM ) );
85   }
86
87   // Get the edited object name
88   QString anObjectName; 
89   if ( !myIsEdit ) {
90     anObjectName = HYDROGUI_Tool::GenerateObjectName( module(), tr( "DEFAULT_STREAM_NAME" ) );
91   } else if ( !myEditedObject.IsNull() ) {
92     anObjectName = myEditedObject->GetName();
93   }
94
95   // Update the panel
96   // set the edited object name
97   aPanel->setObjectName( anObjectName );
98   // set the existing 2D polylines names to the panel
99   aPanel->setAxisNames( HYDROGUI_Tool::FindExistingObjectsNames( doc(), KIND_POLYLINEXY ) );
100   // synchronize the panel state with the edited object state
101   updatePanelData();
102
103   // Create preview
104   createPreview();
105 }
106
107 void HYDROGUI_StreamOp::abortOperation()
108 {
109   erasePreview();
110   abortDocOperation();
111
112   HYDROGUI_Operation::abortOperation();
113 }
114
115 void HYDROGUI_StreamOp::commitOperation()
116 {
117   erasePreview();
118
119   HYDROGUI_Operation::commitOperation();
120 }
121
122 HYDROGUI_InputPanel* HYDROGUI_StreamOp::createInputPanel() const
123 {
124   HYDROGUI_StreamDlg* aPanel = new HYDROGUI_StreamDlg( module(), getName() );
125
126   connect( aPanel, SIGNAL( AddProfiles() ), this, SLOT( onAddProfiles() ) );
127   connect( aPanel, SIGNAL( RemoveProfiles( const QStringList& ) ), 
128            this, SLOT( onRemoveProfiles( const QStringList& ) ) );
129   connect( aPanel, SIGNAL( AxisChanged( const QString& ) ), 
130            this, SLOT( onAxisChanged( const QString& ) ) );
131
132   return aPanel;
133 }
134
135 bool HYDROGUI_StreamOp::processApply( int& theUpdateFlags,
136                                       QString& theErrorMsg )
137 {
138   HYDROGUI_StreamDlg* aPanel = ::qobject_cast<HYDROGUI_StreamDlg*>( inputPanel() );
139   if ( !aPanel || myEditedObject.IsNull() ) {
140     return false;
141   }
142
143   // Check whether the object name is not empty
144   QString anObjectName = aPanel->getObjectName().simplified();
145   if ( anObjectName.isEmpty() ) {
146     theErrorMsg = tr( "INCORRECT_OBJECT_NAME" );
147     return false;
148   }
149
150   // Check that there are no other objects with the same name in the document
151   if( myEditedObject->GetName() != anObjectName )
152   {
153     Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( module(), anObjectName );
154     if( !anObject.IsNull() ) {
155       theErrorMsg = tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( anObjectName );
156       return false;
157     }
158   }
159
160   // Check if the axis is set
161   Handle(HYDROData_PolylineXY) aHydraulicAxis = myEditedObject->GetHydraulicAxis();
162   if ( aHydraulicAxis.IsNull() ) {
163     theErrorMsg = tr( "AXIS_NOT_DEFINED" );
164     return false;
165   }
166
167   // Check if at least 2 profiles is set
168   HYDROData_SequenceOfObjects aProfiles = myEditedObject->GetProfiles();
169   if ( aProfiles.Length() < 2 ) {
170     theErrorMsg = tr( "PROFILES_NOT_DEFINED" );
171     return false;
172   }
173
174   // Set the object name
175   myEditedObject->SetName( anObjectName );
176
177   // Erase preview
178   erasePreview();
179
180   // Show the object in case of creation mode of the operation
181   if( !myIsEdit ) {
182     module()->setObjectVisible( HYDROGUI_Tool::GetActiveOCCViewId( module() ), myEditedObject, true );
183   }
184
185   // Set update flags
186   theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced;
187
188   return true;
189 }
190
191 void HYDROGUI_StreamOp::createPreview()
192 {
193   if ( myEditedObject.IsNull() ) {
194     return;
195   }
196
197   LightApp_Application* anApp = module()->getApp();
198   if ( !myViewManager ) {
199     myViewManager = ::qobject_cast<OCCViewer_ViewManager*>( 
200       anApp->getViewManager( OCCViewer_Viewer::Type(), true ) );
201   }
202
203   if ( myViewManager && !myPreviewPrs ) {
204     if ( OCCViewer_Viewer* aViewer = myViewManager->getOCCViewer() ) {
205       Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
206       if ( !aCtx.IsNull() ) {
207         myPreviewPrs = new HYDROGUI_Shape( aCtx, myEditedObject );
208       }
209     }
210   }
211
212   if ( myPreviewPrs ) {
213     myPreviewPrs->update();  
214   }
215 }
216
217 void HYDROGUI_StreamOp::erasePreview()
218 {
219   if( myPreviewPrs ) {
220     delete myPreviewPrs;
221     myPreviewPrs = 0;
222   }
223 }
224
225 void HYDROGUI_StreamOp::onAddProfiles()
226 {
227   if ( myEditedObject.IsNull() ) {
228     return;
229   }
230
231   // Get the current profiles list
232   HYDROData_SequenceOfObjects aProfiles = myEditedObject->GetProfiles();
233
234   // TODO: to be optimized
235   QStringList aCurrentProfiles;
236   for( int i = 1, n = aProfiles.Length(); i <= n; i++ ) {
237     Handle(HYDROData_Profile) aProfile =
238       Handle(HYDROData_Profile)::DownCast( aProfiles.Value( i ) );
239     if ( !aProfile.IsNull() ) {
240       aCurrentProfiles << aProfile->GetName();
241     }
242   }
243     
244   // Get the selected profiles ( in the Object Browser )
245   QStringList anInvalidProfiles, anExistingProfiles, aHasNoIntersectionProfiles;
246
247   HYDROData_SequenceOfObjects aVerifiedProfiles;
248   HYDROData_SequenceOfObjects aSelectedProfiles = HYDROGUI_Tool::GetSelectedObjects( module() );
249   gp_Ax2 aX2(gp::XOY());
250   gp_Ax3 aX3(aX2);
251   gp_Pln aPln(aX3);
252   BRepBuilderAPI_MakeFace aMkr(aPln);
253   if(!aMkr.IsDone())    return;
254   const TopoDS_Face& aPlane = TopoDS::Face(aMkr.Shape());
255   Standard_Real aPar(.0);
256   for( int i = 1, n = aSelectedProfiles.Length(); i <= n; i++ ) {
257     Handle(HYDROData_Profile) aProfile = 
258       Handle(HYDROData_Profile)::DownCast( aSelectedProfiles.Value( i ) );
259     if ( !aProfile.IsNull() ) {
260       QString aProfileName = aProfile->GetName();
261
262       // Check the profile, if all is ok - add it to the list
263       if ( !aProfile->IsValid() ) { // check whether the profile is valid
264         anInvalidProfiles << aProfileName;
265       } else if ( aCurrentProfiles.contains( aProfileName ) ) { // check whether the profile is already added
266         anExistingProfiles << aProfileName;
267       } else if ( !myEditedObject->HasIntersection( aProfile, aPlane, aPar ) ) {  // check whether the profile has intersection
268         aHasNoIntersectionProfiles << aProfileName;
269       } else {
270         aVerifiedProfiles.Append( aProfile );
271       }
272     }
273   }
274  
275   // Show message box with the ignored profiles
276   if ( !anInvalidProfiles.isEmpty() || !anExistingProfiles.isEmpty() ||
277        !aHasNoIntersectionProfiles.isEmpty() ) {
278     QString aMessage = tr( "IGNORED_PROFILES" );
279     if ( !anInvalidProfiles.isEmpty() ) {
280       aMessage.append( "\n\n" );
281       aMessage.append( tr("INVALID_PROFILES").arg( anInvalidProfiles.join( "\n" ) ) );
282     }
283     if ( !anExistingProfiles.isEmpty() ) {
284       aMessage.append( "\n\n" );
285       aMessage.append( tr("EXISTING_PROFILES").arg( anExistingProfiles.join( "\n" ) ) );
286     }
287     if ( !aHasNoIntersectionProfiles.isEmpty() ) {
288       aMessage.append( "\n\n" );
289       aMessage.append( tr("NOT_INTERSECTED_PROFILES").arg( aHasNoIntersectionProfiles.join( "\n" ) ) );
290     }
291
292     SUIT_MessageBox::warning( module()->getApp()->desktop(), tr( "WARNING" ), aMessage );
293   }
294
295   // Update the stream object
296   for( int i = 1, n = aVerifiedProfiles.Length(); i <= n; i++ ) {
297     Handle(HYDROData_Profile) aProfile =
298       Handle(HYDROData_Profile)::DownCast( aVerifiedProfiles.Value( i ) );
299     myEditedObject->AddProfile( aProfile );
300   }
301   myEditedObject->Update();
302
303   // Update the panel
304   updatePanelData();
305
306   // Update preview
307   createPreview();
308 }
309
310 void HYDROGUI_StreamOp::onRemoveProfiles( const QStringList& theProfilesToRemove )
311 {
312   if ( myEditedObject.IsNull() ) {
313     return;
314   }
315
316   // Remove profiles
317   foreach( const QString& aProfileName, theProfilesToRemove ) {
318     Handle(HYDROData_Profile) aProfile = Handle(HYDROData_Profile)::DownCast(
319       HYDROGUI_Tool::FindObjectByName( module(), aProfileName, KIND_PROFILE ) );
320     myEditedObject->RemoveProfile( aProfile );
321   }
322   myEditedObject->Update();
323
324   // Update the panel
325   updatePanelData();
326
327   // Update preview
328   createPreview();
329 }
330
331 void HYDROGUI_StreamOp::onAxisChanged( const QString& theNewAxis )
332 {
333   if ( myEditedObject.IsNull() ) {
334     return;
335   }
336
337   // Get axis object   
338   Handle(HYDROData_PolylineXY) anAxis = Handle(HYDROData_PolylineXY)::DownCast(
339     HYDROGUI_Tool::FindObjectByName( module(), theNewAxis, KIND_POLYLINEXY ) );
340
341   // Get list of profiles which do not intersect the axis
342   QStringList aHasNoIntersectionProfiles;
343   HYDROData_SequenceOfObjects aCurrentProfiles = myEditedObject->GetProfiles();
344   for( int anIndex = 1, aLength = aCurrentProfiles.Length(); anIndex <= aLength; anIndex++ ) {
345     Handle(HYDROData_Profile) aProfile =
346       Handle(HYDROData_Profile)::DownCast( aCurrentProfiles.Value( anIndex ) );
347     if ( !aProfile.IsNull() ) {
348       // TODO check intersection
349     }
350   }
351
352   // If there are profiles which don't intersect the new axis - show confirmation message box
353   bool isConfirmed = true;
354   if ( !aHasNoIntersectionProfiles.isEmpty() ) {
355     SUIT_MessageBox::StandardButtons aButtons = 
356       SUIT_MessageBox::Yes | SUIT_MessageBox::No;
357
358     QString aMsg = aHasNoIntersectionProfiles.join( "\n" );
359     isConfirmed = SUIT_MessageBox::question( module()->getApp()->desktop(),
360                                              tr( "CONFIRMATION" ),
361                                              tr( "CONFIRM_AXIS_CHANGE" ).arg( aMsg ),
362                                              aButtons, 
363                                              SUIT_MessageBox::Yes) == SUIT_MessageBox::Yes;
364   }
365
366   // Check if the user has confirmed axis change
367   if ( !isConfirmed ) {
368     // To restore the old axis
369     updatePanelData();
370   } else {
371     // Set axis
372     myEditedObject->SetHydraulicAxis( anAxis );
373     myEditedObject->Update();
374
375     // Update the panel
376     updatePanelData();
377
378     // Update preview
379     createPreview();
380   }
381 }
382
383 void HYDROGUI_StreamOp::updatePanelData()
384 {
385   HYDROGUI_StreamDlg* aPanel = ::qobject_cast<HYDROGUI_StreamDlg*>( inputPanel() );
386   if ( !aPanel ) {
387     return;
388   }
389
390   // Hydraulic axis
391   Handle(HYDROData_PolylineXY) aHydraulicAxis = myEditedObject->GetHydraulicAxis();
392   if ( !aHydraulicAxis.IsNull() ) {
393     aPanel->setAxisName( aHydraulicAxis->GetName() );
394   } else {
395     aPanel->setAxisName( "" );
396   }
397
398   // Stream profiles
399   QStringList aProfiles;
400
401   HYDROData_SequenceOfObjects aStreamProfiles = myEditedObject->GetProfiles();
402   for ( int i = 1, n = aStreamProfiles.Length(); i <= n; ++i ) {
403     Handle(HYDROData_Profile) aProfile = 
404       Handle(HYDROData_Profile)::DownCast( aStreamProfiles.Value( i ) );
405     if ( !aProfile.IsNull() ) {
406       QString aProfileName = aProfile->GetName();
407       aProfiles << aProfileName;      
408     }
409   }
410
411   aPanel->setProfiles( aProfiles );
412 }