botsArena/src/arenas/Battleship/act.php

90 lines
2.1 KiB
PHP
Raw Normal View History

2015-12-11 13:59:14 +01:00
<?php
2015-12-11 17:22:43 +01:00
$bots=get_Bots_Array('Battleship');
2015-12-12 10:42:33 +01:00
print_r($bots);
2015-12-11 13:59:14 +01:00
switch ($_POST['act']){
case "initGame":
2015-12-11 17:22:43 +01:00
//verifier parametres POST
$postParamsWanted=array(
// key,min,max
array('gridWidth',1,100),
array('gridHeight',1,100),
array('ship1',1,10),
array('ship2',1,10),
array('ship3',1,10),
array('ship4',1,10),
array('ship5',1,10),
array('ship6',1,10)
);
foreach($postParamsWanted as $p){
if(!isset($_POST[$p[0]])){
error (500,'missing parameter');
die;
}else{
$value=$_POST[$p[0]];
}
if (
(!is_numeric($value))
OR ($value < $p[1])
OR ($value > $p[2])
)
{
2015-12-12 10:41:35 +01:00
error(500,'wrong parameters');
2015-12-11 17:22:43 +01:00
die;
}
$postValues[$p[0]]=$value;
}
//check if bots exists
$bot1Exists = false;
$bot2Exists = false;
foreach($bots as $bot){
if($bot['id'] == $_POST['bot1']){
2015-12-12 10:41:35 +01:00
echo $bot['id']."|".$_POST['bot1']."\n";
2015-12-11 17:22:43 +01:00
$bot1 = $bot;
$bot1Exists =true;
}
if($bot['id'] == $_POST['bot2']){
$bot2 = $bot;
$bot2Exists =true;
}
if ($bot1Exists && $bot2Exists){
break;
}
}
if ((!$bot1Exists) OR (!$bot2Exists)){
2015-12-12 10:34:45 +01:00
error (500,"missing parameter");
2015-12-11 17:22:43 +01:00
}
//vars checked, lets init the initGame
$_SESSION['matchId']=get_unique_id();
2015-12-12 10:25:40 +01:00
// get_IA_Response($iaUrl,$postParams)
//array à envoyer au bot 1
$bot1ParamsToSend=array(
'game' => 'Battleship',
'act' => 'init',
'match_id' => $_SESSION['matchId']."-1",
'opponent' => $bot2['name'],
'width' => $postValues['gridWidth'],
'height' => $postValues['height'],
'ship1' => $postValues['ship1'],
2015-12-12 10:35:27 +01:00
'ship2' => $postValues['ship2'],
'ship3' => $postValues['ship3'],
'ship4' => $postValues['ship4'],
'ship5' => $postValues['ship5'],
2015-12-12 10:25:40 +01:00
'ship6' => $postValues['ship6']
);
$anwserPlayer1 = get_IA_Response($bot1['url'],$bot1ParamsToSend);
2015-12-12 10:33:33 +01:00
echo $anwserPlayer1; die;
2015-12-11 17:22:43 +01:00
2015-12-11 13:59:14 +01:00
break;
default:
break;
}