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