Salome HOME
d4e84c69d55bb18ed5eb75c842d7a125d1aa68af
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Partition.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_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     bool aUseFuzzy = (theFuzzy.value() > 0);
45     ModelHighAPI_Double aFuzzy = (aUseFuzzy ? theFuzzy : ModelHighAPI_Double(DEFAULT_FUZZY));
46     fillAttribute(theBaseObjects, mybaseObjects);
47     fillAttribute(aUseFuzzy, myuseFuzzy);
48     fillAttribute(aFuzzy, myfuzzyParam);
49     execute();
50   }
51 }
52
53 //==================================================================================================
54 FeaturesAPI_Partition::~FeaturesAPI_Partition()
55 {
56
57 }
58
59 //==================================================================================================
60 void FeaturesAPI_Partition::setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects)
61 {
62   fillAttribute(theBaseObjects, mybaseObjects);
63
64   execute();
65 }
66
67 //==================================================================================================
68 void FeaturesAPI_Partition::setUseFuzzy(bool theUseFuzzy)
69 {
70   fillAttribute(theUseFuzzy, myuseFuzzy);
71
72   execute();
73 }
74
75 //==================================================================================================
76 void FeaturesAPI_Partition::setFuzzy(const ModelHighAPI_Double& theFuzzy)
77 {
78   fillAttribute(theFuzzy, myfuzzyParam);
79
80   execute();
81 }
82
83 //==================================================================================================
84 void FeaturesAPI_Partition::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_Partition::BASE_OBJECTS_ID());
91   bool aUseFuzzy = aBase->boolean(FeaturesPlugin_Partition::USE_FUZZY_ID())->value();
92   double aFuzzy = aBase->real(FeaturesPlugin_Partition::FUZZY_PARAM_ID())->value();
93
94   theDumper << aBase << " = model.addPartition(" << 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 PartitionPtr addPartition(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_Partition::ID());
112   if (!keepSubResults)
113     aFeature->data()->setVersion("");
114   return PartitionPtr(new FeaturesAPI_Partition(aFeature, theBaseObjects, fuzzyParam));
115 }