Salome HOME
updated copyright message
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Projection.h
1 // Copyright (C) 2014-2023  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_Projection_H_
21 #define SketchPlugin_Projection_H_
22
23 #include "SketchPlugin_SketchEntity.h"
24
25 class GeomAPI_Curve;
26
27 /** \class SketchPlugin_Projection
28  *  \ingroup Plugins
29  *  \brief Feature for creation of external feature as a projection onto the sketch plane.
30  */
31 class SketchPlugin_Projection : public SketchPlugin_SketchEntity
32 {
33 public:
34   /// Projection feature kind
35   inline static const std::string& ID()
36   {
37     static const std::string MY_PROJECTION_ID("SketchProjection");
38     return MY_PROJECTION_ID;
39   }
40   /// Returns the kind of a feature
41   virtual const std::string& getKind()
42   {
43     static std::string MY_KIND = SketchPlugin_Projection::ID();
44     return MY_KIND;
45   }
46
47   static const std::string& EXTERNAL_FEATURE_ID()
48   {
49     static std::string MY_EXT_FEATURE_ID("ExternalFeature");
50     return MY_EXT_FEATURE_ID;
51   }
52
53   static const std::string& PROJECTED_FEATURE_ID()
54   {
55     static std::string MY_PROJ_FEATURE_ID("ProjectedFeature");
56     return MY_PROJ_FEATURE_ID;
57   }
58
59   static const std::string& INCLUDE_INTO_RESULT()
60   {
61     static std::string MY_INCLUDE("IncludeToResult");
62     return MY_INCLUDE;
63   }
64
65   static const std::string& KEEP_REFERENCE_ID()
66   {
67     static std::string ID("keep_reference");
68     return ID;
69   }
70
71   static const std::string& MAKE_FIXED()
72   {
73     static std::string ID("make_fixed");
74     return ID;
75   }
76
77   static const std::string& FIXED_CONSTRAINT_ID()
78   {
79     static std::string ID("fixed_constraint");
80     return ID;
81   }
82
83   /// Returns true because projected feature is always external
84   virtual bool isFixed()
85   { return true; }
86
87   /// Returns true if the feature and the feature results can be displayed.
88   /// \return false
89   SKETCHPLUGIN_EXPORT virtual bool canBeDisplayed() const
90   {
91     return false;
92   }
93
94   /// Creates a new part document if needed
95   SKETCHPLUGIN_EXPORT virtual void execute();
96
97   /// Called on change of any argument-attribute of this object: for external point
98   SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
99
100   /// Returns true if this feature is used as macro: creates other features and then removed.
101   /// This feature may change its macro-state according to selected item.
102   /// \returns false by default
103   SKETCHPLUGIN_EXPORT virtual bool isMacro() const;
104
105   /// Use plugin manager for features creation
106   SketchPlugin_Projection();
107
108 protected:
109   /// \brief Initializes attributes of derived class.
110   virtual void initDerivedClassAttributes();
111
112   /// \brief Initializes attributes of keeping the reference to the original shape.
113   virtual void initDerivedClassAttributes2();
114
115 private:
116   /// \brief Find projection of a feature onto sketch plane
117   void computeProjection(const std::string& theID);
118
119   /// \brief Project point to the sketch plane
120   bool projectPoint(FeaturePtr& theProjection, const std::shared_ptr<GeomAPI_Pnt>& thePoint);
121   /// \brief Project segment to the sketch plane
122   bool projectSegment(FeaturePtr& theProjection, const std::shared_ptr<GeomAPI_Edge>& theEdge);
123   /// \brief Project any edge to sketch plane
124   bool projectEdge(FeaturePtr& theProjection, const std::shared_ptr<GeomAPI_Edge>& theEdge);
125
126   /// \brief Fill attributes of the Arc feature
127   bool fillArc(FeaturePtr& theProjection,
128                const std::shared_ptr<GeomAPI_Curve>& theArc,
129                const std::shared_ptr<GeomAPI_Pln>& thePlane,
130                const std::shared_ptr<GeomAPI_Edge>& theOriginalEdge);
131   /// \brief Fill attributes of the Circle feature
132   bool fillCircle(FeaturePtr& theProjection,
133                   const std::shared_ptr<GeomAPI_Curve>& theCircle,
134                   const std::shared_ptr<GeomAPI_Pln>& thePlane);
135   /// \brief Fill attributes of the Ellipse feature
136   bool fillEllipse(FeaturePtr& theProjection,
137                    const std::shared_ptr<GeomAPI_Curve>& theEllipse,
138                    const std::shared_ptr<GeomAPI_Pln>& thePlane);
139   /// \brief Fill attributes of the EllipticArc feature
140   bool fillEllipticArc(FeaturePtr& theProjection,
141                        const std::shared_ptr<GeomAPI_Curve>& theEllipticArc,
142                        const std::shared_ptr<GeomAPI_Pln>& thePlane,
143                        const std::shared_ptr<GeomAPI_Edge>& theOriginalEdge);
144   /// \brief Fill attributes of the B-spline feature
145   bool fillBSpline(FeaturePtr& theProjection,
146                    const std::shared_ptr<GeomAPI_Curve>& theCurve,
147                    const std::shared_ptr<GeomAPI_Pln>& thePlane);
148
149   /// \brief Delete already calculated projected feature
150   ///        if the selection of the projection is changed
151   /// \param[in/out] theProjection   projected feature
152   /// \param[in] theSupportedTypes   types supported relatively to the base selection
153   /// \param[in] theRequestedFeature type of the new feature to be created
154   ///                                (remove only if empty string).
155   bool rebuildProjectedFeature(FeaturePtr& theProjection,
156                                const std::set<std::string>& theSupportedTypes,
157                                const std::string& theRequestedFeature = std::string());
158
159   bool myIsComputing;
160 };
161
162 #endif