Salome HOME
06d3b68c42502420fff796c094c534f361a081c1
[modules/hexablock.git] / src / HEXABLOCK / HexSubShape.cxx
1
2 // C++ : Gestion des soous-shapes
3
4 // Copyright (C) 2009-2023  CEA, EDF
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, or (at your option) any later version.
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/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "HexSubShape.hxx"
24 #include "HexNewShape.hxx"
25 #include "HexXmlWriter.hxx"
26
27 #include <TopoDS.hxx>
28 #include <BRepTools.hxx>
29 #include <BRep_Builder.hxx>
30
31 BEGIN_NAMESPACE_HEXA
32
33 static bool db = on_debug ();  // == getenv ("HEXA_DB") > 0
34
35 // ====================================================== Constructeur
36 SubShape::SubShape (NewShape* dad, int id, int dim)
37         : EltBase  (dad->dad(), EL_SUBSHAPE)
38 {
39    ss_parent  = dad;
40    sub_ident  = id;
41    sub_dim    = dim;
42    maj_brep   = maj_shape = true;
43    kind_of    = KS_None; 
44 }
45 // ====================================================== getShape
46 const TopoDS_Shape& SubShape::getShape ()
47 {
48    if (maj_shape)
49       updateShape ();
50    return geo_shape;
51 }
52 // ====================================================== getParentName
53 cpchar SubShape::getParentName () const
54 {
55    if (ss_parent==NULL)
56       return "<?>";
57
58    return ss_parent->getName();
59 }
60 // ========================================================= saveXml
61 void SubShape::saveXml (XmlWriter* xml)
62 {
63    callXml (xml);
64    xml->closeMark ();
65 }
66 // ========================================================= callXml
67 void SubShape::callXml (XmlWriter* xml)
68 {
69    xml->openMark     ("Asso");
70    xml->addAttribute ("shape", getParentName());
71    xml->addAttribute ("subid", getIdent());
72 }
73 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
74 // ====================================================== updateShape
75 void SubShape::updateShape ()
76 {
77    maj_shape = false;
78    geo_shape = ss_parent->getGeoShape (sub_ident);
79 }
80 END_NAMESPACE_HEXA