Salome HOME
updated copyright message
[modules/shaper.git] / src / SketchAPI / SketchAPI_Offset.cpp
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 #include "SketchAPI_Offset.h"
21 #include <SketchAPI_SketchEntity.h>
22 //--------------------------------------------------------------------------------------
23 #include <ModelHighAPI_Dumper.h>
24 #include <ModelHighAPI_Selection.h>
25 #include <ModelHighAPI_Tools.h>
26
27 //--------------------------------------------------------------------------------------
28 SketchAPI_Offset::SketchAPI_Offset (const std::shared_ptr<ModelAPI_Feature> & theFeature)
29   : ModelHighAPI_Interface(theFeature)
30 {
31   initialize();
32 }
33
34 SketchAPI_Offset::SketchAPI_Offset (const std::shared_ptr<ModelAPI_Feature> & theFeature,
35                                     const std::list<std::shared_ptr<ModelAPI_Object> > & theObjects,
36                                     const ModelHighAPI_Double & theOffsetValue,
37                                     const bool theIsReversed,
38                                     const std::string & theJointType)
39   : ModelHighAPI_Interface(theFeature)
40 {
41   if (initialize()) {
42     fillAttribute(theObjects, edgesList());
43     fillAttribute(theOffsetValue, value());
44     fillAttribute(theIsReversed, reversed());
45     fillAttribute(theJointType, joint());
46
47     execute();
48   }
49 }
50
51 SketchAPI_Offset::~SketchAPI_Offset()
52 {
53 }
54
55 std::list<std::shared_ptr<SketchAPI_SketchEntity> > SketchAPI_Offset::offset() const
56 {
57   std::list<ObjectPtr> aList = feature()->reflist(SketchPlugin_Constraint::ENTITY_B())->list();
58   std::list<FeaturePtr> anIntermediate;
59   std::list<ObjectPtr>::const_iterator anIt = aList.begin();
60   for (; anIt != aList.end(); ++anIt) {
61     FeaturePtr aFeature = ModelAPI_Feature::feature(*anIt);
62     anIntermediate.push_back(aFeature);
63   }
64   return SketchAPI_SketchEntity::wrap(anIntermediate);
65 }
66
67 //--------------------------------------------------------------------------------------
68
69 void SketchAPI_Offset::dump (ModelHighAPI_Dumper& theDumper) const
70 {
71   FeaturePtr aBase = feature();
72   const std::string& aSketchName = theDumper.parentName(aBase);
73
74   AttributeRefListPtr aOffsetObjects = edgesList();
75   AttributeDoublePtr aValue = value();
76   AttributeBooleanPtr aReversed = reversed();
77   AttributeStringPtr aJoint = joint();
78
79   // Check all attributes are already dumped. If not, store the feature as postponed.
80   if (!theDumper.isDumped(aOffsetObjects)) {
81     theDumper.postpone(aBase);
82     return;
83   }
84
85   theDumper << aBase << " = " << aSketchName << ".addOffset(" << aOffsetObjects << ", "
86             << aValue << ", " << aReversed  << ", " << aJoint << ")" << std::endl;
87
88   // Dump variables for a list of created features
89   theDumper << "[";
90   std::list<std::shared_ptr<SketchAPI_SketchEntity> > aList = offset();
91   std::list<std::shared_ptr<SketchAPI_SketchEntity> >::const_iterator anIt = aList.begin();
92   for (; anIt != aList.end(); ++anIt) {
93     if (anIt != aList.begin())
94       theDumper << ", ";
95     theDumper << (*anIt)->feature();
96   }
97   theDumper << "] = " << theDumper.name(aBase) << ".offset()" << std::endl;
98
99   // Set necessary "auxiliary" flag for created features
100   for (anIt = aList.begin(); anIt != aList.end(); ++anIt) {
101     FeaturePtr aFeature = (*anIt)->feature();
102     bool aFeatAux = aFeature->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID())->value();
103     if (aFeatAux)
104       theDumper << theDumper.name((*anIt)->feature(), false)
105                 << ".setAuxiliary(" << aFeatAux << ")" <<std::endl;
106   }
107 }