This commit is contained in:
Gnieark 2016-06-30 14:53:38 +02:00
parent f77b172b85
commit 6616624069
2 changed files with 29 additions and 21 deletions

View File

@ -17,26 +17,30 @@ switch ($_POST['act']){
case "initGame": case "initGame":
//check if bots exists //check if bots exists
$bots=get_Bots_Array('tron'); $botsArrayTemp = json_decode($_POST['bots']);
$botsArray = json_decode($_POST['bots']);
$_SESSION['bots'] = array();
$positions = array();
$botCount = 0;
foreach($botsArrayTemp as $botId){
do{
$x = rand(1,999);
$y = rand(1,999);
}while(in_array($x.",".$y,$positions));
$positions[] = $x.",".$y;
$_SESSION['bots'][$botCount] = new TronPlayer($bot['id'],500,10,'y+');
if ($_SESSION['bots'][$botCount]->getStatus() === false){
unset($_SESSION['bots'][$botCount]);
}else{
$botCount++;
}
$bot1Exists = false;
$bot2Exists = false;
foreach($bots as $bot){
if($bot['id'] == $_POST['bot1']){
$_SESSION['bots'][]=new TronPlayer($bot['id'],500,10,'y+');
$bot1Exists =true;
}
if($bot['id'] == $_POST['bot2']){
$_SESSION['bots'][]=new TronPlayer($bot['id'],500,989,'y-');
$bot2Exists =true;
}
if ($bot1Exists && $bot2Exists){
break;
}
} }
if ((!$bot1Exists) OR (!$bot2Exists)){
error (500,"missing parameter 2"); if ($botCount < 2){
error (500,"missing bots");
} }

View File

@ -7,6 +7,10 @@ class TronPlayer{
private $direction; private $direction;
private $state; private $state;
public function getStatus(){
return $this->state;
}
private function set_direction($newDir){ private function set_direction($newDir){
//can't be the opposite of the previous direction //can't be the opposite of the previous direction
if( if(