Salome HOME
f1c0261641cd4173741347357703f154c9aa81b9
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_BooleanCut.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_BooleanCut.h"
21
22 #include <ModelHighAPI_Dumper.h>
23 #include <ModelHighAPI_Selection.h>
24 #include <ModelHighAPI_Tools.h>
25
26
27 static const double DEFAULT_FUZZY = 1.e-5;
28
29
30 //==================================================================================================
31 FeaturesAPI_BooleanCut::FeaturesAPI_BooleanCut(const std::shared_ptr<ModelAPI_Feature>& theFeature)
32 : ModelHighAPI_Interface(theFeature)
33 {
34   initialize();
35 }
36
37 //==================================================================================================
38 FeaturesAPI_BooleanCut::FeaturesAPI_BooleanCut(
39   const std::shared_ptr<ModelAPI_Feature>& theFeature,
40   const std::list<ModelHighAPI_Selection>& theMainObjects,
41   const std::list<ModelHighAPI_Selection>& theToolObjects,
42   const ModelHighAPI_Double& theFuzzy)
43 : ModelHighAPI_Interface(theFeature)
44 {
45   if(initialize()) {
46     fillAttribute(theMainObjects, VAR_NAME(mainObjects));
47     fillAttribute(theToolObjects, VAR_NAME(toolObjects));
48     fillAttribute(theFuzzy, VAR_NAME(fuzzyParam));
49
50     // Get the evaluated fuzzy parameter from the attribute!!
51     bool aUseFuzzy = (fuzzyParam()->value() > 0);
52     fillAttribute(aUseFuzzy, VAR_NAME(useFuzzy));
53     if (!aUseFuzzy) {
54       ModelHighAPI_Double aFuzzy(DEFAULT_FUZZY);
55       fillAttribute(aFuzzy, VAR_NAME(fuzzyParam));
56     }
57
58     execute(false);
59   }
60 }
61
62 //==================================================================================================
63 FeaturesAPI_BooleanCut::~FeaturesAPI_BooleanCut()
64 {
65 }
66
67
68 //==================================================================================================
69 void FeaturesAPI_BooleanCut::setMainObjects(const std::list<ModelHighAPI_Selection>& theMainObjects)
70 {
71   fillAttribute(theMainObjects, VAR_NAME(mainObjects));
72
73   execute();
74 }
75
76 //==================================================================================================
77 void FeaturesAPI_BooleanCut::setToolObjects(const std::list<ModelHighAPI_Selection>& theToolObjects)
78 {
79   fillAttribute(theToolObjects, VAR_NAME(toolObjects));
80
81   execute();
82 }
83
84 //==================================================================================================
85 void FeaturesAPI_BooleanCut::setUseFuzzy(bool theUseFuzzy)
86 {
87   fillAttribute(theUseFuzzy, VAR_NAME(useFuzzy));
88
89   execute();
90 }
91
92 //==================================================================================================
93 void FeaturesAPI_BooleanCut::setFuzzyValue(const ModelHighAPI_Double& theFuzzy)
94 {
95   fillAttribute(theFuzzy, VAR_NAME(fuzzyParam));
96
97   execute();
98 }
99
100 //==================================================================================================
101 void FeaturesAPI_BooleanCut::dump(ModelHighAPI_Dumper& theDumper) const
102 {
103   FeaturePtr aBase = feature();
104
105   theDumper << aBase << " = model.addCut";
106
107   const std::string& aDocName = theDumper.name(aBase->document());
108   AttributeSelectionListPtr anObjects =
109     aBase->selectionList(FeaturesPlugin_BooleanCut::OBJECT_LIST_ID());
110   AttributeSelectionListPtr aTools =
111     aBase->selectionList(FeaturesPlugin_BooleanCut::TOOL_LIST_ID());
112   bool aUseFuzzy = aBase->boolean(FeaturesPlugin_BooleanCut::USE_FUZZY_ID())->value();
113   AttributeDoublePtr aFuzzy = aBase->real(FeaturesPlugin_BooleanCut::FUZZY_PARAM_ID());
114
115   theDumper << "(" << aDocName << ", " << anObjects << ", " << aTools;
116
117   if (aUseFuzzy)
118     theDumper << ", fuzzyParam = " << aFuzzy;
119
120   if (!aBase->data()->version().empty())
121     theDumper << ", keepSubResults = True";
122
123   theDumper << ")" << std::endl;
124 }
125
126 //==================================================================================================
127 BooleanCutPtr addCut(const std::shared_ptr<ModelAPI_Document>& thePart,
128                      const std::list<ModelHighAPI_Selection>& theMainObjects,
129                      const std::list<ModelHighAPI_Selection>& theToolObjects,
130                      const ModelHighAPI_Double& theFuzzy,
131                      const bool keepSubResults)
132 {
133   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(FeaturesAPI_BooleanCut::ID());
134   if (!keepSubResults)
135     aFeature->data()->setVersion("");
136   return BooleanCutPtr(new FeaturesAPI_BooleanCut(aFeature, theMainObjects, theToolObjects, theFuzzy));
137 }