Salome HOME
Issue #3231: Convert Offset curves to b-splines. Order wires.
[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
28 #include <GeomAPI_Edge.h>
29 #include <GeomAPI_IPresentable.h>
30
31 /**\class SketchPlugin_Offset
32  * \ingroup Plugins
33  * \brief Builds offset curves in the sketch.
34  */
35 class SketchPlugin_Offset : public SketchPlugin_SketchEntity, public GeomAPI_IPresentable
36 {
37 public:
38   /// Offset macro feature kind
39   inline static const std::string& ID()
40   {
41     static const std::string ID("SketchOffset");
42     return ID;
43   }
44
45   /// Returns the kind of a feature
46   SKETCHPLUGIN_EXPORT virtual const std::string& getKind()
47   {
48     static std::string MY_KIND = SketchPlugin_Offset::ID();
49     return MY_KIND;
50   }
51
52   /// list of offset edges
53   inline static const std::string& EDGES_ID()
54   {
55     static const std::string ID("segments");
56     return ID;
57   }
58
59   /// attribute to store the offset value
60   inline static const std::string& VALUE_ID()
61   {
62     static const std::string ID("offset_value");
63     return ID;
64   }
65
66   /// attribute to store the reversed offset direction
67   inline static const std::string& REVERSED_ID()
68   {
69     static const std::string ID("reversed");
70     return ID;
71   }
72
73   /// name for add wire action
74   inline static const std::string& ADD_WIRE_ACTION_ID()
75   {
76     static const std::string ID("add_wire");
77     return ID;
78   }
79
80   /// Called on change of any argument-attribute of this object
81   SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
82
83   /// Creates a new part document if needed
84   SKETCHPLUGIN_EXPORT virtual void execute();
85
86   /// Reimplemented from ModelAPI_Feature::isMacro().
87   /// \returns true
88   //SKETCHPLUGIN_EXPORT virtual bool isMacro() const { return false; }
89
90   //SKETCHPLUGIN_EXPORT virtual bool isPreviewNeeded() const { return false; }
91   SKETCHPLUGIN_EXPORT virtual bool isPreviewNeeded() const { return true; }
92
93   /// Find edges connected by coincident boundary constraint and composing a wire with
94   /// the already selected segments. It means that not more than 2 edges can be connected
95   /// with the coincident point.
96   /// \param[in] theActionId action key id (in following form: Action#Index)
97   /// \return \c false in case the action not performed.
98   SKETCHPLUGIN_EXPORT virtual bool customAction(const std::string& theActionId);
99
100   /// Returns the AIS preview
101   SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious);
102
103   /// Use plugin manager for features creation.
104   SketchPlugin_Offset();
105
106 protected:
107   /// \brief Initializes attributes of derived class.
108   virtual void initDerivedClassAttributes();
109
110 private:
111   /// Find all wires connected with the selected edges
112   bool findWires();
113
114   // Create sketch feature for each edge of theOffsetResult,
115   // and store it in myCreatedFeatures to remove on next execute()
116   void addToSketch (const std::shared_ptr<GeomAPI_Shape>& theOffsetResult);
117
118   // Create BSpline or BSplinePeriodic sketch feature from theEdge
119   void mkBSpline (FeaturePtr& theResult, const GeomEdgePtr& theEdge);
120
121   // Find edges that prolongate theEdgeFeature (in a chain) at theEndPoint
122   // Recursive method.
123   // \param[in] theFirstEdge Start edge of wire searching
124   // \param[in] theEdge Current edge
125   // \param[in] theEndPoint Point of the Current edge, not belonging to a previous edge
126   // \param[in/out] theEdgesSet All edges to find among. If empty, all sketch edges assumed.
127   // \param[in/out] theChain Resulting edges
128   // \param[in] isPrepend if true, push new found edges to theChain front, else to the back
129   /// \return \c true if the chain is closed
130   bool findWireOneWay (const FeaturePtr& theFirstEdge,
131                        const FeaturePtr& theEdge,
132                        const std::shared_ptr<GeomDataAPI_Point2D>& theEndPoint,
133                        std::set<FeaturePtr>& theEdgesSet,
134                        std::list<FeaturePtr>& theChain,
135                        const bool isPrepend = false);
136
137   // tmp
138   std::set<FeaturePtr> myCreatedFeatures;
139 };
140
141 #endif