]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchAPI/SketchAPI_Rotation.cpp
Salome HOME
Merge branch 'master' into cgt/devCEA
[modules/shaper.git] / src / SketchAPI / SketchAPI_Rotation.cpp
1 // Copyright (C) 2014-2017  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "SketchAPI_Rotation.h"
22 #include <SketchAPI_SketchEntity.h>
23 //--------------------------------------------------------------------------------------
24 #include <ModelHighAPI_Dumper.h>
25 #include <ModelHighAPI_Tools.h>
26
27 #include <SketchPlugin_SketchEntity.h>
28 //--------------------------------------------------------------------------------------
29 SketchAPI_Rotation::SketchAPI_Rotation(
30     const std::shared_ptr<ModelAPI_Feature> & theFeature)
31 : ModelHighAPI_Interface(theFeature)
32 {
33   initialize();
34 }
35
36 SketchAPI_Rotation::SketchAPI_Rotation(
37     const std::shared_ptr<ModelAPI_Feature> & theFeature,
38     const std::list<std::shared_ptr<ModelAPI_Object> > & theObjects,
39     const ModelHighAPI_RefAttr & theCenter,
40     const ModelHighAPI_Double & theAngle,
41     const ModelHighAPI_Integer & theNumberOfObjects,
42     bool theFullValue)
43 : ModelHighAPI_Interface(theFeature)
44 {
45   if (initialize()) {
46     fillAttribute(theObjects, rotationList());
47     fillAttribute(theCenter, center());
48     fillAttribute(theAngle, angle());
49     fillAttribute(theNumberOfObjects, numberOfObjects());
50     fillAttribute(theFullValue ? "FullAngle" : "SingleAngle", valueType());
51
52     execute(true);
53   }
54 }
55
56 SketchAPI_Rotation::~SketchAPI_Rotation()
57 {
58
59 }
60
61 std::list<std::shared_ptr<SketchAPI_SketchEntity> > SketchAPI_Rotation::rotated() const
62 {
63   std::list<ObjectPtr> aList = rotatedObjects()->list();
64   // remove all initial features
65   std::list<FeaturePtr> anIntermediate;
66   std::list<ObjectPtr>::const_iterator anIt = aList.begin();
67   for (; anIt != aList.end(); ++anIt) {
68     FeaturePtr aFeature = ModelAPI_Feature::feature(*anIt);
69     AttributeBooleanPtr isCopy = aFeature->boolean(SketchPlugin_SketchEntity::COPY_ID());
70     if (isCopy.get() && isCopy->value())
71       anIntermediate.push_back(aFeature);
72   }
73   return SketchAPI_SketchEntity::wrap(anIntermediate);
74 }
75
76 //--------------------------------------------------------------------------------------
77
78 void SketchAPI_Rotation::dump(ModelHighAPI_Dumper& theDumper) const
79 {
80   FeaturePtr aBase = feature();
81   const std::string& aSketchName = theDumper.parentName(aBase);
82
83   AttributeRefListPtr aRotObjects = rotationList();
84   AttributeRefAttrPtr aCenter = center();
85   AttributeDoublePtr anAngle = angle();
86   AttributeIntegerPtr aNbCopies = numberOfObjects();
87   bool isFullValue = valueType()->value() != "SingleAngle";
88
89   theDumper << aBase << " = " << aSketchName << ".addRotation("
90             << aRotObjects << ", " << aCenter << ", " << anAngle << ", " << aNbCopies;
91   if (isFullValue)
92     theDumper << ", " << isFullValue;
93   theDumper << ")" << std::endl;
94
95   // Dump variables for a list of rotated features
96   theDumper << "[";
97   std::list<std::shared_ptr<SketchAPI_SketchEntity> > aList = rotated();
98   std::list<std::shared_ptr<SketchAPI_SketchEntity> >::const_iterator anIt = aList.begin();
99   for (; anIt != aList.end(); ++anIt) {
100     if (anIt != aList.begin())
101       theDumper << ", ";
102     theDumper << (*anIt)->feature();
103   }
104   theDumper << "] = " << theDumper.name(aBase) << ".rotated()" << std::endl;
105
106   // Set necessary "auxiliary" flag for rotated features
107   // (flag is set if it differs to base entity)
108   std::list<ObjectPtr> aRotList = aRotObjects->list();
109   std::list<ObjectPtr>::const_iterator aRIt = aRotList.begin();
110   anIt = aList.begin();
111   for (; aRIt != aRotList.end(); ++aRIt) {
112     FeaturePtr aFeature = ModelAPI_Feature::feature(*aRIt);
113     if (!aFeature)
114       continue;
115     bool aBaseAux = aFeature->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID())->value();
116
117     for (int i = 1; i < aNbCopies->value(); ++i, ++anIt) {
118       aFeature = (*anIt)->feature();
119       bool aFeatAux = aFeature->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID())->value();
120       if (aFeatAux != aBaseAux)
121         theDumper << theDumper.name((*anIt)->feature(), false)
122                   << ".setAuxiliary(" << aFeatAux << ")" <<std::endl;
123     }
124   }
125 }