]> SALOME platform Git repositories - modules/hexablock.git/blob - src/HEXABLOCK/HexGlobale.hxx
Salome HOME
1a544f99e75e9c4cba896d03caa6f6d7ee0527ab
[modules/hexablock.git] / src / HEXABLOCK / HexGlobale.hxx
1
2 // Singleton : Var globales : Disposition sommets/aretes/faces d'un hexaedre
3
4 // Copyright (C) 2009-2012  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 #ifndef _HEX_GLOBALE_H
25 #define _HEX_GLOBALE_H
26
27 #include "hexa_base.hxx"
28 #include "HexDumpStudy.hxx"
29
30 /* -----------------------------------------------------
31
32                 // ---- Numerotation des faces (%x) 
33                    
34        6=bed  +----bd-----+ bdf=7
35              /|          /|
36            be |   B    bf |
37            /  |        /  |
38     4=bce +----bc-----+...|...bcf=5
39           |  de     D |   df
40           | E |       | F |             z
41          ce   | C     cf  |             ^
42   2=ade...|...+----ad-|---+ adf=3       |   y
43           |  /        |  /              |  /
44           | ae    A   | af              | /
45           |/          |/                |/
46     0=ace +----ac-----+ acf=1           +----->  x
47                 
48  * ----------------------------------------------------- */
49
50
51 BEGIN_NAMESPACE_HEXA
52
53 class Globale
54 {
55 public :
56    static Globale* getInstance ();
57
58    int CoordVertex (int edge, EnumCoord dim)
59        { return coord_vertex [edge] [dim] ; }
60
61    EnumHVertex EdgeVertex (int edge, EnumVertex sens)
62        { return edge_vertex [edge] [sens] ; }
63
64    EnumHEdge QuadEdge (int face, EnumQuad cote)
65        { return quad_edge [face] [cote] ; }
66
67    cpchar namofHexaEdge   (int arete)   { return h_edge_name   [arete] ; }
68    cpchar namofHexaVertex (int sommet)  { return h_vertex_name [sommet]; }
69    cpchar namofHexaQuad   (int face)    { return h_quad_name   [face];   }
70
71    EnumHQuad getOpposedQuad (int face)  { return h_opposed_quad [face]; }
72
73    void setArgs  (int nbargs, cpchar tabargs[]);
74    int  findArg  (cpchar opt);
75    bool isinArgs (cpchar opt)  { return findArg (opt) >= 0; }
76    cpchar getArg (int nro)     { return nro>=nbr_args ? NULL : tab_args[nro]; }
77
78 public  :
79    DumpStudy dump;
80
81 private :
82    Globale ();         // Constructeur prive
83
84    void setCoordVertex (EnumHVertex node, int px, int py, int pz);
85    void setEdgeVertex  (EnumHEdge edge, EnumHVertex amont, EnumHVertex aval);
86    void setQuadEdge    (EnumHQuad face, EnumHEdge c1, EnumHEdge c2, 
87                                         EnumHEdge c3, EnumHEdge c4);
88    void setOpposedVertex (EnumHVertex lun, EnumHVertex lautre);
89    void setOpposedQuad   (EnumHQuad   lun, EnumHQuad   lautre);
90
91    void setNames ();
92
93 private :
94    int     nbr_args;
95    cpchar* tab_args;
96    bool    dump_study;
97
98    int         coord_vertex [HV_MAXI] [DIM3];
99    EnumHVertex edge_vertex  [HE_MAXI] [V_TWO];
100    EnumHEdge   quad_edge    [HQ_MAXI] [QUAD4];
101
102    cpchar h_edge_name   [HE_MAXI]; 
103    cpchar h_vertex_name [HV_MAXI];
104    cpchar h_quad_name   [HQ_MAXI]; 
105
106    EnumHVertex  h_opposed_vertex [HV_MAXI];
107    EnumHQuad    h_opposed_quad   [HQ_MAXI];
108
109    static Globale* unique_instance;
110 };
111 // ===================================================== setArgs
112 inline void Globale::setArgs (int nbargs, cpchar tabargs[])
113 {
114    nbr_args = nbargs;
115    tab_args = tabargs;
116 }
117 // ===================================================== findArg
118 inline int Globale::findArg (cpchar option)
119 {
120    for (int nro=1 ; nro<nbr_args ; nro++)
121        if (Cestegal (option, tab_args[nro]))
122           return nro;
123
124    return NOTHING;
125 }
126 END_NAMESPACE_HEXA
127
128 #endif