Salome HOME
4c1e2bfeafbda53d684c41b3c9892177a7201ba6
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintSplit.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:    SketchPlugin_ConstraintSplit.h
4 // Created: 25 Aug 2016
5 // Author:  Natalia ERMOLAEVA
6
7 #ifndef SketchPlugin_ConstraintSplit_H_
8 #define SketchPlugin_ConstraintSplit_H_
9
10 #include "SketchPlugin.h"
11 #include <SketchPlugin_Sketch.h>
12 #include "SketchPlugin_ConstraintBase.h"
13
14 class GeomDataAPI_Point2D;
15 class ModelAPI_Feature;
16 class ModelAPI_Result;
17
18 typedef std::pair<std::string, std::shared_ptr<GeomDataAPI_Point2D> > IdToPointPair;
19
20 /** \class SketchPlugin_ConstraintSplit
21  *  \ingroup Plugins
22  *  \brief Feature for creation of a new constraint splitting object. Entities for split:
23  * - Linear segment by point(s) on this line
24  * - Arc by point(s) on this arc
25  * - Circle by at least 2 split-points on this circle
26  *
27  * The following constraints will be applied after split to keep the divided segments geometry:
28  * - Coincident constraints for both parts of created segments in the point of splitting
29  * - For linear segments parallel, for circles \96 tangent constraint, for arc \96 tangent and equal
30  *   constraints. In case of three segments in result two couple of constraints are created
31  *    - parallel and equal constraints: the first is between 1st and middle entity, the second is
32  *      between 1st and 3rd.
33  *    - tangency constraints: the first between 1st and 2nd, the second between 2nd and 3rd.
34  * - Constraints assigned to the feature before split operation are assigned after using rules:
35  *    - Coincident constraints are assigned to the segment where they belong to. Segment of split
36  *      has only a coincidence to the neighbor segment. All constraints used in the splitting of
37  *      this segment are moved to point of neighbor segment. If constraint was initially built
38  *      to the point of splitting segment, it stays for this point.
39  *    - Geometrical and dimensional constraints are assigned to one of result segment, not the
40  *      selected for split. In case of 3 result segments, this will be the segment nearest to the
41  *      start point of arc/line.
42  *    - Replication constraint used split feature will be deleted in the same way as it is deleted
43  *      by any of entity delete in sketch which is used in this constraint.
44  *
45  *  This constraint has three attributes:
46  *  SketchPlugin_Constraint::VALUE() contains reference object to be splitted
47  *  SketchPlugin_Constraint::ENTITY_A() and SketchPlugin_Constraint::ENTITY_B() for the points of split;
48  *
49  */
50 class SketchPlugin_ConstraintSplit : public SketchPlugin_ConstraintBase
51 {
52  public:
53   /// Split constraint kind
54   inline static const std::string& ID()
55   {
56     static const std::string MY_CONSTRAINT_SPLIT_ID("SketchConstraintSplit");
57     return MY_CONSTRAINT_SPLIT_ID;
58   }
59   /// \brief Returns the kind of a feature
60   SKETCHPLUGIN_EXPORT virtual const std::string& getKind()
61   {
62     static std::string MY_KIND = SketchPlugin_ConstraintSplit::ID();
63     return MY_KIND;
64   }
65
66   /// \brief Creates a new part document if needed
67   SKETCHPLUGIN_EXPORT virtual void execute();
68
69   /// \brief Request for initialization of data model of the feature: adding all attributes
70   SKETCHPLUGIN_EXPORT virtual void initAttributes();
71
72   /// Reimplemented from ModelAPI_Feature::isMacro().
73   /// \returns true
74   SKETCHPLUGIN_EXPORT virtual bool isMacro() const;
75
76   /// Reimplemented from ModelAPI_Feature::isPreviewNeeded(). Returns false.
77   /// This is necessary to perform execute only by apply the feature
78   SKETCHPLUGIN_EXPORT virtual bool isPreviewNeeded() const { return false; }
79
80   /// \brief Use plugin manager for features creation
81   SketchPlugin_ConstraintSplit();
82
83   /// \return map of base points and features;
84   //SKETCHPLUGIN_EXPORT const std::map<AttributePtr, FilletFeatures> pointsFeaturesMap() const {
85   //  return myPointFeaturesMap;
86   //};
87
88 private:
89   /// Returns geom point attribute of the feature bounds. It processes line or arc.
90   /// For circle feature, the result attributes are null
91   /// \param theStartPointAttr an out attribute to start point
92   /// \param theStartPointAttr an out attribute to end point
93   void getFeaturePoints(std::shared_ptr<GeomDataAPI_Point2D>& theStartPointAttr,
94                         std::shared_ptr<GeomDataAPI_Point2D>& theEndPointAttr);
95
96   /// Returns cast of attribute to geometrical point if the attribute is a ref attr attribute
97   /// \param theAttribute an attribute
98   /// \param geom point 2D or NULL
99   std::shared_ptr<GeomDataAPI_Point2D> getPointOfRefAttr(const AttributePtr& theAttribute);
100
101   /// Obtains those constraints of the feature that should be modified. output maps contain
102   /// point of coincidence and attribute id to be modified after split
103   /// \param theFeaturesToDelete [out] constrains that will be deleted after split
104   /// \param theTangentFeatures  [out] tangent feature to be connected to new feature
105   /// \param theCoincidenceToFeature [out] coincidence to feature to be connected to new feature
106   /// \param theCoincidenceToPoint [out] coincidence to point be connected to new feature
107   void getConstraints(std::set<std::shared_ptr<ModelAPI_Feature>>& theFeaturesToDelete,
108               std::map<std::shared_ptr<ModelAPI_Feature>, IdToPointPair>& theTangentFeatures,
109               std::map<std::shared_ptr<ModelAPI_Feature>, IdToPointPair>& theCoincidenceToFeature,
110               std::map<std::shared_ptr<ModelAPI_Feature>, IdToPointPair>& theCoincidenceToPoint);
111
112   /// Move coincidence constraint from feature to point if it is found
113   /// \param theCoincidenceToFeature coincidence to feature to be connected to new feature
114   /// \param theFurtherCoincidences a list of points where coincidences will be build
115   /// \paramv theFeatureResults created results after split where constaint might be connected
116   void updateCoincidenceConstraintsToFeature(
117               const std::map<std::shared_ptr<ModelAPI_Feature>, IdToPointPair>& theCoincidenceToFeature,
118               const std::set<std::shared_ptr<GeomDataAPI_Point2D> >& theFurtherCoincidences,
119               const std::set<ResultPtr>& theFeatureResults);
120
121   /// Move tangency constraint to the nearest split feature that has a coincidence to the tangent
122   /// \param theTangentFeatures tangencies to feature to be connected to nearest feature
123   /// \param theFurtherCoincidences a list of points where coincidences is built
124   void updateTangentConstraintsToFeature(
125               const std::map<std::shared_ptr<ModelAPI_Feature>, IdToPointPair>& theTangentFeatures,
126               const std::set<std::shared_ptr<GeomDataAPI_Point2D> >& theFurtherCoincidences);
127
128   /// Make the base object is splitted by the point attributes
129   /// \param theSplitFeature a result split feature
130   /// \param theBeforeFeature a feature between start point and the 1st point of split feature
131   /// \param theAfterFeature a feature between last point of split feature and the end point
132   /// \param thePoints a list of points where coincidences will be build
133   /// \param theCreatedFeatures a container of created features
134   void splitLine(std::shared_ptr<ModelAPI_Feature>& theSplitFeature,
135                  std::shared_ptr<ModelAPI_Feature>& theBeforeFeature,
136                  std::shared_ptr<ModelAPI_Feature>& theAfterFeature,
137                  std::set<std::shared_ptr<GeomDataAPI_Point2D> >& thePoints,
138                  std::set<std::shared_ptr<ModelAPI_Feature>>& theCreatedFeatures);
139
140   /// Make the base object is splitted by the point attributes
141   /// \param theSplitFeature a result split feature
142   /// \param theBeforeFeature a feature between start point and the 1st point of split feature
143   /// \param theAfterFeature a feature between last point of split feature and the end point
144   /// \param thePoints a list of points where coincidences will be build
145   /// \param theCreatedFeatures a container of created features
146   void splitArc(std::shared_ptr<ModelAPI_Feature>& theSplitFeature,
147                 std::shared_ptr<ModelAPI_Feature>& theBeforeFeature,
148                 std::shared_ptr<ModelAPI_Feature>& theAfterFeature,
149                 std::set<std::shared_ptr<GeomDataAPI_Point2D> >& thePoints,
150                 std::set<std::shared_ptr<ModelAPI_Feature>>& theCreatedFeatures);
151
152   /// Make the base object is splitted by the point attributes
153   /// \param theSplitFeature a result split feature
154   /// \param theBeforeFeature a feature between start point and the 1st point of split feature
155   /// \param theAfterFeature a feature between last point of split feature and the end point
156   /// \param thePoints a list of points where coincidences will be build
157   /// \param theCreatedFeatures a container of created features
158   void splitCircle(std::shared_ptr<ModelAPI_Feature>& theSplitFeature,
159                    std::shared_ptr<ModelAPI_Feature>& theBeforeFeature,
160                    std::shared_ptr<ModelAPI_Feature>& theAfterFeature,
161                    std::set<std::shared_ptr<GeomDataAPI_Point2D> >& thePoints,
162                    std::set<std::shared_ptr<ModelAPI_Feature>>& theCreatedFeatures);
163
164   /// Correct the first and the second point to provide condition that the first is closer to
165   /// the start point and the second point - to the last end of current segment. To rearrange
166   /// them if this condition is not satisfied.
167   /// \param theStartPointAttr a start point of a segment
168   /// \param theEndPointAttr an end point of a segment
169   /// \param theFirstPointAttr a start point of a segment
170   /// \param theSecondPointAttr an end point of a segment
171   void arrangePoints(const std::shared_ptr<GeomDataAPI_Point2D>& theStartPointAttr,
172                      const std::shared_ptr<GeomDataAPI_Point2D>& theEndPointAttr,
173                      std::shared_ptr<GeomDataAPI_Point2D>& theFirstPointAttr,
174                      std::shared_ptr<GeomDataAPI_Point2D>& theSecondPointAttr);
175
176   /// Fill attribute by value of another attribute. It processes only Point 2D attributes.
177   /// \param theModifiedAttribute an attribute of GeomDataAPI_Point2D on feature to be modified
178   /// \param theSourceAttribute an attribute of GeomDataAPI_Point2D to obtain data
179   void fillAttribute(const AttributePtr& theModifiedAttribute,
180                      const AttributePtr& theSourceAttribute);
181
182   /// Creates a line feature filled by center of base feature and given points
183   /// \param theBaseFeature another arc feature
184   /// \param theFirstAttribute an attribute with coordinates for the start point
185   /// \param theSecondAttribute an attribute with coordinates for the end point
186   FeaturePtr createLineFeature(const FeaturePtr& theBaseFeature,
187                                const AttributePtr& theFirstPointAttr,
188                                const AttributePtr& theSecondPointAttr);
189
190   /// Creates an arc feature filled by center of base feature and given points
191   /// \param theBaseFeature another arc feature
192   /// \param theFirstAttribute an attribute with coordinates for the start point
193   /// \param theSecondAttribute an attribute with coordinates for the end point
194   FeaturePtr createArcFeature(const FeaturePtr& theBaseFeature,
195                               const AttributePtr& theFirstPointAttr,
196                               const AttributePtr& theSecondPointAttr);
197
198   /// Add feature coincidence constraint between given attributes
199   /// \param theConstraintId a constraint index
200   /// \param theFirstAttribute an attribute of further coincidence
201   /// \param theSecondAttribute an attribute of further coincidence
202   std::shared_ptr<ModelAPI_Feature> createConstraint(const std::string& theConstraintId,
203                         const std::shared_ptr<ModelAPI_Attribute>& theFirstAttribute,
204                         const std::shared_ptr<ModelAPI_Attribute>& theSecondAttribute);
205
206   /// Add feature coincidence constraint between given attributes
207   /// \param theConstraintId a constraint index
208   /// \param theFirstAttribute an attribute of further coincidence
209   /// \param theFirstAttribute an attribute of further coincidence
210   std::shared_ptr<ModelAPI_Feature> createConstraintForObjects(const std::string& theConstraintId,
211                         const std::shared_ptr<ModelAPI_Object>& theFirstObject,
212                         const std::shared_ptr<ModelAPI_Object>& theSecondObject);
213
214   /// Result result of the feature to build constraint with. For arc, circle it is an edge result.
215   /// \param theFeature a feature
216   /// \return result object
217   std::shared_ptr<ModelAPI_Result> getFeatureResult(
218                                     const std::shared_ptr<ModelAPI_Feature>& theFeature);
219
220   /// Returns attributes of the feature, used in edge build, for arc it is end and start points
221   /// \param theFeature a feature
222   /// \return container of attributes
223   std::set<std::shared_ptr<ModelAPI_Attribute> > getEdgeAttributes(
224                                     const std::shared_ptr<ModelAPI_Feature>& theFeature);
225
226   /// Return feature name, kind, point attribute values united in a string
227   /// \param theFeature an investigated feature
228   /// \return string value
229   std::string getFeatureInfo(const std::shared_ptr<ModelAPI_Feature>& theFeature,
230                              const bool isUseAttributesInfo = true);
231 };
232
233 #endif