Salome HOME
Dump obstacle object to python script.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ImportGeomObjectOp.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_ImportGeomObjectOp.h"
24
25 #include "HYDROGUI_GeomObjectDlg.h"
26
27 #include "HYDROGUI_DataModel.h"
28 #include "HYDROGUI_Module.h"
29 #include "HYDROGUI_Tool.h"
30 #include "HYDROGUI_UpdateFlags.h"
31
32 #include <HYDROData_Obstacle.h>
33 #include <HYDROData_PolylineXY.h>
34 #include <HYDROData_Iterator.h>
35
36 #include <GEOMBase.h>
37
38 #include <SalomeApp_Study.h>
39
40 #include <LightApp_Application.h>
41 #include <LightApp_UpdateFlags.h>
42
43 #include <SUIT_Desktop.h>
44 #include <SUIT_MessageBox.h>
45
46 #include <QDialog>
47
48 HYDROGUI_ImportGeomObjectOp::HYDROGUI_ImportGeomObjectOp( HYDROGUI_Module* theModule,  
49                                                           const int theOpType, 
50                                                           const int theGEOMOp )
51 : HYDROGUI_Operation( theModule ),
52   myOpType( theOpType ),
53   myGEOMOp( theGEOMOp ),
54   myGEOMOpName( "" ),
55   myIsToShowPanel( true )
56 {
57   if ( myOpType == ImportSelectedAsPolyline ) {
58     setName( tr( "IMPORT_GEOM_OBJECT_AS_POLYLINE" ) );
59   } else {
60     setName( tr( "IMPORT_GEOM_OBJECT_AS_OBSTACLE" ) );
61   }
62 }
63
64 HYDROGUI_ImportGeomObjectOp::~HYDROGUI_ImportGeomObjectOp()
65 {
66 }
67
68 void HYDROGUI_ImportGeomObjectOp::startOperation()
69 {
70   // Get GEOM objects to import
71   myGeomObjects.clear();
72
73   if ( myOpType == ImportSelectedAsObstacle ) {
74     myGeomObjects = 
75       HYDROGUI_Tool::GetSelectedGeomObjects( module(), getObstacleTypes() );
76   } else if ( myOpType == ImportSelectedAsPolyline ) {
77     myGeomObjects = 
78       HYDROGUI_Tool::GetSelectedGeomObjects( module(), getPolylineTypes() );
79   }
80
81   // Do not show the panel if more than one GEOM objects are selected
82   myIsToShowPanel = myIsToShowPanel && ( myGeomObjects.count() <= 1 );
83
84   HYDROGUI_Operation::startOperation();
85
86   HYDROGUI_GeomObjectDlg* aPanel = 0;
87
88   if ( myIsToShowPanel ) {
89     // Get panel
90     aPanel = ::qobject_cast<HYDROGUI_GeomObjectDlg*>( inputPanel() );
91
92     if ( aPanel ) {
93       // Reset the panel state
94       aPanel->reset();
95
96       // Set default name
97       updateDefaultName();
98
99       // Pass the existing object names to the panel
100       QStringList anExistingNames;
101       if ( myOpType == ImportCreatedAsObstacle || 
102            myOpType == ImportSelectedAsObstacle ) {
103         anExistingNames = HYDROGUI_Tool::FindExistingObjectsNames( doc(), KIND_OBSTACLE );
104       } else if ( myOpType == ImportSelectedAsPolyline ) {
105         anExistingNames = HYDROGUI_Tool::FindExistingObjectsNames( doc(), KIND_POLYLINEXY );
106       }
107
108       aPanel->setObjectNames( anExistingNames );
109     }
110   }
111
112   if ( !aPanel ) {
113     onApply();
114   }
115
116   // Activate GEOM module operation in case of the corresponding operation type
117   if ( myOpType == ImportCreatedAsObstacle && myGEOMOp > 0 ) {
118     LightApp_Application* anApp = module()->getApp();
119     if ( anApp ) {
120       connect( anApp, SIGNAL( operationFinished( const QString&, const QString&, const QStringList& ) ), 
121         this, SLOT( onExternalOperationFinished( const QString&, const QString&, const QStringList& ) ) );
122
123       module()->getApp()->activateOperation( "Geometry", myGEOMOp );
124     }
125   }
126 }
127
128 void HYDROGUI_ImportGeomObjectOp::abortOperation()
129 {
130   LightApp_Application* anApp = module()->getApp();
131   if ( anApp ) {
132     anApp->disconnect( this );
133   }
134
135   closeExternalOperationDlg();
136
137   HYDROGUI_Operation::abortOperation();
138 }
139
140 void HYDROGUI_ImportGeomObjectOp::commitOperation()
141 {
142   closeExternalOperationDlg();
143
144   HYDROGUI_Operation::commitOperation();
145 }
146
147 bool HYDROGUI_ImportGeomObjectOp::processApply( int& theUpdateFlags,
148                                                 QString& theErrorMsg )
149 {
150   // Get active SalomeApp_Study
151   SalomeApp_Study* aStudy = 
152     dynamic_cast<SalomeApp_Study*>( module()->getApp()->activeStudy() );
153   if ( !aStudy ) {
154     return false;
155   }
156
157   // Check that GEOM objects list is not empty
158   if ( myGeomObjects.isEmpty() ) {
159     theErrorMsg = tr( "NO_GEOM_OBJECT_TO_IMPORT" );
160     return false;
161   }
162
163   QString anObjectName;
164   Handle(HYDROData_Entity) anObjectToEdit;  
165   ObjectKind anObjectKind = 
166     myOpType == ImportSelectedAsPolyline ? KIND_POLYLINEXY : KIND_OBSTACLE;
167
168   if ( myGeomObjects.count() == 1 ) {
169     // Get panel
170     HYDROGUI_GeomObjectDlg* aPanel = ::qobject_cast<HYDROGUI_GeomObjectDlg*>( inputPanel() );
171     if ( aPanel ) {
172       // Check object name
173       anObjectName = aPanel->getObjectName().simplified();
174       if ( anObjectName.isEmpty() ) {
175         theErrorMsg = tr( "INCORRECT_OBJECT_NAME" );
176         return false;
177       }
178
179       // Get object to edit
180       QString anEditedName = aPanel->getEditedObjectName().simplified();
181
182       if ( !anEditedName.isEmpty() ) {
183         anObjectToEdit = HYDROGUI_Tool::FindObjectByName( module(), anEditedName, anObjectKind );
184       }
185     }
186
187     if( anObjectToEdit.IsNull() || anObjectToEdit->GetName() != anObjectName ) {
188       // check that there are no other objects with the same name in the document
189       Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( module(), anObjectName/*, anObjectKind*/ );
190       if( !anObject.IsNull() ) {
191         theErrorMsg = tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( anObjectName );
192         return false;
193       }
194     }
195   }
196
197   bool anIsOk = false;
198
199   // Get the GEOM object as SObject
200   foreach ( const QString& anEntry, myGeomObjects ) {
201     _PTR(SObject) aSObject( aStudy->studyDS()->FindObjectID( qPrintable(anEntry)) );
202     if ( aSObject ) {
203       // Get the corresponding TopoDS_Shape
204       TopoDS_Shape aShape = GEOMBase::GetShapeFromIOR( aSObject->GetIOR().c_str() );
205       if ( aShape.IsNull() ) {
206         continue;
207       }
208       
209       // Create/edit an object
210       Handle(HYDROData_Entity) anObject; 
211
212       if ( anObjectToEdit.IsNull() ) {
213         if ( myOpType == ImportCreatedAsObstacle || myOpType == ImportSelectedAsObstacle ) {
214           anObject = doc()->CreateObject( KIND_OBSTACLE );
215           Handle(HYDROData_Obstacle) anObstacle = Handle(HYDROData_Obstacle)::DownCast( anObject );
216           anObstacle->SetFillingColor( HYDROData_Obstacle::DefaultFillingColor() );
217           anObstacle->SetBorderColor( HYDROData_Obstacle::DefaultBorderColor() );
218           anObstacle->SetGeomObjectEntry( anEntry );
219         } else if ( myOpType == ImportSelectedAsPolyline ) {
220           anObject = doc()->CreateObject( KIND_POLYLINEXY );
221           Handle(HYDROData_PolylineXY) aPolylineObj = Handle(HYDROData_PolylineXY)::DownCast( anObject );
222           aPolylineObj->SetWireColor( HYDROData_PolylineXY::DefaultWireColor() );
223         }
224       } else {
225         anObject = anObjectToEdit;
226       }
227
228       // Set name
229       if ( anObjectName.isEmpty() ) {
230         QString aName = QString::fromStdString( aSObject->GetName() );
231         anObjectName = HYDROGUI_Tool::GenerateObjectName( 
232           module(), aName, QStringList(), true );
233       }
234       if ( anObject->GetName() != anObjectName ) {
235         anObject->SetName( anObjectName );
236       }
237
238       anObjectName.clear();
239
240       // Set shape
241       if ( myOpType == ImportCreatedAsObstacle || myOpType == ImportSelectedAsObstacle ) {
242         Handle(HYDROData_Obstacle) anObstacle = Handle(HYDROData_Obstacle)::DownCast( anObject );
243         anObstacle->SetShape3D( aShape );
244         anIsOk = true;
245       } else if ( myOpType == ImportSelectedAsPolyline ) {
246         Handle(HYDROData_PolylineXY) aPolyline = Handle(HYDROData_PolylineXY)::DownCast( anObject );
247         anIsOk = aPolyline->ImportShape( aShape );
248
249         /* TODO: check it before start operation
250         if ( anIsOk && !aPolyline->IsEditable() )
251         {
252           anIsOk = SUIT_MessageBox::question( module()->getApp()->desktop(),
253                                               tr( "POLYLINE_IS_UNRECOGNIZED_TLT" ),
254                                               tr( "POLYLINE_IS_UNRECOGNIZED_MSG" ),
255                                               QMessageBox::Yes | QMessageBox::No,
256                                               QMessageBox::No ) == QMessageBox::Yes;
257           setPrintErrorMessage( anIsOk );
258         }
259         */
260       }
261
262       // Check operation status
263       if ( anIsOk ) {
264         anObject->Update();
265         module()->setIsToUpdate( anObject );
266         theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer;
267       }
268     }
269   }
270
271   return anIsOk;
272 }
273
274 HYDROGUI_InputPanel* HYDROGUI_ImportGeomObjectOp::createInputPanel() const
275 {
276   HYDROGUI_InputPanel* aPanel = 0;
277   if ( myIsToShowPanel ) {
278     QString anObjectTypeName = 
279       myOpType == ImportSelectedAsPolyline ? tr("DEFAULT_POLYLINE_NAME") :
280                   tr("DEFAULT_OBSTACLE_NAME");
281     aPanel = new HYDROGUI_GeomObjectDlg( module(), getName(), anObjectTypeName );
282   }
283
284   return aPanel;
285 }
286
287 void HYDROGUI_ImportGeomObjectOp::updateDefaultName()
288 {
289   // Get panel
290   HYDROGUI_GeomObjectDlg* aPanel = ::qobject_cast<HYDROGUI_GeomObjectDlg*>( inputPanel() );
291   if ( !aPanel ) {
292     return;
293   }
294
295   // Set the current GEOM object name to the panel
296   if ( myGeomObjects.count() == 1 ) {
297     SalomeApp_Study* aStudy = 
298       dynamic_cast<SalomeApp_Study*>( module()->getApp()->activeStudy() );
299     if ( aStudy ) {
300       QString anEntry = myGeomObjects.first();
301       _PTR(SObject) aSObject( aStudy->studyDS()->FindObjectID( qPrintable(anEntry) ) );
302       if ( aSObject ) {
303         aPanel->setDefaultName( QString::fromStdString(aSObject->GetName()) );
304       }
305     }
306   }
307 }
308
309 /**
310  * Called when the operation perfomed by another module is finished.
311  * \param theModuleName the name of the module which perfomed the operation
312  * \param theOperationName the operation name
313  * \param theEntryList the list of the created objects entries
314  */
315 void HYDROGUI_ImportGeomObjectOp::onExternalOperationFinished( 
316   const QString& theModuleName, const QString& theOperationName,
317   const QStringList& theEntryList )
318 {
319   // Process "Geometry" module operations with non-empty list of created objects only
320   if ( theModuleName != "Geometry" || theEntryList.isEmpty() ) {
321     return;
322   }
323   
324   // Store the operation name
325   myGEOMOpName = theOperationName;
326
327   // Store the geom objects entries list
328   myGeomObjects = theEntryList;
329
330   // Update the default name of the HYDRO object
331   updateDefaultName();
332 }
333
334 void HYDROGUI_ImportGeomObjectOp::closeExternalOperationDlg()
335 {
336   if ( myGEOMOpName.isEmpty() ) {
337     return;
338   }
339
340   SUIT_Desktop* aDesktop = module()->getApp()->desktop();
341   if ( aDesktop ) {
342     QList<QDialog*> aDialogs = aDesktop->findChildren<QDialog*>();
343     foreach ( QDialog* aDlg, aDialogs ) {
344       if ( typeid(*aDlg).name() == myGEOMOpName ) {
345         aDlg->close();
346         break;
347       }
348     }
349   }
350 }
351
352 QList<GEOM::shape_type> HYDROGUI_ImportGeomObjectOp::getObstacleTypes()
353 {
354   QList<GEOM::shape_type> aTypes;
355
356   aTypes << GEOM::COMPOUND << GEOM::COMPOUND << GEOM::SOLID << 
357             GEOM::SHELL << GEOM::FACE << GEOM::SHAPE;
358
359   return aTypes;
360 }
361
362 QList<GEOM::shape_type> HYDROGUI_ImportGeomObjectOp::getPolylineTypes()
363 {
364   QList<GEOM::shape_type> aTypes;
365
366   aTypes << GEOM::WIRE << GEOM::EDGE;
367
368   return aTypes;
369 }