Subversion Repositories eFlore/Archives.chorologie

Rev

Rev 4 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 jpm 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
9 jpm 4
// | PHP version 4.3                                                                                    |
4 jpm 5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of Cartographie.                                                                   |
9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
11
// | it under the terms of the GNU General Public License as published by                                 |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
9 jpm 24
// CVS : $Id: carto_action.class.php,v 1.2 2005-02-22 16:35:16 jpm Exp $
4 jpm 25
/**
26
* Classe ActionCarte.
27
*
28
* Calsse permettant de connaître les actions à réaliser sur une carte.
29
*
30
*@package Cartographie
31
//Auteur original :
32
*@author        Nicolas MATHIEU
33
//Autres auteurs :
34
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
35
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
36
*@copyright     Tela-Botanica 2000-2004
9 jpm 37
*@version       $Revision: 1.2 $ $Date: 2005-02-22 16:35:16 $
4 jpm 38
// +------------------------------------------------------------------------------------------------------+
39
*/
40
 
41
// +------------------------------------------------------------------------------------------------------+
42
// |                                            ENTETE du PROGRAMME                                       |
43
// +------------------------------------------------------------------------------------------------------+
44
 
45
 
46
// +------------------------------------------------------------------------------------------------------+
47
// |                                            CORPS du PROGRAMME                                        |
48
// +------------------------------------------------------------------------------------------------------+
49
 
