Salome HOME
Sketch Offset: an attempt to add ellipses and bsplines
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Offset.h
1 // Copyright (C) 2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef SketchPlugin_Offset_H_
21 #define SketchPlugin_Offset_H_
22
23 #include <SketchPlugin.h>
24 #include <SketchPlugin_SketchEntity.h>
25
26 #include <GeomDataAPI_Point2D.h>
27 #include <GeomAPI_Edge.h>
28
29 /**\class SketchPlugin_Offset
30  * \ingroup Plugins
31  * \brief Builds offset curves in the sketch.
32  */
33 class SketchPlugin_Offset : public SketchPlugin_SketchEntity
34 {
35 public:
36   /// Offset macro feature kind
37   inline static const std::string& ID()
38   {
39     static const std::string ID("SketchOffset");
40     return ID;
41   }
42
43   /// Returns the kind of a feature
44   SKETCHPLUGIN_EXPORT virtual const std::string& getKind()
45   {
46     static std::string MY_KIND = SketchPlugin_Offset::ID();
47     return MY_KIND;
48   }
49
50   /// list of offset edges
51   inline static const std::string& EDGES_ID()
52   {
53     static const std::string ID("segments");
54     return ID;
55   }
56
57   /// attribute to store the offset value
58   inline static const std::string& VALUE_ID()
59   {
60     static const std::string ID("offset_value");
61     return ID;
62   }
63
64   /// attribute to store the reversed offset direction
65   inline static const std::string& REVERSED_ID()
66   {
67     static const std::string ID("reversed");
68     return ID;
69   }
70
71   /// name for add wire action
72   inline static const std::string& ADD_WIRE_ACTION_ID()
73   {
74     static const std::string ID("add_wire");
75     return ID;
76   }
77
78   /// Called on change of any argument-attribute of this object
79   SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
80
81   /// Creates a new part document if needed
82   SKETCHPLUGIN_EXPORT virtual void execute();
83
84   /// Reimplemented from ModelAPI_Feature::isMacro().
85   /// \returns true
86   SKETCHPLUGIN_EXPORT virtual bool isMacro() const { return true; }
87
88   //SKETCHPLUGIN_EXPORT virtual bool isPreviewNeeded() const { return false; }
89   SKETCHPLUGIN_EXPORT virtual bool isPreviewNeeded() const { return true; }
90
91   /// Find edges connected by coincident boundary constraint and composing a wire with
92   /// the already selected segments. It means that not more than 2 edges can be connected
93   /// with the coincident point.
94   /// \param[in] theActionId action key id (in following form: Action#Index)
95   /// \return \c false in case the action not performed.
96   SKETCHPLUGIN_EXPORT virtual bool customAction(const std::string& theActionId);
97
98   /// Use plugin manager for features creation.
99   SketchPlugin_Offset();
100
101 protected:
102   /// \brief Initializes attributes of derived class.
103   virtual void initDerivedClassAttributes();
104
105 private:
106   /// Find all wires connected with the selected edges
107   bool findWires();
108
109   // Create sketch feature for each edge of theOffsetResult,
110   // and store it in myCreatedFeatures to remove on next execute()
111   void addToSketch (const std::shared_ptr<GeomAPI_Shape>& theOffsetResult);
112
113   // Create BSpline or BSplinePeriodic sketch feature from theEdge
114   void mkBSpline (FeaturePtr& theResult, const GeomEdgePtr& theEdge);
115
116   // Find edges that prolongate theEdgeFeature (in a chain) at theEndPoint
117   // Recursive method.
118   // \param[in] theFirstEdge Start edge of wire searching
119   // \param[in] theEdge Current edge
120   // \param[in] theEndPoint Point of the Current edge, not belonging to a previous edge
121   // \param[in/out] theEdgesSet All edges to find among. If empty, all sketch edges assumed.
122   // \param[in/out] theChain Resulting edges
123   /// \return \c true if the chain is closed
124   bool findWireOneWay (const FeaturePtr& theFirstEdge,
125                        const FeaturePtr& theEdge,
126                        const std::shared_ptr<GeomDataAPI_Point2D>& theEndPoint,
127                        std::set<FeaturePtr>& theEdgesSet,
128                        std::list<FeaturePtr>& theChain);
129
130   // tmp
131   std::set<FeaturePtr> myCreatedFeatures;
132 };
133
134 #endif