]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchAPI/SketchAPI_Rotation.cpp
Salome HOME
Issue #20274: No intersection point from python dump
[modules/shaper.git] / src / SketchAPI / SketchAPI_Rotation.cpp
1 // Copyright (C) 2014-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 #include "SketchAPI_Rotation.h"
21 #include <SketchAPI_SketchEntity.h>
22 //--------------------------------------------------------------------------------------
23 #include <ModelHighAPI_Dumper.h>
24 #include <ModelHighAPI_Tools.h>
25
26 #include <SketchPlugin_SketchEntity.h>
27 //--------------------------------------------------------------------------------------
28 SketchAPI_Rotation::SketchAPI_Rotation(
29     const std::shared_ptr<ModelAPI_Feature> & theFeature)
30 : ModelHighAPI_Interface(theFeature)
31 {
32   initialize();
33 }
34
35 SketchAPI_Rotation::SketchAPI_Rotation(
36     const std::shared_ptr<ModelAPI_Feature> & theFeature,
37     const std::list<std::shared_ptr<ModelAPI_Object> > & theObjects,
38     const ModelHighAPI_RefAttr & theCenter,
39     const ModelHighAPI_Double & theAngle,
40     const ModelHighAPI_Integer & theNumberOfObjects,
41     bool theFullValue,
42     bool theReversed)
43 : ModelHighAPI_Interface(theFeature)
44 {
45   if (initialize()) {
46     fillAttribute(theCenter, center());
47     fillAttribute(theFullValue ? "FullAngle" : "SingleAngle", valueType());
48     fillAttribute(theAngle, angle());
49     fillAttribute(theReversed, reversed());
50     fillAttribute(theNumberOfObjects, numberOfObjects());
51
52     setRotationList(theObjects);
53   }
54 }
55
56 SketchAPI_Rotation::~SketchAPI_Rotation()
57 {
58
59 }
60
61 void SketchAPI_Rotation::setRotationList(
62     const std::list<std::shared_ptr<ModelAPI_Object> >& theObjects)
63 {
64   fillAttribute(theObjects, rotationList());
65   execute(true);
66 }
67
68 std::list<std::shared_ptr<SketchAPI_SketchEntity> > SketchAPI_Rotation::rotated() const
69 {
70   std::list<ObjectPtr> aList = rotatedObjects()->list();
71   // remove all initial features
72   std::list<FeaturePtr> anIntermediate;
73   std::list<ObjectPtr>::const_iterator anIt = aList.begin();
74   for (; anIt != aList.end(); ++anIt) {
75     FeaturePtr aFeature = ModelAPI_Feature::feature(*anIt);
76     AttributeBooleanPtr isCopy = aFeature->boolean(SketchPlugin_SketchEntity::COPY_ID());
77     if (isCopy.get() && isCopy->value())
78       anIntermediate.push_back(aFeature);
79   }
80   return SketchAPI_SketchEntity::wrap(anIntermediate);
81 }
82
83 //--------------------------------------------------------------------------------------
84
85 void SketchAPI_Rotation::dump(ModelHighAPI_Dumper& theDumper) const
86 {
87   FeaturePtr aBase = feature();
88   const std::string& aSketchName = theDumper.parentName(aBase);
89
90   AttributeRefListPtr aRotObjects = rotationList();
91   AttributeRefAttrPtr aCenter = center();
92   AttributeDoublePtr anAngle = angle();
93   AttributeIntegerPtr aNbCopies = numberOfObjects();
94   bool isFullValue = valueType()->value() != "SingleAngle";
95   bool isReversed = reversed()->value();
96
97   // Check all attributes are already dumped. If not, store the constraint as postponed.
98   size_t aFirstNotDumped = theDumper.indexOfFirstNotDumped(aRotObjects);
99   if (!theDumper.isDumped(aCenter) || aFirstNotDumped == 0) {
100     theDumper.postpone(aBase);
101     return;
102   }
103
104   // the number of dumped aRotObjects is not changed, no need to dump anything
105   static std::map<FeaturePtr, size_t> aNbDumpedArguments;
106   std::map<FeaturePtr, size_t>::iterator aFound = aNbDumpedArguments.find(aBase);
107   if (aFound != aNbDumpedArguments.end() && aFound->second == aFirstNotDumped) {
108     theDumper.postpone(aBase);
109     return;
110   }
111   else
112     aNbDumpedArguments[aBase] = aFirstNotDumped;
113
114   if (theDumper.isDumped(aBase)) {
115     // the feature is already dumped, but it was postponed, because of some arguments
116     // were not dumped yet, thus, it is necessary to update the list of rotated objects
117     theDumper << "\n### Update " << aBase->getKind() << std::endl;
118     theDumper << aBase << ".setRotationList(" << aRotObjects << ")" << std::endl;
119   }
120   else {
121     // the feature is not dumped yet, make the full dump
122     theDumper << aBase << " = " << aSketchName << ".addRotation("
123               << aRotObjects << ", " << aCenter << ", " << anAngle << ", " << aNbCopies;
124     if (isFullValue || isReversed)
125     {
126       theDumper << ", " << isFullValue;
127       if (isReversed)
128         theDumper << ", " << isReversed;
129     }
130     theDumper << ")" << std::endl;
131   }
132
133   // Dump variables for a list of rotated features
134   theDumper << "[";
135   std::list<std::shared_ptr<SketchAPI_SketchEntity> > aList = rotated();
136   std::list<std::shared_ptr<SketchAPI_SketchEntity> >::const_iterator anIt = aList.begin();
137   for (size_t anIndex = 0; anIndex < aFirstNotDumped; ++anIndex)
138     for (int i = 1; i < aNbCopies->value() && anIt != aList.end(); ++i, ++anIt) {
139       if (anIt != aList.begin())
140         theDumper << ", ";
141       theDumper << (*anIt)->feature();
142     }
143   theDumper << "] = " << theDumper.name(aBase) << ".rotated()" << std::endl;
144
145   if (theDumper.isDumped(aRotObjects)) {
146     aNbDumpedArguments.erase(aBase);
147     // Set necessary "auxiliary" flag for rotated features
148     // (flag is set if it differs to base entity)
149     std::list<ObjectPtr> aRotList = aRotObjects->list();
150     std::list<ObjectPtr>::const_iterator aRIt = aRotList.begin();
151     anIt = aList.begin();
152     for (; aRIt != aRotList.end(); ++aRIt) {
153       FeaturePtr aFeature = ModelAPI_Feature::feature(*aRIt);
154       if (!aFeature)
155         continue;
156       bool aBaseAux = aFeature->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID())->value();
157
158       for (int i = 1; i < aNbCopies->value(); ++i, ++anIt) {
159         aFeature = (*anIt)->feature();
160         bool aFeatAux = aFeature->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID())->value();
161         if (aFeatAux != aBaseAux)
162           theDumper << theDumper.name((*anIt)->feature(), false)
163                     << ".setAuxiliary(" << aFeatAux << ")" << std::endl;
164       }
165     }
166   }
167   else {
168     // If all refereced objects are not dumped yet, mark the feature as postponed.
169     theDumper.postpone(aBase);
170   }
171 }