pull/96/head
Gnieark 8 years ago
parent 759230082c
commit 9a2224f019

@ -1 +1 @@
1662
1671

@ -66,9 +66,7 @@ class TronGame
save_battle('tron',$winer,$loser,1,'id');
}
}
}
public function get_trails(){
//return all trails for draw svg
$trailsArr = array();
@ -109,8 +107,6 @@ class TronGame
'player-index' => $botCount, // To do: verifier que ça restera le même à chaque tour
'players' => $nbeBots
);
//!!!!!!!!!!!!! To debug
//error_log(json_encode($paramsToSend[$botCount]));
}
}
@ -156,11 +152,21 @@ class TronGame
}
}
return $this->get_lasts_trails();
//loosers list (in order to pass their id)
$loosersList = array();
foreach($loosers as $looser){
$loosersList[] = array(
'order' => $looser,
'id' => $this->bots[$looser]->id
);
}
return array(
'last_points' => $this->get_lasts_trails(),
'loosers' => $loosersList
);
}
private function get_multi_IAS_Responses($iasUrls, $postParams){
//same as the get_IAS_Responses function
// but more than one bot requested parallely

@ -36,7 +36,7 @@ switch ($_POST['act']){
$botsInfos[] = $botsFullArr[$id];
}
}
//************
$game = new TronGame($botsInfos);

@ -100,9 +100,9 @@ function play(gameId,xd_check){
req.onreadystatechange = function(){
if(req.readyState == 4){
if(req.status == 200) {
addLog(req.responseText);
//addLog(req.responseText);
var reponse = JSON.parse(req.responseText);
drawMap(reponse['lap']);
drawMap(reponse['lap']['last_points']);
if(reponse['continue'] == '1'){
//setTimeout(function(){

Loading…
Cancel
Save