$p[2]) ) { error(500,'wrong parameters '.$p[0]); die; } $postValues[$p[0]]=$value; } //check if bots exists $bot1Exists = false; $bot2Exists = false; foreach($bots as $bot){ if($bot['id'] == $_POST['bot1']){ $bot1 = $bot; $bot1Exists =true; } if($bot['id'] == $_POST['bot2']){ $bot2 = $bot; $bot2Exists =true; } if ($bot1Exists && $bot2Exists){ break; } } if ((!$bot1Exists) OR (!$bot2Exists)){ error (500,"missing parameter 2"); } //vars checked, lets init the initGame $_SESSION['matchId']=get_unique_id(); for($player = 1; $player <= 2; $player++){ if($player==1){ $opponentName=$bot2['name']; $currentBot=$bot1; }else{ $opponentName=$bot1['name']; $currentBot=$bot2; } $botParamsToSend=array( 'game' => 'Battleship', 'match_id' => $_SESSION['matchId']."-1", 'act' => 'init', 'opponent' => $opponentName, 'width' => $postValues['gridWidth'], 'height' => $postValues['gridHeight'], 'ship1' => $postValues['nbShip1'], 'ship2' => $postValues['nbShip2'], 'ship3' => $postValues['nbShip3'], 'ship4' => $postValues['nbShip4'], 'ship5' => $postValues['nbShip5'], 'ship6' => $postValues['nbShip6'] ); $anwserPlayer=get_IA_Response($currentBot['url'],$botParamsToSend); $boatsPlayer = json_decode( html_entity_decode($anwserPlayer)); if(!$boatsPlayer){ echo $currentBot['name']." a fait une réponse non conforme, il perd."; if($player==1){ save_battle('Battleship',$bot1['name'],$bot2['name'],2); }else{ save_battle('Battleship',$bot1['name'],$bot2['name'],1); } } //vérifier si'il y a le bon nombre de bateaux $nbBoatsIwant=array(0,$postValues['nbShip1'],$postValues['nbShip2'],$postValues['nbShip3'], $postValues['nbShip4'],$postValues['nbShip5'],$postValues['nbShip6']); foreach($boatsPlayer as $boat){ list($startCoord,$endCoord) = explode("-",$boat); list($xStart,$yStart)=explode(",",$startCoord); list($xEnd,$yEnd)=explode(",",$endCoord); if($xStart == $xEnd){ $long=abs($yStart - $yEnd); }else{ $long=abs($xStart - $xEnd); } $nbBoatsIwant[$long]-=1; } foreach($nbBoatsIwant as $nb){ if($nb <> 0){ echo $currentBot['name']." n'a pas placé correctement ses bateaux. Il perd"; if($player==1){ save_battle('Battleship',$bot1['name'],$bot2['name'],2); }else{ save_battle('Battleship',$bot1['name'],$bot2['name'],1); } } } } die; break; default: break; }