This commit is contained in:
Gnieark 2016-07-04 07:56:25 +02:00
parent 80c98f5f7b
commit a5c908f930

View File

@ -15,6 +15,41 @@ switch($params['action']){
break; break;
case "play-turn": case "play-turn":
//to do //to do
//{"game-id":"","action":"play-turn","game":"tron","board":[[[619,240]],[[329,353]]],"player-index":0,"players":2}
//put all non empty coords on array
$busyCells = array();
foreach($params['board'] as $tails){
foreach($tails as $coords){
$busyCells[] = $coords;
}
}
//get my head coords
$myCoords = end($params['board'][$params['player-index']]);
list($x,$y) = explode(",",$myCoords);
$availablesDirs = array();
if in_array((($x + 1).",".$y), $busyCells){
$availablesDirs[] = "x+";
}
if in_array((($x -1 ).",".$y), $busyCells){
$availablesDirs[] = "x-";
}
if in_array(($x.",".($y + 1)), $busyCells){
$availablesDirs[] = "y+";
}
if in_array(($x.",".($y - 1)), $busyCells){
$availablesDirs[] = "y-";
}
if(count($availablesDirs) == 0){
echo '{"play":"x+","comment":"I Loose"}';
}else{
shuffle($availablesDirs);
echo '{"play":"'.$availablesDirs[0].'","comment":"I Loose"}';
}
break; break;
default: default:
break; break;