Salome HOME
dump the fuzzy value as attribute and not as double
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Union.cpp
1 // Copyright (C) 2014-2022  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 "FeaturesAPI_Union.h"
21
22 #include <ModelHighAPI_Dumper.h>
23 #include <ModelHighAPI_Tools.h>
24
25
26 static const double DEFAULT_FUZZY = 1.e-5;
27
28
29 //================================================================================================
30 FeaturesAPI_Union::FeaturesAPI_Union(const std::shared_ptr<ModelAPI_Feature>& theFeature)
31 : ModelHighAPI_Interface(theFeature)
32 {
33   initialize();
34 }
35
36 //================================================================================================
37 FeaturesAPI_Union::FeaturesAPI_Union(const std::shared_ptr<ModelAPI_Feature>& theFeature,
38                                      const std::list<ModelHighAPI_Selection>& theBaseObjects,
39                                      const ModelHighAPI_Double& theFuzzy)
40 : ModelHighAPI_Interface(theFeature)
41 {
42   if(initialize()) {
43     bool aUseFuzzy = (theFuzzy.value() > 0);
44     ModelHighAPI_Double aFuzzy = (aUseFuzzy ? theFuzzy : ModelHighAPI_Double(DEFAULT_FUZZY));
45     fillAttribute(theBaseObjects, mybaseObjects);
46     fillAttribute(aUseFuzzy, myuseFuzzy);
47     fillAttribute(aFuzzy, myfuzzyParam);
48
49     execute();
50   }
51 }
52
53 //================================================================================================
54 FeaturesAPI_Union::~FeaturesAPI_Union()
55 {
56
57 }
58
59 //==================================================================================================
60 void FeaturesAPI_Union::setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects)
61 {
62   fillAttribute(theBaseObjects, mybaseObjects);
63
64   execute();
65 }
66
67 //==================================================================================================
68 void FeaturesAPI_Union::setUseFuzzy(bool theUseFuzzy)
69 {
70   fillAttribute(theUseFuzzy, myuseFuzzy);
71
72   execute();
73 }
74
75 //==================================================================================================
76 void FeaturesAPI_Union::setFuzzyValue(const ModelHighAPI_Double& theFuzzy)
77 {
78   fillAttribute(theFuzzy, myfuzzyParam);
79
80   execute();
81 }
82
83 //==================================================================================================
84 void FeaturesAPI_Union::dump(ModelHighAPI_Dumper& theDumper) const
85 {
86   FeaturePtr aBase = feature();
87   const std::string& aDocName = theDumper.name(aBase->document());
88
89   AttributeSelectionListPtr anAttrObjects =
90     aBase->selectionList(FeaturesPlugin_Union::BASE_OBJECTS_ID());
91   bool aUseFuzzy = aBase->boolean(FeaturesPlugin_Union::USE_FUZZY_ID())->value();
92   AttributeDoublePtr aFuzzy = aBase->real(FeaturesPlugin_Union::FUZZY_PARAM_ID());
93
94   theDumper << aBase << " = model.addUnion(" << aDocName << ", " << anAttrObjects;
95
96   if (aUseFuzzy)
97     theDumper << ", fuzzyParam = " << aFuzzy;
98
99   if (!aBase->data()->version().empty())
100     theDumper << ", keepSubResults = True";
101
102   theDumper << ")" << std::endl;
103 }
104
105 //==================================================================================================
106 UnionPtr addUnion(const std::shared_ptr<ModelAPI_Document>& thePart,
107                   const std::list<ModelHighAPI_Selection>& theBaseObjects,
108                   const ModelHighAPI_Double& fuzzyParam,
109                   const bool keepSubResults)
110 {
111   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(FeaturesAPI_Union::ID());
112   if (!keepSubResults)
113     aFeature->data()->setVersion("");
114   return UnionPtr(new FeaturesAPI_Union(aFeature, theBaseObjects, fuzzyParam));
115 }