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