Salome HOME
Updated copyright comment
[modules/shaper.git] / src / SketchAPI / SketchAPI_Projection.cpp
1 // Copyright (C) 2014-2024  CEA, EDF
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 #include "SketchAPI_Projection.h"
21
22 #include <SketchPlugin_Line.h>
23 #include <SketchPlugin_BSpline.h>
24 #include <SketchPlugin_BSplinePeriodic.h>
25 #include <SketchPlugin_Circle.h>
26 #include <SketchPlugin_Ellipse.h>
27 #include <SketchPlugin_EllipticArc.h>
28 #include <SketchPlugin_Point.h>
29
30 #include <SketchAPI_Arc.h>
31 #include <SketchAPI_BSpline.h>
32 #include <SketchAPI_Circle.h>
33 #include <SketchAPI_Ellipse.h>
34 #include <SketchAPI_EllipticArc.h>
35 #include <SketchAPI_Line.h>
36 #include <SketchAPI_Point.h>
37
38 #include <ModelHighAPI_Dumper.h>
39 #include <ModelHighAPI_Selection.h>
40 #include <ModelHighAPI_Tools.h>
41 //--------------------------------------------------------------------------------------
42 SketchAPI_Projection::SketchAPI_Projection(
43     const std::shared_ptr<ModelAPI_Feature> & theFeature)
44 : SketchAPI_SketchEntity(theFeature)
45 {
46   initialize();
47 }
48
49 SketchAPI_Projection::SketchAPI_Projection(
50     const std::shared_ptr<ModelAPI_Feature> & theFeature,
51     const ModelHighAPI_Selection & theExternalFeature )
52 : SketchAPI_SketchEntity(theFeature)
53 {
54   if (initialize()) {
55     setExternalFeature(theExternalFeature);
56   }
57 }
58
59 SketchAPI_Projection::~SketchAPI_Projection()
60 {
61
62 }
63
64 //--------------------------------------------------------------------------------------
65 void SketchAPI_Projection::setExternalFeature(const ModelHighAPI_Selection & theExternalFeature)
66 {
67   fillAttribute(theExternalFeature, externalFeature());
68
69   execute(true);
70 }
71
72 void SketchAPI_Projection::setIncludeToResult(bool theKeepResult)
73 {
74   fillAttribute(theKeepResult, includeToResult());
75   execute(true);
76 }
77
78 void SketchAPI_Projection::setKeepReferenceToOriginal(bool theKeepRefToOriginal)
79 {
80   // the Fixed constraint should be assigned explicitly
81   fillAttribute(false, feature()->boolean(SketchPlugin_Projection::MAKE_FIXED()));
82   fillAttribute(theKeepRefToOriginal ? "true" : "false",
83                 feature()->string(SketchPlugin_Projection::KEEP_REFERENCE_ID()));
84   execute(true);
85 }
86
87 //--------------------------------------------------------------------------------------
88 std::shared_ptr<SketchAPI_SketchEntity> SketchAPI_Projection::createdFeature() const
89 {
90   AttributeRefAttrPtr aProjectedRefAttr = projectedFeature();
91   FeaturePtr aProjectedFeature = ModelAPI_Feature::feature(aProjectedRefAttr->object());
92   std::shared_ptr<SketchAPI_SketchEntity> anEntity;
93
94   if(!aProjectedFeature.get()) {
95     return anEntity;
96   }
97
98   if (aProjectedFeature->getKind() == SketchPlugin_Line::ID())
99     anEntity.reset(new SketchAPI_Line(aProjectedFeature));
100   else if (aProjectedFeature->getKind() == SketchPlugin_Circle::ID())
101     anEntity.reset(new SketchAPI_Circle(aProjectedFeature));
102   else if (aProjectedFeature->getKind() == SketchPlugin_Arc::ID())
103     anEntity.reset(new SketchAPI_Arc(aProjectedFeature));
104   else if (aProjectedFeature->getKind() == SketchPlugin_Ellipse::ID())
105     anEntity.reset(new SketchAPI_Ellipse(aProjectedFeature));
106   else if (aProjectedFeature->getKind() == SketchPlugin_EllipticArc::ID())
107     anEntity.reset(new SketchAPI_EllipticArc(aProjectedFeature));
108   else if (aProjectedFeature->getKind() == SketchPlugin_BSpline::ID())
109     anEntity.reset(new SketchAPI_BSpline(aProjectedFeature));
110   else if (aProjectedFeature->getKind() == SketchPlugin_BSplinePeriodic::ID())
111     anEntity.reset(new SketchAPI_BSplinePeriodic(aProjectedFeature));
112   else if (aProjectedFeature->getKind() == SketchPlugin_Point::ID())
113     anEntity.reset(new SketchAPI_Point(aProjectedFeature));
114
115   return anEntity;
116 }
117
118 //--------------------------------------------------------------------------------------
119
120 void SketchAPI_Projection::dump(ModelHighAPI_Dumper& theDumper) const
121 {
122   FeaturePtr aBase = feature();
123   const std::string& aSketchName = theDumper.parentName(aBase);
124
125   AttributeSelectionPtr anExternal = externalFeature();
126   AttributeBooleanPtr isIncludeToRes = includeToResult();
127   theDumper << aBase << " = " << aSketchName << ".addProjection("
128             << anExternal << ", " << isIncludeToRes << ")" << std::endl;
129   // dump "auxiliary" flag if necessary
130   SketchAPI_SketchEntity::dump(theDumper);
131
132   // Dump created line feature
133   AttributeRefAttrPtr aProjectedRefAttr = projectedFeature();
134   FeaturePtr aProjectedFeature = ModelAPI_Feature::feature(aProjectedRefAttr->object());
135   theDumper << aProjectedFeature << " = "
136     << theDumper.name(aBase) << ".createdFeature()" << std::endl;
137 }