Salome HOME
763a469eefaf5dc4b0e8b79d682fe4e89b35dc56
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Union.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 "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     fillAttribute(theBaseObjects, VAR_NAME(baseObjects));
44     fillAttribute(theFuzzy, VAR_NAME(fuzzyParam));
45
46     // Get the evaluated fuzzy parameter from the attribute!!
47     bool aUseFuzzy = (fuzzyParam()->value() > 0);
48     fillAttribute(aUseFuzzy, VAR_NAME(useFuzzy));
49     if (!aUseFuzzy) {
50       ModelHighAPI_Double aFuzzy(DEFAULT_FUZZY);
51       fillAttribute(aFuzzy, VAR_NAME(fuzzyParam));
52     }
53
54     execute();
55   }
56 }
57
58 //================================================================================================
59 FeaturesAPI_Union::~FeaturesAPI_Union()
60 {
61
62 }
63
64 //==================================================================================================
65 void FeaturesAPI_Union::setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects)
66 {
67   fillAttribute(theBaseObjects, VAR_NAME(baseObjects));
68
69   execute();
70 }
71
72 //==================================================================================================
73 void FeaturesAPI_Union::setUseFuzzy(bool theUseFuzzy)
74 {
75   fillAttribute(theUseFuzzy, VAR_NAME(useFuzzy));
76
77   execute();
78 }
79
80 //==================================================================================================
81 void FeaturesAPI_Union::setFuzzyValue(const ModelHighAPI_Double& theFuzzy)
82 {
83   fillAttribute(theFuzzy, VAR_NAME(fuzzyParam));
84
85   execute();
86 }
87
88 //==================================================================================================
89 void FeaturesAPI_Union::dump(ModelHighAPI_Dumper& theDumper) const
90 {
91   FeaturePtr aBase = feature();
92   const std::string& aDocName = theDumper.name(aBase->document());
93
94   AttributeSelectionListPtr anAttrObjects =
95     aBase->selectionList(FeaturesPlugin_Union::BASE_OBJECTS_ID());
96   bool aUseFuzzy = aBase->boolean(FeaturesPlugin_Union::USE_FUZZY_ID())->value();
97   AttributeDoublePtr aFuzzy = aBase->real(FeaturesPlugin_Union::FUZZY_PARAM_ID());
98
99   theDumper << aBase << " = model.addUnion(" << aDocName << ", " << anAttrObjects;
100
101   if (aUseFuzzy)
102     theDumper << ", fuzzyParam = " << aFuzzy;
103
104   if (!aBase->data()->version().empty())
105     theDumper << ", keepSubResults = True";
106
107   theDumper << ")" << std::endl;
108 }
109
110 //==================================================================================================
111 UnionPtr addUnion(const std::shared_ptr<ModelAPI_Document>& thePart,
112                   const std::list<ModelHighAPI_Selection>& theBaseObjects,
113                   const ModelHighAPI_Double& theFuzzy,
114                   const bool keepSubResults)
115 {
116   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(FeaturesAPI_Union::ID());
117   if (!keepSubResults)
118     aFeature->data()->setVersion("");
119   return UnionPtr(new FeaturesAPI_Union(aFeature, theBaseObjects, theFuzzy));
120 }