awnser is no
This commit is contained in:
parent
9252427740
commit
c23f5e5bb3
|
@ -20,22 +20,32 @@ function createElem(type,attributes)
|
||||||
return elem;
|
return elem;
|
||||||
}
|
}
|
||||||
|
|
||||||
function battleship(botsArray,bot1,bot2,gridWidth,gridHeight,nbShip1,nbShip2,nbShip3,nbShip4,nbShip5,nbShip6,xd_check){
|
function battleship(bot1,bot2,gridWidth,gridHeight,nbShip1,nbShip2,nbShip3,nbShip4,nbShip5,nbShip6,xd_check){
|
||||||
|
var bot1IdName = bot1.split("-");
|
||||||
|
var bot2IdName = bot2.split("-");
|
||||||
document.getElementById('fightResult').innerHTML = '';
|
document.getElementById('fightResult').innerHTML = '';
|
||||||
//dessiner les deux grilles
|
//dessiner les deux grilles
|
||||||
tableAdv=createElem("table",{"id":"tblAdv","class":"battleshipGrid"});
|
var tableAdv=createElem("table",{"id":"tblAdv","class":"battleshipGrid"});
|
||||||
tableMe=createElem("table",{"id":"tblAdv","class":"battleshipGrid"});
|
var tableMe=createElem("table",{"id":"tblAdv","class":"battleshipGrid"});
|
||||||
|
|
||||||
for (i=0; i < gridHeight ; i++){
|
for (var i=0; i < gridHeight ; i++){
|
||||||
//ligne de titre
|
//ligne de titre
|
||||||
|
var trTitre1=createElem("tr");
|
||||||
|
var trTitre2=createElem("tr");
|
||||||
|
var tdTitre1=createElem("td",{"collspan":gridWidth});
|
||||||
|
var tdTitre2=createElem("td",{"collspan":gridWidth});
|
||||||
|
tdTitre1.innerHTML = bot1IdName[1];
|
||||||
|
tdTitre2.innerHTML = bot2IdName[1];
|
||||||
|
trTitre1.appendChild(tdTitre1);
|
||||||
|
tableAdv.appendChild(trTitre1);
|
||||||
|
trTitre2.appendChild(tdTitre2);
|
||||||
|
tableMe.appendChild(trTitre2);
|
||||||
|
|
||||||
trAdv=createElem("tr");
|
var trAdv=createElem("tr");
|
||||||
trMe=createElem("tr");
|
var trMe=createElem("tr");
|
||||||
for (j=0; j < gridWidth ; j++){
|
for (var j=0; j < gridWidth ; j++){
|
||||||
tdAdv=createElem("td",{"id":"adv" + i +"-" + j,"class": "empty"});
|
var tdAdv=createElem("td",{"id":"adv" + i +"-" + j,"class": "empty"});
|
||||||
tdMe=createElem("td",{"id":"me" + i +"-" + j,"class": "empty"});
|
var tdMe=createElem("td",{"id":"me" + i +"-" + j,"class": "empty"});
|
||||||
trAdv.appendChild(tdAdv);
|
trAdv.appendChild(tdAdv);
|
||||||
trMe.appendChild(tdMe);
|
trMe.appendChild(tdMe);
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,12 +43,12 @@ if(!$postParams){
|
||||||
$selected='selected="selected"';
|
$selected='selected="selected"';
|
||||||
else
|
else
|
||||||
$selected='';
|
$selected='';
|
||||||
echo '<option value="'.$i.'" '.$selected.'>'.$bots[$i]['name'].'</option>';
|
echo '<option value="'.$i."-"$bots[$i]['name'].'" '.$selected.'>'.$bots[$i]['name'].'</option>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</select></em>
|
</select></em>
|
||||||
</p>
|
</p>
|
||||||
<!-- battleship(bot1,bot2,gridWidth,gridHeight,nbShip1,nbShip2,nbShip3,nbShip4,nbShip5,nbShip6,xd_check) -->
|
<!-- battleship(bot1,bot2,gridWidth,gridHeight,nbShip1,nbShip2,nbShip3,nbShip4,nbShip5,nbShip6,xd_check) -->
|
||||||
<p><label> </label><input type="button" value="<?php echo $lang['FIGHT']; ?>" onclick="battleship(<?php echo json_encode($bots); ?>,document.getElementById('bot1').value,document.getElementById('bot2').value,getElementById('width').value,getElementById('height').value,getElementById('ship1').value,getElementById('ship2').value,getElementById('ship3').value,getElementById('ship4').value,getElementById('ship5').value,getElementById('ship6').value,'<?php echo xd_check_input(2); ?>');"></p>
|
<p><label> </label><input type="button" value="<?php echo $lang['FIGHT']; ?>" onclick="battleship(document.getElementById('bot1').value,document.getElementById('bot2').value,getElementById('width').value,getElementById('height').value,getElementById('ship1').value,getElementById('ship2').value,getElementById('ship3').value,getElementById('ship4').value,getElementById('ship5').value,getElementById('ship6').value,'<?php echo xd_check_input(2); ?>');"></p>
|
||||||
<div id="fightResult"></div>
|
<div id="fightResult"></div>
|
||||||
</article>
|
</article>
|
Loading…
Reference in New Issue
Block a user