]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_Module.cpp
Salome HOME
refs #30 - Sketch base GUI: create, draw lines
[modules/shaper.git] / src / PartSet / PartSet_Module.cpp
1 #include <PartSet_Module.h>
2 #include <PartSet_OperationSketch.h>
3 #include <PartSet_OperationSketchLine.h>
4 #include <PartSet_OperationEditLine.h>
5 #include <ModuleBase_Operation.h>
6 #include <ModuleBase_OperationDescription.h>
7 #include <PartSet_Listener.h>
8
9 #include <ModuleBase_Operation.h>
10
11 #include <XGUI_MainWindow.h>
12 #include <XGUI_Displayer.h>
13 #include <XGUI_Viewer.h>
14 #include <XGUI_Workshop.h>
15 #include <XGUI_OperationMgr.h>
16 #include <XGUI_SelectionMgr.h>
17 #include <XGUI_ViewPort.h>
18 #include <XGUI_ActionsMgr.h>
19 #include <XGUI_ViewerProxy.h>
20
21 #include <Config_PointerMessage.h>
22 #include <Config_ModuleReader.h>
23 #include <Config_WidgetReader.h>
24 #include <Events_Loop.h>
25 #include <Events_Message.h>
26 #include <Events_Error.h>
27
28 #include <GeomAPI_Shape.h>
29
30 #include <AIS_ListOfInteractive.hxx>
31
32 #include <QObject>
33 #include <QMouseEvent>
34 #include <QString>
35
36 #ifdef _DEBUG
37 #include <QDebug>
38 #endif
39
40
41 /*!Create and return new instance of XGUI_Module*/
42 extern "C" PARTSET_EXPORT XGUI_Module* createModule(XGUI_Workshop* theWshop)
43 {
44   return new PartSet_Module(theWshop);
45 }
46
47 PartSet_Module::PartSet_Module(XGUI_Workshop* theWshop)
48 {
49   myWorkshop = theWshop;
50   myListener = new PartSet_Listener(this);
51
52   XGUI_OperationMgr* anOperationMgr = myWorkshop->operationMgr();
53
54   connect(anOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)),
55           this, SLOT(onOperationStopped(ModuleBase_Operation*)));
56
57   connect(myWorkshop->viewer(), SIGNAL(mousePress(QMouseEvent*)),
58           this, SLOT(onMousePressed(QMouseEvent*)));
59   connect(myWorkshop->viewer(), SIGNAL(mouseRelease(QMouseEvent*)),
60           this, SLOT(onMouseReleased(QMouseEvent*)));
61   connect(myWorkshop->viewer(), SIGNAL(mouseMove(QMouseEvent*)),
62           this, SLOT(onMouseMoved(QMouseEvent*)));
63   connect(myWorkshop->viewer(), SIGNAL(keyRelease(QKeyEvent*)),
64           this, SLOT(onKeyRelease(QKeyEvent*)));
65 }
66
67 PartSet_Module::~PartSet_Module()
68 {
69 }
70
71 XGUI_Workshop* PartSet_Module::workshop() const
72 {
73   return myWorkshop;
74 }
75
76 void PartSet_Module::createFeatures()
77 {
78   Config_ModuleReader aXMLReader = Config_ModuleReader();
79   aXMLReader.readAll();
80   myFeaturesInFiles = aXMLReader.featuresInFiles();
81 }
82
83 void PartSet_Module::featureCreated(XGUI_Command* theFeature)
84 {
85   theFeature->connectTo(this, SLOT(onFeatureTriggered()));
86 }
87
88 QStringList PartSet_Module::nestedFeatures(QString)
89 {
90   return QStringList();
91 }
92
93 std::string PartSet_Module::featureFile(const std::string& theFeatureId)
94 {
95   return myFeaturesInFiles[theFeatureId];
96 }
97
98 /*
99  *
100  */
101 void PartSet_Module::onFeatureTriggered()
102 {
103   XGUI_Command* aCmd = dynamic_cast<XGUI_Command*>(sender());
104   //Do nothing on uncheck
105   if(aCmd->isCheckable() && !aCmd->isChecked())
106     return;
107   launchOperation(aCmd->id());
108 }
109   
110 void PartSet_Module::launchOperation(const QString& theCmdId)
111 {
112   ModuleBase_Operation* anOperation = createOperation(theCmdId.toStdString());
113   sendOperation(anOperation);
114 }
115
116 void PartSet_Module::onOperationStopped(ModuleBase_Operation* theOperation)
117 {
118   if (!theOperation)
119     return;
120   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(theOperation);
121   if (aPreviewOp) {
122   }
123 }
124
125 void PartSet_Module::onMousePressed(QMouseEvent* theEvent)
126 {
127   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(
128                                        myWorkshop->operationMgr()->currentOperation());
129   if (aPreviewOp)
130   {
131     std::list<XGUI_ViewerPrs> aPresentations = myWorkshop->displayer()->GetViewerPrs();
132     aPreviewOp->mousePressed(theEvent, myWorkshop->viewer()->activeView(), aPresentations);
133   }
134 }
135
136 void PartSet_Module::onMouseReleased(QMouseEvent* theEvent)
137 {
138   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(
139                                        myWorkshop->operationMgr()->currentOperation());
140   if (aPreviewOp)
141   {
142     std::list<XGUI_ViewerPrs> aPresentations = myWorkshop->displayer()->GetViewerPrs();
143     aPreviewOp->mouseReleased(theEvent, myWorkshop->viewer()->activeView(), aPresentations);
144   }
145 }
146
147 void PartSet_Module::onMouseMoved(QMouseEvent* theEvent)
148 {
149   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(
150                                        myWorkshop->operationMgr()->currentOperation());
151   if (aPreviewOp)
152     aPreviewOp->mouseMoved(theEvent, myWorkshop->viewer()->activeView());
153 }
154
155 void PartSet_Module::onKeyRelease(QKeyEvent* theEvent)
156 {
157   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
158   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
159   if (aPreviewOp) {
160     aPreviewOp->keyReleased(theEvent->key());
161   }
162 }
163
164 void PartSet_Module::onPlaneSelected(double theX, double theY, double theZ)
165 {
166   myWorkshop->viewer()->setViewProjection(theX, theY, theZ);
167
168   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
169   if (anOperation) {
170     PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
171     if (aPreviewOp) {
172       visualizePreview(aPreviewOp->feature(), false);
173     }
174   }
175
176   myWorkshop->actionsMgr()->setNestedActionsEnabled(true);
177 }
178
179 void PartSet_Module::onLaunchOperation(std::string theName, boost::shared_ptr<ModelAPI_Feature> theFeature)
180 {
181   ModuleBase_Operation* anOperation = createOperation(theName.c_str());
182   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
183   if (aPreviewOp)
184   {
185     std::list<XGUI_ViewerPrs> aPresentations = myWorkshop->displayer()->GetViewerPrs();
186     aPreviewOp->init(theFeature, aPresentations);
187   }
188   myWorkshop->actionsMgr()->setActionChecked(anOperation->getDescription()->operationId(), true);
189   sendOperation(anOperation);
190 }
191
192 void PartSet_Module::onMultiSelectionEnabled(bool theEnabled)
193 {
194   XGUI_ViewerProxy* aViewer = myWorkshop->viewer();
195   aViewer->enableMultiselection(theEnabled);
196 }
197
198 void PartSet_Module::onStopSelection(const std::list<XGUI_ViewerPrs>& theFeatures, const bool isStop)
199 {
200   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
201   aDisplayer->StopSelection(theFeatures, isStop);
202   
203 }
204
205 void PartSet_Module::onFeatureConstructed(boost::shared_ptr<ModelAPI_Feature> theFeature,
206                                           int theMode)
207 {
208   bool isDisplay = theMode != PartSet_OperationSketchBase::FM_Abort;
209   visualizePreview(theFeature, isDisplay, false);
210
211   if (theMode == FM_Activation || theMode == FM_Deactivation)
212     activateFeature(theFeature, true);
213 }
214
215 ModuleBase_Operation* PartSet_Module::createOperation(const std::string& theCmdId)
216 {
217   // get operation xml description
218   std::string aStdCmdId = theCmdId;
219   if (aStdCmdId == PartSet_OperationEditLine::Type())
220     aStdCmdId = PartSet_OperationSketchLine::Type();
221   std::string aPluginFileName = featureFile(aStdCmdId);
222   Config_WidgetReader aWdgReader = Config_WidgetReader(aPluginFileName);
223   aWdgReader.readAll();
224   std::string aXmlCfg = aWdgReader.featureWidgetCfg(aStdCmdId);
225   std::string aDescription = aWdgReader.featureDescription(aStdCmdId);
226
227   // create the operation
228   ModuleBase_Operation* anOperation;
229   if (theCmdId == PartSet_OperationSketch::Type()) {
230     anOperation = new PartSet_OperationSketch(theCmdId.c_str(), this);
231   }
232   else if(theCmdId == PartSet_OperationSketchLine::Type() ||
233           theCmdId == PartSet_OperationEditLine::Type()) {
234     ModuleBase_Operation* aCurOperation = myWorkshop->operationMgr()->currentOperation();
235     boost::shared_ptr<ModelAPI_Feature> aSketchFeature;
236     if (aCurOperation)
237       aSketchFeature = aCurOperation->feature();
238     if (theCmdId == PartSet_OperationSketchLine::Type())
239       anOperation = new PartSet_OperationSketchLine(theCmdId.c_str(), this, aSketchFeature);
240     else
241       anOperation = new PartSet_OperationEditLine(theCmdId.c_str(), this, aSketchFeature);
242   }
243   else {
244     anOperation = new ModuleBase_Operation(theCmdId.c_str(), this);
245   }
246   anOperation->getDescription()->setXmlRepresentation(QString::fromStdString(aXmlCfg));
247   anOperation->getDescription()->setDescription(QString::fromStdString(aDescription));
248
249   // connect the operation
250   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
251   if (aPreviewOp) {
252     connect(aPreviewOp, SIGNAL(featureConstructed(boost::shared_ptr<ModelAPI_Feature>, int)),
253             this, SLOT(onFeatureConstructed(boost::shared_ptr<ModelAPI_Feature>, int)));
254     connect(aPreviewOp, SIGNAL(launchOperation(std::string, boost::shared_ptr<ModelAPI_Feature>)),
255             this, SLOT(onLaunchOperation(std::string, boost::shared_ptr<ModelAPI_Feature>)));
256     connect(aPreviewOp, SIGNAL(multiSelectionEnabled(bool)),
257             this, SLOT(onMultiSelectionEnabled(bool)));
258
259     connect(aPreviewOp, SIGNAL(multiSelectionEnabled(bool)),
260             this, SLOT(onMultiSelectionEnabled(bool)));
261     connect(aPreviewOp, SIGNAL(stopSelection(const std::list<XGUI_ViewerPrs>&, const bool)),
262             this, SLOT(onStopSelection(const std::list<XGUI_ViewerPrs>&, const bool)));
263
264     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
265     if (aSketchOp) {
266       connect(aSketchOp, SIGNAL(planeSelected(double, double, double)),
267               this, SLOT(onPlaneSelected(double, double, double)));
268     }
269   }
270
271   return anOperation;
272 }
273
274 void PartSet_Module::sendOperation(ModuleBase_Operation* theOperation)
275 {
276   //TODO(sbh): Implement static method to extract event id [SEID]
277   static Events_ID aModuleEvent = Events_Loop::eventByName("PartSetModuleEvent");
278   Config_PointerMessage aMessage(aModuleEvent, this);
279   aMessage.setPointer(theOperation);
280   Events_Loop::loop()->send(aMessage);
281 }
282
283 void PartSet_Module::visualizePreview(boost::shared_ptr<ModelAPI_Feature> theFeature, bool isDisplay,
284                                       const bool isUpdateViewer)
285 {
286   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
287   if (!anOperation)
288     return;
289
290   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
291   if (!aPreviewOp)
292     return;
293
294   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
295   if (isDisplay) {
296     boost::shared_ptr<GeomAPI_Shape> aPreview = aPreviewOp->preview(theFeature);
297     aDisplayer->Redisplay(theFeature,
298                           aPreview ? aPreview->impl<TopoDS_Shape>() : TopoDS_Shape(), false);
299   }
300   else
301     aDisplayer->Erase(anOperation->feature(), false);
302
303   if (isUpdateViewer)
304     aDisplayer->UpdateViewer();
305 }
306
307 void PartSet_Module::activateFeature(boost::shared_ptr<ModelAPI_Feature> theFeature,
308                                      const bool isUpdateViewer)
309 {
310   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
311   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
312   if (aPreviewOp) {
313     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
314     aDisplayer->ActivateInLocalContext(theFeature, aPreviewOp->getSelectionModes(theFeature),
315                                        isUpdateViewer);
316   }
317 }
318
319 void PartSet_Module::updateCurrentPreview(const std::string& theCmdId)
320 {
321   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
322   if (!anOperation)
323     return;
324
325   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
326   if (!aPreviewOp)
327     return;
328
329   boost::shared_ptr<ModelAPI_Feature> aFeature = aPreviewOp->feature();
330   if (!aFeature || aFeature->getKind() != theCmdId)
331     return;
332
333   std::map<boost::shared_ptr<ModelAPI_Feature>, boost::shared_ptr<GeomAPI_Shape> >
334                                                                      aList = aPreviewOp->preview();
335   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
336   std::list<int> aModes = aPreviewOp->getSelectionModes(aPreviewOp->feature());
337
338   std::map<boost::shared_ptr<ModelAPI_Feature>, boost::shared_ptr<GeomAPI_Shape> >::const_iterator
339                                                          anIt = aList.begin(), aLast = aList.end();
340   for (; anIt != aLast; anIt++) {
341     boost::shared_ptr<ModelAPI_Feature> aFeature = (*anIt).first;
342     boost::shared_ptr<GeomAPI_Shape> aPreview = (*anIt).second;
343     aDisplayer->Redisplay(aFeature,
344                           aPreview ? aPreview->impl<TopoDS_Shape>() : TopoDS_Shape(), false);
345     aDisplayer->ActivateInLocalContext(aFeature, aModes, false);
346   }
347   aDisplayer->UpdateViewer();
348 }
349