Salome HOME
Merge remote-tracking branch 'remotes/origin/HighLevelDump'
[modules/shaper.git] / src / BuildAPI / BuildAPI_Shell.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        BuildAPI_Shell.cpp
4 // Created:     09 June 2016
5 // Author:      Dmitry Bobylev
6
7 #include "BuildAPI_Shell.h"
8
9 #include <ModelHighAPI_Dumper.h>
10 #include <ModelHighAPI_Tools.h>
11
12 //==================================================================================================
13 BuildAPI_Shell::BuildAPI_Shell(const std::shared_ptr<ModelAPI_Feature>& theFeature)
14 : ModelHighAPI_Interface(theFeature)
15 {
16   initialize();
17 }
18
19 //==================================================================================================
20 BuildAPI_Shell::BuildAPI_Shell(const std::shared_ptr<ModelAPI_Feature>& theFeature,
21                                const std::list<ModelHighAPI_Selection>& theBaseObjects)
22 : ModelHighAPI_Interface(theFeature)
23 {
24   if(initialize()) {
25     setBase(theBaseObjects);
26   }
27 }
28
29 //==================================================================================================
30 BuildAPI_Shell::~BuildAPI_Shell()
31 {
32
33 }
34
35 //==================================================================================================
36 void BuildAPI_Shell::setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects)
37 {
38   fillAttribute(theBaseObjects, mybaseObjects);
39
40   execute();
41 }
42
43 //==================================================================================================
44 void BuildAPI_Shell::dump(ModelHighAPI_Dumper& theDumper) const
45 {
46   FeaturePtr aBase = feature();
47   std::string aPartName = theDumper.name(aBase->document());
48
49   theDumper << aBase << " = model.addShell(" << aPartName << ", "
50     << aBase->selectionList(BuildPlugin_Shell::BASE_OBJECTS_ID()) << ")" << std::endl;
51 }
52
53 //==================================================================================================
54 ShellPtr addShell(const std::shared_ptr<ModelAPI_Document>& thePart,
55                   const std::list<ModelHighAPI_Selection>& theBaseObjects)
56 {
57   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(BuildAPI_Shell::ID());
58   return ShellPtr(new BuildAPI_Shell(aFeature, theBaseObjects));
59 }