wootook-reloaded/marchand.php
Gregory PLANCHAT ec7e40e1aa Refactored to 2 namespaces: Wootook & Legacies
Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
2011-10-04 19:57:00 +02:00

157 lines
No EOL
4.8 KiB
PHP
Raw Permalink Blame History

<?php
/**
* This file is part of Wootook
*
* @license http://www.gnu.org/licenses/gpl-3.0.txt
* @see http://www.wootook.com/
*
* Copyright (c) 2009-Present, Wootook Support Team <http://www.xnova-ng.org>
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --> NOTICE <--
* This file is part of the core development branch, changing its contents will
* make you unable to use the automatic updates manager. Please refer to the
* documentation for further information about customizing Wootook.
*
*/
define('INSIDE' , true);
define('INSTALL' , false);
require_once dirname(__FILE__) .'/application/bootstrap.php';
function ModuleMarchand ( $CurrentUser, &$CurrentPlanet ) {
global $lang, $_POST;
includeLang('marchand');
$parse = $lang;
if ($_POST['ress'] != '') {
$PageTPL = gettemplate('message_body');
$Error = false;
$CheatTry = false;
$Metal = $_POST['metal'];
$Crystal = $_POST['cristal'];
$Deuterium = $_POST['deut'];
if ($Metal < 0) {
$Metal *= -1;
$CheatTry = true;
}
if ($Crystal < 0) {
$Crystal *= -1;
$CheatTry = true;
}
if ($Deuterium < 0) {
$Deuterium *= -1;
$CheatTry = true;
}
if ($CheatTry == false) {
switch ($_POST['ress']) {
case 'metal':
$Necessaire = (( $Crystal * 2) + ( $Deuterium * 4));
if ($CurrentPlanet['metal'] > $Necessaire) {
$CurrentPlanet['metal'] -= $Necessaire;
} else {
$Message = $lang['mod_ma_noten'] ." ". $lang['Metal'] ."! ";
$Error = true;
}
break;
case 'cristal':
$Necessaire = (( $Metal * 0.5) + ( $Deuterium * 2));
if ($CurrentPlanet['crystal'] > $Necessaire) {
$CurrentPlanet['crystal'] -= $Necessaire;
} else {
$Message = $lang['mod_ma_noten'] ." ". $lang['Crystal'] ."! ";
$Error = true;
}
break;
case 'deuterium':
$Necessaire = (( $Metal * 0.25) + ( $Crystal * 0.5));
if ($CurrentPlanet['deuterium'] > $Necessaire) {
$CurrentPlanet['deuterium'] -= $Necessaire;
} else {
$Message = $lang['mod_ma_noten'] ." ". $lang['Deuterium'] ."! ";
$Error = true;
}
break;
}
}
if ($Error == false) {
if ($CheatTry == true) {
$CurrentPlanet['metal'] = 0;
$CurrentPlanet['crystal'] = 0;
$CurrentPlanet['deuterium'] = 0;
} else {
$CurrentPlanet['metal'] += $Metal;
$CurrentPlanet['crystal'] += $Crystal;
$CurrentPlanet['deuterium'] += $Deuterium;
}
$QryUpdatePlanet = "UPDATE {{table}} SET ";
$QryUpdatePlanet .= "`metal` = '". $CurrentPlanet['metal'] ."', ";
$QryUpdatePlanet .= "`crystal` = '". $CurrentPlanet['crystal'] ."', ";
$QryUpdatePlanet .= "`deuterium` = '". $CurrentPlanet['deuterium'] ."' ";
$QryUpdatePlanet .= "WHERE ";
$QryUpdatePlanet .= "`id` = '". $CurrentPlanet['id'] ."';";
doquery ( $QryUpdatePlanet , 'planets');
$Message = $lang['mod_ma_done'];
}
if ($Error == true) {
$parse['title'] = $lang['mod_ma_error'];
} else {
$parse['title'] = $lang['mod_ma_donet'];
}
$parse['mes'] = $Message;
} else {
if ($_POST['action'] != 2) {
$PageTPL = gettemplate('marchand_main');
} else {
$parse['mod_ma_res'] = "1";
switch ($_POST['choix']) {
case 'metal':
$PageTPL = gettemplate('marchand_metal');
$parse['mod_ma_res_a'] = "2";
$parse['mod_ma_res_b'] = "4";
break;
case 'cristal':
$PageTPL = gettemplate('marchand_cristal');
$parse['mod_ma_res_a'] = "0.5";
$parse['mod_ma_res_b'] = "2";
break;
case 'deut':
$PageTPL = gettemplate('marchand_deuterium');
$parse['mod_ma_res_a'] = "0.25";
$parse['mod_ma_res_b'] = "0.5";
break;
}
}
}
$Page = parsetemplate ( $PageTPL, $parse );
return $Page;
}
$Page = ModuleMarchand ( $user, $planetrow );
display ( $Page, $lang['mod_marchand'], true, '', false );
// -----------------------------------------------------------------------------------------------------------
// History version
// 1.0 - Version originelle (Tom1991)
// 1.1 - Version 2.0 de Tom1991 ajout java
// 1.2 - R<><52>criture Chlorel passage aux template, optimisation des appels et des requetes SQL
?>