9 jpm 50
/**
51
* Classe Carto_Action() - Recueille les infos sur l'action à réaliser pour une zone géo donnée.
52
*
53
* La classe Carto_Action sert a definir les paramètres nécessaires pour recueillir l'action a réaliser en
54
* fonction des coordonnées du point, du masque et du niveau.
55
* Elle remplace la fonction get_cartoAction() que l'on peut trouver dans le fichier carto_commun.php
56
* des différentes application utilisant la carto.
57
* Les champs a renseigner sont les suivants :
58
*   -le nom de la table ($nom_table_carto_action) où sont stokée les actions à réalisées
59
*      en fonction des couleurs
60
*   -les 5 champs principaux de la table :
61
*      -l'identifiant de la zone géographique (un nom, un numéro ou une abréviation) -> $nom_champ_cle
62
*      -les couleurs -> $nom_champ_rouge, $nom_champ_vert, $nom_champ_bleu
63
*      -l'action -> $nom_champ_action
64
* Elle possède une seule méthode : get_cartoAction().
65
*/
4 jpm 66
class Carto_Action
67
{
9 jpm 68
    // +--------------------------------------------------------------------------------------------------+
69
    //                                      LES ATTRIBUTS DE LA CLASSE
70
    var $_table_zone_geo;
71
    var $_id_zone_geo_zone;
72
    var $_rouge;
73
    var $_vert;
74
    var $_bleu;
75
    var $_table_action;
76
    var $_id_carte_action;
77
    var $_id_zone_geo_action;
78
    var $_type_zone_geo_action;
79
    var $_action;
80
    var $_id_carte_destination;
4 jpm 81
 
9 jpm 82
    // +--------------------------------------------------------------------------------------------------+
83
    //                                     LE CONSTRUCTEUR DE LA CLASSE
84
    /**
85
    * Constructeur Carto_Action()
86
    *
87
    * Constructeur initialisant les attributs de la classe Carto_Action().
88
    */
89
    function Carto_Action($info_table_zone_geo, $info_table_action)
4 jpm 90
    {
9 jpm 91
        $this->_table_zone_geo = $info_table_zone_geo['nom_table_zone'];
92
        $this->_id_zone_geo_zone = $info_table_zone_geo['nom_chp_id_zone'];
93
        $this->_rouge = $info_table_zone_geo['nom_chp_rouge'];
94
        $this->_vert = $info_table_zone_geo['nom_chp_vert'];
95
        $this->_bleu = $info_table_zone_geo['nom_chp_bleu'];
96
        $this->_table_action = $info_table_action['nom_table_action'];
97
        $this->_id_carte_action = $info_table_action['nom_chp_id_carte'];
98
        $this->_id_zone_geo_action = $info_table_action['nom_chp_id_zg_action'];
99
        $this->_type_zone_geo_action = $info_table_action['nom_chp_type_zg'];
100
        $this->_action = $info_table_action['nom_chp_action'];
101
        $this->_id_carte_destination = $info_table_action['nom_chp_id_carte_destination'];
4 jpm 102
    }
103
 
9 jpm 104
    // +--------------------------------------------------------------------------------------------------+
105
    //                                       LES METHODES PRIVÉES
106
    /**
107
    * Méthode _consulterActionImage($imageX, $imageY, $masque, $id_carte)
108
    *
109
    * Elle renvoit l'action a réaliser.
110
    * Nous passons les paramètres suivant :
111
    *      -les coordonnees du point ($imageX et $imageY)
112
    *      -le masque pour recuperer la couleur ($masque)
113
    *      -l'identifiant de la carte où nous nous trouvons ($id_carte)
114
    */
4 jpm 115
    function _consulterActionImage($imageX, $imageY, $masque, $id_carte)
116
    {
117
        // Nous récuperons les valeurs RVB de la couleur sur laquelle l'utilisateur a cliqué.
118
        // Les valeurs RVB sont stockées dans le tableau associatif $valeurs_RVB.
119
 
120
        $masque_courant = imagecreatefrompng($masque);
121
        $index_couleur = imagecolorat($masque_courant,$imageX,$imageY);
122
        $valeurs_RVB = imagecolorsforindex($masque_courant, $index_couleur);
123
 
124
        // Nous effectuons une requete dans la table carto_ACTION pour récupérer la valeur
125
        // du champ "action", afin de savoir quoi faire.
126
        $requete =
127
        'SELECT '.$this->_action.', '.$this->_id_carte_destination.', '.$this->_id_zone_geo_action.
128
        ' FROM '.$this->_table_action.', '.$this->_table_zone_geo.
129
        ' WHERE '.$this->_table_zone_geo.'.'.$this->_rouge.' = '.$valeurs_RVB['red'].
130
        ' AND '.$this->_table_zone_geo.'.'.$this->_vert.' = '.$valeurs_RVB['green'].
131
        ' AND '.$this->_table_zone_geo.'.'.$this->_bleu.' = '.$valeurs_RVB['blue'].
132
        ' AND '.$this->_table_action.'.'.$this->_id_zone_geo_action.' = '.$this->_table_zone_geo.'.'.$this->_id_zone_geo_zone.
133
        ' AND '.$this->_table_action.'.'.$this->_id_carte_action.' = "'.$id_carte.'"';
134
 
135
        $resultat=mysql_query($requete) or die('
136
            <H2 style="text-align: center; font-weight: bold; font-size: 26px;">Erreur de requête</H2>'.
137
            '<b>Requete : </b>'.$requete.
138
            '<br/><br/><b>Erreur : </b>'.mysql_error());
139
 
140
        $ligne = mysql_fetch_object ($resultat);
141
 
142
        if (mysql_num_rows ($resultat) != 0) {
143
 
144
            $chp_id_zone_geo = $this->_id_zone_geo_action;
145
            $chp_action = $this->_action;
146
            $chp_id_carte_destination = $this->_id_carte_destination;
147
 
148
            $action['id_zone_geo'] = $ligne->$chp_id_zone_geo;
149
            $action['type_action'] = $ligne->$chp_action;
150
            $action['id_carte_destination'] = $ligne->$chp_id_carte_destination;
151
 
152
            return $action;
153
        }
154
    }//Fin de la méthode _consulterActionImage().
155
 
9 jpm 156
    /**
157
    * Méthode _consulterActionListe($id_zone_carte, $id_carte)
158
    *
159
    * Elle renvoit l'action a réaliser.
160
    * Nous passons les paramètres suivant :
161
    *      -l'identifiant de la zone que l'on veut afficher
162
    *      -l'identifiant de la carte où nous nous trouvons ($id_carte)
163
    */
4 jpm 164
    function _consulterActionListe($id_zone_carte, $id_carte)
165
    {
166
        // Nous effectuons une requete dans la table carto_ACTION pour récupérer la valeur
167
        // du champ "action", afin de savoir quoi faire.
168
        $requete =
169
        'SELECT '.$this->_action.', '.$this->_id_carte_destination.', '.$this->_id_zone_geo_action.
170
        ' FROM '.$this->_table_action.', '.$this->_table_zone_geo.
171
        ' WHERE '.$this->_table_action.'.'.$this->_id_zone_geo_action.' = '.$this->_table_zone_geo.'.'.$this->_id_zone_geo_zone.
172
        ' AND '.$this->_table_zone_geo.'.'.$this->_id_zone_geo_zone.' = "'.$id_zone_carte.'"'.
173
        ' AND '.$this->_table_action.'.'.$this->_id_carte_action.' = "'.$id_carte.'"';
174
 
175
        $resultat=mysql_query($requete) or die('
176
            <H2 style="text-align: center; font-weight: bold; font-size: 26px;">Erreur de requête</H2>'.
177
            '<b>Requete : </b>'.$requete.
178
            '<br/><br/><b>Erreur : </b>'.mysql_error());
179
 
180
        $ligne = mysql_fetch_object ($resultat);
181
 
182
        if (mysql_num_rows ($resultat) != 0) {
183
 
184
            $chp_id_zone_geo = $this->_id_zone_geo_action;
185
            $chp_action = $this->_action;
186
            $chp_id_carte_destination = $this->_id_carte_destination;
187
 
188
            $action['id_zone_geo'] = $ligne->$chp_id_zone_geo;
189
            $action['type_action'] = $ligne->$chp_action;
190
            $action['id_carte_destination'] = $ligne->$chp_id_carte_destination;
191
 
192
            return $action;
193
        }
194
    }//Fin de la méthode get_cartoAction().
195
}//Fin de la classe Carto_Action.
196
 
197
// +------------------------------------------------------------------------------------------------------+
198
// |                                            PIED du PROGRAMME                                         |
199
// +------------------------------------------------------------------------------------------------------+
200
 
201
 
202
/* +--Fin du code ----------------------------------------------------------------------------------------+
203
*
204
* $Log: not supported by cvs2svn $
9 jpm 205
* Revision 1.1  2005/02/22 12:02:57  jpm
206
* Ajout des fichiers de la bibliothèque cartographique.
4 jpm 207
*
208
* +-- Fin du code ----------------------------------------------------------------------------------------+
209
*/
210
?>