2016-07-01 07:32:39 +02:00
|
|
|
<?php
|
2016-07-01 07:34:27 +02:00
|
|
|
|
2016-07-01 07:32:39 +02:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
header('Access-Control-Allow-Methods: GET, POST');
|
|
|
|
header('Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept');
|
|
|
|
|
|
|
|
/*
|
|
|
|
* stupid IA for tron
|
|
|
|
*/
|
|
|
|
$in=file_get_contents('php://input');
|
|
|
|
$params=json_decode($in, TRUE);
|
|
|
|
switch($params['action']){
|
|
|
|
case "init":
|
|
|
|
echo '{"name":"Stupid AI"}';
|
|
|
|
break;
|
|
|
|
case "play-turn":
|
2016-09-30 18:28:10 +02:00
|
|
|
|
|
|
|
//Input JSON exemple:
|
|
|
|
/*{
|
|
|
|
"game-id":"1647",
|
|
|
|
"action":"play-turn",
|
|
|
|
"game":"tron",
|
|
|
|
"board":[
|
|
|
|
[
|
|
|
|
[425,763],[424,763],[423,763],[422,763],[421,763],[420,763],[419,763]
|
|
|
|
],
|
|
|
|
[
|
|
|
|
[858,501],[857,501],[856,501],[855,501],[854,501],[853,501],[852,501]
|
|
|
|
]
|
|
|
|
],
|
|
|
|
"player-index":0,
|
|
|
|
"players":2}
|
|
|
|
*/
|
2016-07-04 07:56:25 +02:00
|
|
|
|
|
|
|
//put all non empty coords on array
|
|
|
|
$busyCells = array();
|
|
|
|
|
2016-09-30 18:28:10 +02:00
|
|
|
foreach($params['board'] as $tail){
|
|
|
|
foreach($tail as $coord){
|
|
|
|
$busyCells[] = $coord[0].",".$coord[1];
|
2016-07-04 07:56:25 +02:00
|
|
|
}
|
|
|
|
}
|
2016-09-30 18:28:10 +02:00
|
|
|
|
2016-07-04 07:56:25 +02:00
|
|
|
//get my head coords
|
|
|
|
$myCoords = end($params['board'][$params['player-index']]);
|
2016-07-04 22:45:04 +02:00
|
|
|
|
|
|
|
$x = $myCoords[0];
|
|
|
|
$y = $myCoords[1];
|
2016-07-04 07:56:25 +02:00
|
|
|
|
|
|
|
$availablesDirs = array();
|
2016-09-30 18:28:10 +02:00
|
|
|
if (!in_array(($x + 1).",".$y, $busyCells)){
|
2016-07-04 07:56:25 +02:00
|
|
|
$availablesDirs[] = "x-";
|
|
|
|
}
|
2016-09-30 18:28:10 +02:00
|
|
|
if (!in_array(($x -1 ).",".$y, $busyCells)){
|
|
|
|
$availablesDirs[] = "x+";
|
2016-07-04 07:56:25 +02:00
|
|
|
}
|
2016-09-30 18:28:10 +02:00
|
|
|
if (!in_array($x.",".($y + 1), $busyCells)){
|
2016-07-04 07:56:25 +02:00
|
|
|
$availablesDirs[] = "y-";
|
|
|
|
}
|
2016-09-30 18:28:10 +02:00
|
|
|
if (!in_array($x.",".($y - 1), $busyCells)){
|
|
|
|
$availablesDirs[] = "y+";
|
|
|
|
}
|
2016-07-04 07:56:25 +02:00
|
|
|
|
|
|
|
if(count($availablesDirs) == 0){
|
2016-07-04 22:46:34 +02:00
|
|
|
echo '{"play":"x+","comment":"I Loose"}';
|
2016-07-04 07:56:25 +02:00
|
|
|
}else{
|
|
|
|
shuffle($availablesDirs);
|
2016-07-04 22:45:04 +02:00
|
|
|
echo '{"play":"'.$availablesDirs[0].'"}';
|
2016-07-04 07:56:25 +02:00
|
|
|
}
|
2016-09-30 18:28:10 +02:00
|
|
|
//error_log(json_encode($availablesDirs));
|
2016-07-01 07:32:39 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2016-09-30 18:28:10 +02:00
|
|
|
}
|