bonsoir
alors là besoin d'aide ^^ je me désespère !
j ai une classe de paramétrage dans le fichier paramEnergie.php :
alors là besoin d'aide ^^ je me désespère !
j ai une classe de paramétrage dans le fichier paramEnergie.php :
Code PHP :
<?php
echo 'coucou de paramEnergie'; // on verra pourquoi le echo
class paramEnergie
{
// tableau des consommations d'énergie
static $_consoRef = array
(
//ref fat stress faim soif
REPOS => array( 1.0, -1.5, -1.0, 0.2, 0.1),
NORMAL => array( 1.0, 1.0, 0.4, 0.3, 0.6),
PHYSIQUE => array( 1.0, 1.5, 0.4, 1.0, 1.0),
INTELLECTUEL => array( 1.0, 0.7, 0.4, 0.5, 0.3),
GRATUIT => array( 0.0, 0.0, 0.0, 0.0, 0.0)
);
// tableau des modificateurs de consommation d'énergie
static $_consoModif = array(
// temps fatigue stress soif faim
ECONOMIE => array( 1.2, 0.6, 0.6, 1.0, 1.0),
RAPIDE => array( 0.8, 1.2, 1.2, 1.1, 1.1),
CONSCIENCIEUX => array( 1.2, 1.0, 1.1, 1.2, 1.2),
);
}
?>
j'ai un fichier qui inclut le fichier paramEnergie.php pour utiliser les informations
Code PHP :
<?php
public function setTypeConso($typeConso)
{
if(!isset(paramEnergie::$_consoRef[$typeConso]))
throw new classErreur( NULL, 999, array( 'type de consommation' => $typeConso));
$this->_conso = paramEnergie::$_consoRef[$typeConso];
return true;
}