botsArena/html/StupidIAconnectFour.php

19 lines
249 B
PHP
Raw Normal View History

2016-05-11 10:33:32 +02:00
<?php
2016-05-11 14:49:38 +02:00
/*
* stupid IA for battle ship
* choose by random a free column
*/
$grid=json_decode($_POST['grid']);
2016-05-11 14:52:26 +02:00
2016-05-11 14:49:38 +02:00
$colAvailable=array();
for($i=0;$i<7;$i++){
2016-05-11 14:52:26 +02:00
if($grid[5][$i] == ""){
2016-05-11 14:49:38 +02:00
$colAvailable[]=$i;
}
}
shuffle($colAvailable);
echo $i;
die;