Salome HOME
Add the feature "GDML Ellipsoid".
[modules/shaper.git] / src / GDMLPlugin / GDMLPlugin_ConeSegment.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 <GDMLPlugin_ConeSegment.h>
22
23 #include <ModelAPI_Data.h>
24 #include <ModelAPI_ResultBody.h>
25 #include <ModelAPI_AttributeDouble.h>
26
27 //=================================================================================================
28 GDMLPlugin_ConeSegment::GDMLPlugin_ConeSegment() // Nothing to do during instantiation
29 {
30 }
31
32 //=================================================================================================
33 void GDMLPlugin_ConeSegment::initAttributes()
34 {
35   data()->addAttribute(GDMLPlugin_ConeSegment::RMIN1_ID(), ModelAPI_AttributeDouble::typeId());
36   data()->addAttribute(GDMLPlugin_ConeSegment::RMAX1_ID(), ModelAPI_AttributeDouble::typeId());
37   data()->addAttribute(GDMLPlugin_ConeSegment::RMIN2_ID(), ModelAPI_AttributeDouble::typeId());
38   data()->addAttribute(GDMLPlugin_ConeSegment::RMAX2_ID(), ModelAPI_AttributeDouble::typeId());
39   data()->addAttribute(GDMLPlugin_ConeSegment::Z_ID(), ModelAPI_AttributeDouble::typeId());
40   data()->addAttribute(GDMLPlugin_ConeSegment::STARTPHI_ID(), ModelAPI_AttributeDouble::typeId());
41   data()->addAttribute(GDMLPlugin_ConeSegment::DELTAPHI_ID(), ModelAPI_AttributeDouble::typeId());
42 }
43
44 //=================================================================================================
45 void GDMLPlugin_ConeSegment::execute()
46 {
47   double aRMin1 = real(GDMLPlugin_ConeSegment::RMIN1_ID())->value();
48   double aRMax1 = real(GDMLPlugin_ConeSegment::RMAX1_ID())->value();
49   double aRMin2 = real(GDMLPlugin_ConeSegment::RMIN2_ID())->value();
50   double aRMax2 = real(GDMLPlugin_ConeSegment::RMAX2_ID())->value();
51   double aZ = real(GDMLPlugin_ConeSegment::Z_ID())->value();
52   double aStartPhi = real(GDMLPlugin_ConeSegment::STARTPHI_ID())->value();
53   double aDeltaPhi = real(GDMLPlugin_ConeSegment::DELTAPHI_ID())->value();
54
55   std::shared_ptr<GeomAlgoAPI_ConeSegment> aConeSegmentAlgo =
56     std::shared_ptr<GeomAlgoAPI_ConeSegment>(new GeomAlgoAPI_ConeSegment(aRMin1, aRMax1,
57                                                                          aRMin2, aRMax2,
58                                                                          aZ,
59                                                                          aStartPhi, aDeltaPhi));
60
61   // Check with that the arguments for aConeSegmentAlgo are correct
62   if (!aConeSegmentAlgo->check()){
63     setError(aConeSegmentAlgo->getError());
64     return;
65   }
66
67   aConeSegmentAlgo->build();
68
69   // Check if the creation of the cone segment went well
70   if(!aConeSegmentAlgo->isDone()) {
71     setError(aConeSegmentAlgo->getError());
72     return;
73   }
74   if (!aConeSegmentAlgo->checkValid("Cone Segment builder")) {
75     setError(aConeSegmentAlgo->getError());
76     return;
77   }
78
79   int aResultIndex = 0;
80   ResultBodyPtr aResultConeSegment = document()->createBody(data(), aResultIndex);
81   loadNamingDS(aConeSegmentAlgo, aResultConeSegment);
82   setResult(aResultConeSegment, aResultIndex);
83 }
84
85 //=================================================================================================
86 void GDMLPlugin_ConeSegment::loadNamingDS(
87     std::shared_ptr<GeomAlgoAPI_ConeSegment> theConeSegmentAlgo,
88     std::shared_ptr<ModelAPI_ResultBody> theResultConeSegment)
89 {
90   // Load the result
91   theResultConeSegment->store(theConeSegmentAlgo->shape());
92
93   // Prepare the naming
94   theConeSegmentAlgo->prepareNamingFaces();
95
96   // Insert to faces
97   int num = 1;
98   std::map< std::string, std::shared_ptr<GeomAPI_Shape> > listOfFaces =
99     theConeSegmentAlgo->getCreatedFaces();
100   for (std::map< std::string, std::shared_ptr<GeomAPI_Shape> >::iterator
101        it=listOfFaces.begin(); it!=listOfFaces.end(); ++it) {
102     std::shared_ptr<GeomAPI_Shape> aFace = (*it).second;
103     theResultConeSegment->generated(aFace, (*it).first, num++);
104   }
105 }
106