Salome HOME
Result attributes validators created
[modules/shaper.git] / src / PartSet / PartSet_OperationFeatureCreate.cpp
1 // File:        PartSet_OperationFeatureCreate.h
2 // Created:     20 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #include <PartSet_OperationFeatureCreate.h>
6
7 #include <PartSet_Tools.h>
8 #include <PartSet_OperationSketch.h>
9
10 #include <SketchPlugin_Feature.h>
11 #include <SketchPlugin_Point.h>
12 #include <SketchPlugin_Line.h>
13 #include <SketchPlugin_Circle.h>
14 #include <SketchPlugin_Arc.h>
15 #include <SketchPlugin_ConstraintDistance.h>
16 #include <SketchPlugin_ConstraintLength.h>
17 #include <SketchPlugin_ConstraintRadius.h>
18 #include <SketchPlugin_ConstraintParallel.h>
19 #include <SketchPlugin_ConstraintPerpendicular.h>
20 #include <SketchPlugin_ConstraintCoincidence.h>
21
22 #include <GeomAPI_Pnt2d.h>
23
24 #include <ModuleBase_OperationDescription.h>
25 #include <ModuleBase_WidgetPoint2D.h>
26 #include <ModuleBase_WidgetValueFeature.h>
27 #include <ModuleBase_ViewerPrs.h>
28
29 #include <XGUI_Constants.h>
30
31 #include <V3d_View.hxx>
32 #include <TopoDS_Vertex.hxx>
33 #include <TopoDS.hxx>
34 #include <BRep_Tool.hxx>
35
36 #ifdef _DEBUG
37 #include <QDebug>
38 #endif
39
40 #include <QMouseEvent>
41
42 using namespace std;
43
44 PartSet_OperationFeatureCreate::PartSet_OperationFeatureCreate(const QString& theId,
45                                                                QObject* theParent,
46                                                                  FeaturePtr theFeature)
47 : PartSet_OperationSketchBase(theId, theParent), mySketch(theFeature), myActiveWidget(0)
48 {
49 }
50
51 PartSet_OperationFeatureCreate::~PartSet_OperationFeatureCreate()
52 {
53 }
54
55 bool PartSet_OperationFeatureCreate::canProcessKind(const std::string& theId)
56 {
57   return theId == SketchPlugin_Line::ID() || theId == SketchPlugin_Point::ID() ||
58          theId == SketchPlugin_Circle::ID() ||
59          theId == SketchPlugin_Arc::ID() ||
60          theId == SketchPlugin_ConstraintDistance::ID() ||
61          theId == SketchPlugin_ConstraintLength::ID() ||
62          theId == SketchPlugin_ConstraintRadius::ID() ||
63          theId == SketchPlugin_ConstraintParallel::ID() ||
64          theId == SketchPlugin_ConstraintPerpendicular::ID() ||
65          theId == SketchPlugin_ConstraintCoincidence::ID();
66 }
67
68 bool PartSet_OperationFeatureCreate::canBeCommitted() const
69 {
70   return !myActiveWidget;
71 }
72
73 bool PartSet_OperationFeatureCreate::isGranted(ModuleBase_IOperation* theOperation) const
74 {
75   return theOperation->getDescription()->operationId().toStdString() == PartSet_OperationSketch::Type();
76 }
77
78 std::list<int> PartSet_OperationFeatureCreate::getSelectionModes(ObjectPtr theFeature) const
79 {
80   std::list<int> aModes;
81   if (theFeature != feature())
82     aModes = PartSet_OperationSketchBase::getSelectionModes(theFeature);
83   return aModes;
84 }
85
86 void PartSet_OperationFeatureCreate::initSelection(const std::list<ModuleBase_ViewerPrs>& theSelected,
87                                                    const std::list<ModuleBase_ViewerPrs>& /*theHighlighted*/)
88 {
89   myPreSelection = theSelected;
90 }
91
92 void PartSet_OperationFeatureCreate::initFeature(FeaturePtr theFeature)
93 {
94   myInitFeature = theFeature;
95 }
96
97
98 FeaturePtr PartSet_OperationFeatureCreate::sketch() const
99 {
100   return mySketch;
101 }
102
103 void PartSet_OperationFeatureCreate::mouseReleased(QMouseEvent* theEvent, Handle(V3d_View) theView,
104                                                 const std::list<ModuleBase_ViewerPrs>& theSelected,
105                                                 const std::list<ModuleBase_ViewerPrs>& /*theHighlighted*/)
106 {
107   if (canBeCommitted())
108   {
109     // if the point creation is finished, the next mouse release should commit the modification
110     // the next release can happens by double click in the viewer
111     commit();
112     restartOperation(feature()->getKind(), feature());
113     return;
114   }
115
116   gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), theView);
117   double aX = aPoint.X(), anY = aPoint.Y();
118
119   if (theSelected.empty()) {
120     PartSet_Tools::convertTo2D(aPoint, sketch(), theView, aX, anY);
121   }
122   else {
123     ModuleBase_ViewerPrs aPrs = theSelected.front();
124     const TopoDS_Shape& aShape = aPrs.shape();
125     if (!aShape.IsNull()) // the point is selected
126     {
127       if (aShape.ShapeType() == TopAbs_VERTEX) {
128         const TopoDS_Vertex& aVertex = TopoDS::Vertex(aShape);
129         if (!aVertex.IsNull()) {
130           aPoint = BRep_Tool::Pnt(aVertex);
131           PartSet_Tools::convertTo2D(aPoint, sketch(), theView, aX, anY);
132
133           PartSet_Tools::setConstraints(sketch(), feature(), myActiveWidget->attributeID(),
134                                         aX, anY);
135         }
136       }
137       else if (aShape.ShapeType() == TopAbs_EDGE) // the line is selected
138       {
139         PartSet_Tools::convertTo2D(aPoint, sketch(), theView, aX, anY);
140         // move to selected line
141         if (feature()->getKind() == SketchPlugin_Line::ID()) {
142           //FeaturePtr aFeature = aPrs.feature();
143           //projectPointOnLine(aFeature, myPointSelectionMode, aPoint, theView, aX, anY);
144         }
145       }
146     }
147   }
148   ObjectPtr aFeature;
149   if (!theSelected.empty()) {
150     ModuleBase_ViewerPrs aPrs = theSelected.front();
151     aFeature = aPrs.object();
152   } else
153     aFeature = feature(); // for the widget distance only
154
155   bool isApplyed = setWidgetValue(aFeature, aX, anY);
156   if (isApplyed) {
157     flushUpdated();
158     emit activateNextWidget(myActiveWidget);
159   }
160 }
161
162 void PartSet_OperationFeatureCreate::mouseMoved(QMouseEvent* theEvent, Handle(V3d_View) theView)
163 {
164   if (canBeCommitted()) {
165     commit();
166     restartOperation(feature()->getKind(), feature());
167   }
168   else {
169     double aX, anY;
170     gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), theView);
171     PartSet_Tools::convertTo2D(aPoint, sketch(), theView, aX, anY);
172     setWidgetValue(feature(), aX, anY);
173     flushUpdated();
174   }
175 }
176
177 void PartSet_OperationFeatureCreate::keyReleased(std::string theName, QKeyEvent* theEvent)
178 {
179   int aKeyType = theEvent->key();
180   // the second point should be activated by any modification in the property panel
181   if (!theName.empty())
182   {
183     //setPointSelectionMode(myFeaturePrs->getNextMode(theName), false);
184   }
185   keyReleased(theEvent->key());
186 }
187
188 void PartSet_OperationFeatureCreate::onWidgetActivated(ModuleBase_ModelWidget* theWidget)
189 {
190   myActiveWidget = theWidget;
191   if ((myPreSelection.size() > 0) && myActiveWidget) {
192     const ModuleBase_ViewerPrs& aPrs = myPreSelection.front();
193     ModuleBase_WidgetValueFeature aValue;
194     aValue.setObject(aPrs.object());
195     if (myActiveWidget->setValue(&aValue)) {
196       myPreSelection.remove(aPrs);
197       emit activateNextWidget(myActiveWidget);
198     }
199   } 
200   if (myInitFeature && myActiveWidget) {
201     ModuleBase_WidgetPoint2D* aWgt = dynamic_cast<ModuleBase_WidgetPoint2D*>(myActiveWidget);
202     if (aWgt && aWgt->initFromPrevious(myInitFeature)) { 
203       myInitFeature = FeaturePtr();
204       emit activateNextWidget(myActiveWidget);
205     }
206   }
207 }
208
209 void PartSet_OperationFeatureCreate::keyReleased(const int theKey)
210 {
211   switch (theKey) {
212     case Qt::Key_Return: {
213       if (canBeCommitted())
214       {
215         commit();
216         // it start a new line creation at a free point
217         restartOperation(feature()->getKind(), FeaturePtr());
218       }
219     }
220     break;
221     case Qt::Key_Escape: {
222       if (canBeCommitted())
223       {
224         commit();
225       }
226       else
227       {
228         abort();
229       }
230     }
231     default:
232     break;
233   }
234 }
235
236 void PartSet_OperationFeatureCreate::startOperation()
237 {
238   PartSet_OperationSketchBase::startOperation();
239   //setPointSelectionMode(!myInitFeature ? SM_FirstPoint : SM_SecondPoint);
240
241   emit multiSelectionEnabled(false);
242 }
243
244 void PartSet_OperationFeatureCreate::abortOperation()
245 {
246   emit featureConstructed(feature(), FM_Hide);
247   PartSet_OperationSketchBase::abortOperation();
248 }
249
250 void PartSet_OperationFeatureCreate::stopOperation()
251 {
252   PartSet_OperationSketchBase::stopOperation();
253   emit multiSelectionEnabled(true);
254 }
255
256 void PartSet_OperationFeatureCreate::afterCommitOperation()
257 {
258   PartSet_OperationSketchBase::afterCommitOperation();  
259   emit featureConstructed(feature(), FM_Deactivation);
260 }
261
262 FeaturePtr PartSet_OperationFeatureCreate::createFeature(const bool theFlushMessage)
263 {
264   FeaturePtr aNewFeature = ModuleBase_Operation::createFeature(false);
265   if (sketch()) {
266     boost::shared_ptr<SketchPlugin_Feature> aFeature = 
267                            boost::dynamic_pointer_cast<SketchPlugin_Feature>(sketch());
268
269     aFeature->addSub(aNewFeature);
270   }
271   //myFeaturePrs->init(aNewFeature);
272   //myFeaturePrs->setFeature(myInitFeature, SM_FirstPoint);
273
274 //TODO  emit featureConstructed(aNewFeature, FM_Activation);
275   if (theFlushMessage)
276     flushCreated();
277   return aNewFeature;
278 }
279
280 bool PartSet_OperationFeatureCreate::setWidgetValue(ObjectPtr theFeature, double theX, double theY)
281 {
282   ModuleBase_WidgetValueFeature* aValue = new ModuleBase_WidgetValueFeature();
283   aValue->setObject(theFeature);
284   aValue->setPoint(boost::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(theX, theY)));
285   bool isApplyed = myActiveWidget->setValue(aValue);
286
287   delete aValue;
288   myIsModified = (myIsModified || isApplyed);
289   return isApplyed;
290 }