Salome HOME
Bug moteur + ajout cas test
[modules/hexablock.git] / src / HEXABLOCK / HexSubShape.cxx
1
2 // C++ : Gestion des soous-shapes
3
4 // Copyright (C) 2009-2013  CEA/DEN, EDF R&D
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/
21 // or email : webmaster.salome@opencascade.com
22 //
23
24 #include "HexSubShape.hxx"
25 #include "HexNewShape.hxx"
26 #include "HexXmlWriter.hxx"
27
28 #include <TopoDS.hxx>
29 #include <BRepTools.hxx>
30 #include <BRep_Builder.hxx>
31
32 BEGIN_NAMESPACE_HEXA
33
34 static bool db = on_debug ();  // == getenv ("HEXA_DB") > 0
35
36 // ====================================================== Constructeur
37 SubShape::SubShape (NewShape* dad, int id, int dim)
38         : EltBase  (dad->dad(), EL_SUBSHAPE)
39 {
40    ss_parent  = dad;
41    sub_ident  = id;
42    sub_dim    = dim;
43    maj_brep   = maj_shape = true;
44    kind_of    = KS_None; 
45 }
46 // ====================================================== getShape
47 const TopoDS_Shape& SubShape::getShape ()
48 {
49    if (maj_shape)
50       updateShape ();
51    return geo_shape;
52 }
53 // ====================================================== getParentName
54 cpchar SubShape::getParentName () const
55 {
56    if (ss_parent==NULL)
57       return "<?>";
58
59    return ss_parent->getName();
60 }
61 // ========================================================= saveXml
62 void SubShape::saveXml (XmlWriter* xml)
63 {
64    callXml (xml);
65    xml->closeMark ();
66 }
67 // ========================================================= callXml
68 void SubShape::callXml (XmlWriter* xml)
69 {
70    xml->openMark     ("Asso");
71    xml->addAttribute ("shape", getParentName());
72    xml->addAttribute ("subid", getIdent());
73 }
74 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
75 // ====================================================== updateShape
76 void SubShape::updateShape ()
77 {
78    maj_shape = false;
79    geo_shape = ss_parent->getGeoShape (sub_ident);
80 }
81 END_NAMESPACE_HEXA