Salome HOME
3.6 Separation of Boolean operations
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_BooleanCommon.cpp
1 // Copyright (C) 2014-2017  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "FeaturesAPI_BooleanCommon.h"
22
23 #include <ModelHighAPI_Dumper.h>
24 #include <ModelHighAPI_Selection.h>
25 #include <ModelHighAPI_Tools.h>
26
27 //==================================================================================================
28 FeaturesAPI_BooleanCommon::FeaturesAPI_BooleanCommon(
29   const std::shared_ptr<ModelAPI_Feature>& theFeature)
30 : ModelHighAPI_Interface(theFeature)
31 {
32   initialize();
33 }
34
35 //==================================================================================================
36 FeaturesAPI_BooleanCommon::FeaturesAPI_BooleanCommon(
37   const std::shared_ptr<ModelAPI_Feature>& theFeature,
38   const std::list<ModelHighAPI_Selection>& theMainObjects,
39   const std::list<ModelHighAPI_Selection>& theToolObjects)
40 : ModelHighAPI_Interface(theFeature)
41 {
42   if(initialize()) {
43     fillAttribute(theMainObjects, mymainObjects);
44     fillAttribute(theToolObjects, mytoolObjects);
45
46     execute(false);
47   }
48 }
49
50 //==================================================================================================
51 FeaturesAPI_BooleanCommon::~FeaturesAPI_BooleanCommon()
52 {
53 }
54
55
56 //==================================================================================================
57 void FeaturesAPI_BooleanCommon::setMainObjects(
58   const std::list<ModelHighAPI_Selection>& theMainObjects)
59 {
60   fillAttribute(theMainObjects, mymainObjects);
61
62   execute();
63 }
64
65 //==================================================================================================
66 void FeaturesAPI_BooleanCommon::setToolObjects(
67   const std::list<ModelHighAPI_Selection>& theToolObjects)
68 {
69   fillAttribute(theToolObjects, mytoolObjects);
70
71   execute();
72 }
73
74 //==================================================================================================
75 void FeaturesAPI_BooleanCommon::dump(ModelHighAPI_Dumper& theDumper) const
76 {
77   FeaturePtr aBase = feature();
78
79   theDumper << aBase << " = model.addCommon";
80
81   const std::string& aDocName = theDumper.name(aBase->document());
82   AttributeSelectionListPtr anObjects =
83     aBase->selectionList(FeaturesPlugin_BooleanCommon::OBJECT_LIST_ID());
84   AttributeSelectionListPtr aTools =
85     aBase->selectionList(FeaturesPlugin_BooleanCommon::TOOL_LIST_ID());
86
87   theDumper << "(" << aDocName << ", " << anObjects << ", " << aTools << ")" << std::endl;
88 }
89
90 //==================================================================================================
91 BooleanCommonPtr addCommon(const std::shared_ptr<ModelAPI_Document>& thePart,
92                            const std::list<ModelHighAPI_Selection>& theMainObjects,
93                            const std::list<ModelHighAPI_Selection>& theToolObjects)
94 {
95   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(FeaturesAPI_BooleanCommon::ID());
96   return BooleanCommonPtr(new FeaturesAPI_BooleanCommon(aFeature,
97                                                         theMainObjects,
98                                                         theToolObjects));
99 }