]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_OperationFeatureCreate.cpp
Salome HOME
Merge branch 'master' of newgeom:newgeom
[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   if (PartSet_OperationSketchBase::canBeCommitted())
71     return !myActiveWidget;
72   return false;
73 }
74
75 bool PartSet_OperationFeatureCreate::isGranted(ModuleBase_IOperation* theOperation) const
76 {
77   return theOperation->getDescription()->operationId().toStdString() == PartSet_OperationSketch::Type();
78 }
79
80 std::list<int> PartSet_OperationFeatureCreate::getSelectionModes(ObjectPtr theFeature) const
81 {
82   std::list<int> aModes;
83   if (theFeature != feature())
84     aModes = PartSet_OperationSketchBase::getSelectionModes(theFeature);
85   return aModes;
86 }
87
88 void PartSet_OperationFeatureCreate::initSelection(const std::list<ModuleBase_ViewerPrs>& theSelected,
89                                                    const std::list<ModuleBase_ViewerPrs>& /*theHighlighted*/)
90 {
91   myPreSelection = theSelected;
92 }
93
94 void PartSet_OperationFeatureCreate::initFeature(FeaturePtr theFeature)
95 {
96   myInitFeature = theFeature;
97 }
98
99
100 FeaturePtr PartSet_OperationFeatureCreate::sketch() const
101 {
102   return mySketch;
103 }
104
105 void PartSet_OperationFeatureCreate::mouseReleased(QMouseEvent* theEvent, Handle(V3d_View) theView,
106                                                 const std::list<ModuleBase_ViewerPrs>& theSelected,
107                                                 const std::list<ModuleBase_ViewerPrs>& /*theHighlighted*/)
108 {
109   if (commit()) {
110     // if the point creation is finished, the next mouse release should commit the modification
111     // the next release can happens by double click in the viewer
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 (commit()) {
165     restartOperation(feature()->getKind(), feature());
166   }
167   else {
168     double aX, anY;
169     gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), theView);
170     PartSet_Tools::convertTo2D(aPoint, sketch(), theView, aX, anY);
171     setWidgetValue(feature(), aX, anY);
172     flushUpdated();
173   }
174 }
175
176 void PartSet_OperationFeatureCreate::keyReleased(std::string theName, QKeyEvent* theEvent)
177 {
178   int aKeyType = theEvent->key();
179   // the second point should be activated by any modification in the property panel
180   if (!theName.empty())
181   {
182     //setPointSelectionMode(myFeaturePrs->getNextMode(theName), false);
183   }
184   keyReleased(theEvent->key());
185 }
186
187 void PartSet_OperationFeatureCreate::onWidgetActivated(ModuleBase_ModelWidget* theWidget)
188 {
189   myActiveWidget = theWidget;
190   if ((myPreSelection.size() > 0) && myActiveWidget) {
191     const ModuleBase_ViewerPrs& aPrs = myPreSelection.front();
192     ModuleBase_WidgetValueFeature aValue;
193     aValue.setObject(aPrs.object());
194     if (myActiveWidget->setValue(&aValue)) {
195       myPreSelection.remove(aPrs);
196       emit activateNextWidget(myActiveWidget);
197     }
198   } 
199   if (myInitFeature && myActiveWidget) {
200     ModuleBase_WidgetPoint2D* aWgt = dynamic_cast<ModuleBase_WidgetPoint2D*>(myActiveWidget);
201     if (aWgt && aWgt->initFromPrevious(myInitFeature)) { 
202       myInitFeature = FeaturePtr();
203       emit activateNextWidget(myActiveWidget);
204     }
205   }
206 }
207
208 void PartSet_OperationFeatureCreate::keyReleased(const int theKey)
209 {
210   switch (theKey) {
211     case Qt::Key_Return: {
212       if (commit()) {
213         // it start a new line creation at a free point
214         restartOperation(feature()->getKind(), FeaturePtr());
215       }
216     }
217     break;
218     case Qt::Key_Escape: {
219       if (!commit()) {
220         abort();
221       }
222     }
223     default:
224     break;
225   }
226 }
227
228 void PartSet_OperationFeatureCreate::startOperation()
229 {
230   PartSet_OperationSketchBase::startOperation();
231   //setPointSelectionMode(!myInitFeature ? SM_FirstPoint : SM_SecondPoint);
232
233   emit multiSelectionEnabled(false);
234 }
235
236 void PartSet_OperationFeatureCreate::abortOperation()
237 {
238   emit featureConstructed(feature(), FM_Hide);
239   PartSet_OperationSketchBase::abortOperation();
240 }
241
242 void PartSet_OperationFeatureCreate::stopOperation()
243 {
244   PartSet_OperationSketchBase::stopOperation();
245   emit multiSelectionEnabled(true);
246 }
247
248 void PartSet_OperationFeatureCreate::afterCommitOperation()
249 {
250   PartSet_OperationSketchBase::afterCommitOperation();  
251   emit featureConstructed(feature(), FM_Deactivation);
252 }
253
254 FeaturePtr PartSet_OperationFeatureCreate::createFeature(const bool theFlushMessage)
255 {
256   FeaturePtr aNewFeature = ModuleBase_Operation::createFeature(false);
257   if (sketch()) {
258     boost::shared_ptr<SketchPlugin_Feature> aFeature = 
259                            boost::dynamic_pointer_cast<SketchPlugin_Feature>(sketch());
260
261     aFeature->addSub(aNewFeature);
262   }
263   //myFeaturePrs->init(aNewFeature);
264   //myFeaturePrs->setFeature(myInitFeature, SM_FirstPoint);
265
266 //TODO  emit featureConstructed(aNewFeature, FM_Activation);
267   if (theFlushMessage)
268     flushCreated();
269   return aNewFeature;
270 }
271
272 bool PartSet_OperationFeatureCreate::setWidgetValue(ObjectPtr theFeature, double theX, double theY)
273 {
274   ModuleBase_WidgetValueFeature* aValue = new ModuleBase_WidgetValueFeature();
275   aValue->setObject(theFeature);
276   aValue->setPoint(boost::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(theX, theY)));
277   bool isApplyed = myActiveWidget->setValue(aValue);
278
279   delete aValue;
280   myIsModified = (myIsModified || isApplyed);
281   return isApplyed;
282 }