Salome HOME
Fix for registering of parameters in command line.
[modules/shaper.git] / src / PartSet / PartSet_Tools.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_Tools.h
4 // Created:     28 Apr 2014
5 // Author:      Natalia ERMOLAEVA
6
7 #ifndef PartSet_Tools_H
8 #define PartSet_Tools_H
9
10 #include "PartSet.h"
11
12 #include <gp_Pnt.hxx>
13
14 #include <QPoint>
15 #include <QList>
16
17 #include <ModelAPI_CompositeFeature.h>
18 #include <ModelAPI_Object.h>
19 #include <ModelAPI_Attribute.h>
20
21 #include <Events_Message.h>
22
23 #include <TopoDS_Shape.hxx>
24
25 #include <memory>
26
27 class V3d_View;
28 class ModuleBase_ViewerPrs;
29 class ModuleBase_IWorkshop;
30 class GeomDataAPI_Point2D;
31 class GeomAPI_Shape;
32 class GeomAPI_Pln;
33 class GeomAPI_Pnt2d;
34 class GeomAPI_Pnt;
35 class GeomAPI_Edge;
36 class GeomAPI_Vertex;
37 class ModelAPI_Result;
38
39 /*!
40  * \class PartSet_Tools
41  * \ingroup Modules
42  * \brief The operation for the sketch feature creation
43  */
44 class PARTSET_EXPORT PartSet_Tools
45 {
46 public:
47   /// \enum ConstraintVisibleState types of constraints which visible state can be
48   /// changed in the sketch widget
49   enum ConstraintVisibleState
50   {
51     Geometrical = 0, // all constrains excepting dimensional
52     Dimensional,     // lenght, distance, radius and angle constraints
53     Expressions,     // parameter text should be shown in dimensional constraint
54     Any              // both, geometrical and dimensional, types of constraints
55   };
56
57  public:
58   /// Returns default value of AIS presentation
59   /// \return integer value
60   static int getAISDefaultWidth();
61
62   /// Converts the 2D screen point to the 3D point on the view according to the point of view
63   /// \param thePoint a screen point
64   /// \param theView a 3D view
65   static gp_Pnt convertClickToPoint(QPoint thePoint, Handle(V3d_View) theView);
66
67   /// \brief Converts the 3D point to the projected coodinates on the sketch plane.
68   /// \param thePoint the 3D point in the viewer
69   /// \param theSketch the sketch feature
70   /// \param theView a view 3d object
71   /// \param theX the X coordinate
72   /// \param theY the Y coordinate
73   static void convertTo2D(const gp_Pnt& thePoint, FeaturePtr theSketch,
74                           Handle(V3d_View) theView,
75                           double& theX, double& theY);
76
77   /// \brief Converts the 3D point to the projected coodinates on the sketch plane.
78   /// \param theSketch the sketch feature
79   /// \param thePnt the 3D point in the viewer
80   /// \returns the converted point object
81   static std::shared_ptr<GeomAPI_Pnt2d> convertTo2D(FeaturePtr theSketch,
82                                                     const std::shared_ptr<GeomAPI_Pnt>& thePnt);
83
84   /// \brief Converts the 2D projected coodinates on the sketch plane to the 3D point.
85   /// \param theX the X coordinate
86   /// \param theY the Y coordinate
87   /// \param theSketch the sketch feature
88   static std::shared_ptr<GeomAPI_Pnt> convertTo3D(const double theX, const double theY,
89                                                   FeaturePtr theSketch);
90
91   /// Returns pointer to the root document.
92   static std::shared_ptr<ModelAPI_Document> document();
93
94   /// \brief Save the double to the feature. If the attribute is double, it is filled.
95   /// \param theFeature the feature
96   /// \param theX the horizontal coordinate
97   /// \param theAttribute the feature attribute
98   static void setFeatureValue(FeaturePtr theFeature, double theX, const std::string& theAttribute);
99
100   /// \brief Returns the feature double value if it is.
101   /// \param theFeature the feature
102   /// \param theAttribute the feature attribute
103   /// \param isValid an output parameter whether the value is valid
104   /// \returns the feature value
105   static double featureValue(FeaturePtr theFeature, const std::string& theAttribute, bool& isValid);
106
107   /// Find a feature in the attribute of the given feature. If the kind is not empty,
108   /// the return feature should be this type. Otherwise it is null
109   /// \param theFeature a source feature
110   /// \param theAttribute a name of the requried attribute attribute
111   /// \param theKind an output feature kind
112   /// \return the feature
113   static FeaturePtr feature(FeaturePtr theFeature, const std::string& theAttribute,
114                             const std::string& theKind);
115
116   /// Creates a constraint on two points
117   /// \param theSketch a sketch feature
118   /// \param thePoint1 the first point
119   /// \param thePoint2 the second point
120   static void createConstraint(CompositeFeaturePtr theSketch,
121                                std::shared_ptr<GeomDataAPI_Point2D> thePoint1,
122                                std::shared_ptr<GeomDataAPI_Point2D> thePoint2);
123
124   /// Finds in the feature's sub-features first Point2D attribute with the given point coordinates
125   /// \param theFeature a feature with sub-feature attributes
126   /// \param thePoint a point to provided searched coordinates
127   /// \return found point or null
128   static std::shared_ptr<GeomDataAPI_Point2D> findFirstEqualPointInArgumentFeatures(
129                   const FeaturePtr& theFeature, const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
130
131   /// Finds in the feature first Point2D attribute with the given point coordinates
132   /// \param theFeature a feature with point attributes
133   /// \param thePoint a point to provided searched coordinates
134   /// \return found point or null
135   static std::shared_ptr<GeomDataAPI_Point2D> findFirstEqualPoint(const FeaturePtr& theFeature,
136                                        const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
137
138   static std::shared_ptr<GeomDataAPI_Point2D> findFirstEqualPointInSketch(
139                                        const CompositeFeaturePtr& theSketch,
140                                        const std::shared_ptr<GeomDataAPI_Point2D>& theFeaturePoint,
141                                        const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
142
143   /// Create a sketch plane instance
144   /// \param theSketch a sketch feature
145   /// \return API object of geom plane
146   static std::shared_ptr<GeomAPI_Pln> sketchPlane(CompositeFeaturePtr theSketch);
147
148   /// Create a point 3D on a basis of point 2D and sketch feature
149   /// \param thePoint2D a point on a sketch
150   /// \param theSketch a sketch feature
151   /// \return API object of point 3D
152   static std::shared_ptr<GeomAPI_Pnt> point3D(std::shared_ptr<GeomAPI_Pnt2d> thePoint2D,
153                                                 CompositeFeaturePtr theSketch);
154
155   /// Finds a line (arc or circle) by given edge
156   /// \param theShape an edge
157   /// \param theObject a selected result object
158   /// \param theSketch a sketch feature
159   /// \return result of found feature or NULL
160   static std::shared_ptr<ModelAPI_Result> findFixedObjectByExternal(
161                                              const TopoDS_Shape& theShape,
162                                              const ObjectPtr& theObject,
163                                              CompositeFeaturePtr theSketch);
164
165   /// Creates a line (arc or circle) by given edge
166   /// Created line will have fixed constraint
167   /// \param theShape an edge
168   /// \param theObject a selected result object
169   /// \param theSketch a sketch feature
170   /// \param theTemporary the created external object is temporary, execute is not performed for it
171   /// \return result of created feature
172   static std::shared_ptr<ModelAPI_Result> createFixedObjectByExternal(
173                                                const TopoDS_Shape& theShape,
174                                                const ObjectPtr& theObject,
175                                                CompositeFeaturePtr theSketch,
176                                                const bool theTemporary = false);
177
178     /// Checks whether the list of selected presentations contains the given one
179   /// \param theSelected a list of presentations
180   /// \param thePrs a presentation to be found
181   /// \return - result of check, true if the list contains the prs
182   static bool isContainPresentation(const QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theSelected,
183                                     const std::shared_ptr<ModuleBase_ViewerPrs>& thePrs);
184
185   /// Returns Result object if the given skietch contains external edge equal to the given
186   /// \param theSketch - the sketch feature
187   /// \param theEdge - the edge
188   /// \return result object with external edge if it is found
189   static std::shared_ptr<ModelAPI_Result> findExternalEdge(CompositeFeaturePtr theSketch,
190                                                            std::shared_ptr<GeomAPI_Edge> theEdge);
191
192   /// Returns Result object if the given sketch contains external vertex equal to the given
193   /// \param theSketch - the sketch feature
194   /// \param theVert - the vertex
195   /// \return result object with external vertex if it is found
196   static std::shared_ptr<ModelAPI_Result> findExternalVertex(CompositeFeaturePtr theSketch,
197                                                         std::shared_ptr<GeomAPI_Vertex> theVert);
198
199   /// Returns whether the selected presentation has a shape with the vertex type
200   /// \param thePrs a selected presentation
201   /// \param theSketch the sketch feature
202   /// \param theView a 3D view
203   /// \param theX the output horizontal coordinate of the point
204   /// \param theY the output vertical coordinate of the point
205   static bool hasVertexShape(const std::shared_ptr<ModuleBase_ViewerPrs>& thePrs,
206                              FeaturePtr theSketch,
207                              Handle(V3d_View) theView, double& theX, double& theY);
208
209
210   /**
211   * Find attribute of object which corresponds to the given shape
212   * \param theObj - an object
213   * \param theShape - a Shape
214   * \param theSketch - a Sketch to get a plane of converting to 2d
215   */
216   static AttributePtr findAttributeBy2dPoint(ObjectPtr theObj, const TopoDS_Shape theShape,
217                                              FeaturePtr theSketch);
218
219   /**
220   * Finds an attribute value in attribute reference attribute value
221   * \param theAttribute - an attribure reference filled with an attribute
222   * \param theWorkshop a reference to workshop
223   * \return a geometry shape
224   */
225   static std::shared_ptr<GeomAPI_Shape> findShapeBy2DPoint(const AttributePtr& theAttribute,
226                                          ModuleBase_IWorkshop* theWorkshop);
227
228   /**
229   * Returns point of coincidence feature
230   * \param theFeature the coincidence feature
231   * \param theAttribute the attribute name
232   */
233   static std::shared_ptr<GeomAPI_Pnt2d> getPoint(std::shared_ptr<ModelAPI_Feature>& theFeature,
234                                                  const std::string& theAttribute);
235
236   /**
237   * Gets all references to the feature, take coincidence constraint features, get point 2d attributes
238   * and compare the point value to be equal with the given. Returns the first feature, which has
239   * equal points.
240   * \param theFeature the coincidence feature
241   * \param thePoint a 2d point
242   * \return the coincidence feature or null
243   */
244   static FeaturePtr findFirstCoincidence(const FeaturePtr& theFeature,
245                                          std::shared_ptr<GeomAPI_Pnt2d> thePoint);
246
247   /**
248   * Returns list of features connected in a councedence feature point
249   * \param theStartCoin the coincidence feature
250   * \param theList a list which collects lines features
251   * \param theCoincidencies a list of coincidence features
252   * \param theAttr the attribute name
253   */
254   static void findCoincidences(FeaturePtr theStartCoin, QList<FeaturePtr>& theList,
255                                QList<FeaturePtr>& theCoincidencies,
256                                std::string theAttr);
257
258   /**
259   * Returns point of a coincedence
260   * \param theStartCoin the coincedence feature
261   */
262   static std::shared_ptr<GeomAPI_Pnt2d> getCoincedencePoint(FeaturePtr theStartCoin);
263
264   /// Sends redisplay event for all sub-features of the composite. Flush it.
265   static void sendSubFeaturesEvent(const CompositeFeaturePtr& theComposite,
266                                    const Events_ID theId);
267
268   /**
269    * Returns true if the object is a sketch entity, where auxiliary attribute has true vlaue
270    * \param theObject a result or feature
271    * \return boolean result
272    */
273   static bool isAuxiliarySketchEntity(const ObjectPtr& theObject);
274 };
275
276 #endif