mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
148 lines
7.3 KiB
Smarty
148 lines
7.3 KiB
Smarty
<?php
|
|
session_start();
|
|
include_once('GameEngine/config.php');
|
|
include_once ("GameEngine/Lang/" . LANG . ".php");
|
|
include_once("GameEngine/Generator.php");
|
|
include_once("GameEngine/Database.php");
|
|
|
|
//include("GameEngine/Session.php");
|
|
|
|
if($y < $yy) {$y = $y + (($yy - $y) /2);}
|
|
else {$y = $yy + (($y - $yy) /2);}
|
|
|
|
$x = $x - (($x - $xx) / 2);
|
|
$x = ($x < -WORLD_MAX)? $x+WORLD_MAX*2+1 : $x;
|
|
$x = ($x > WORLD_MAX)? $x-WORLD_MAX*2-1 : $x;
|
|
$y = ($y < -WORLD_MAX)? $y+WORLD_MAX*2+1 : $y;
|
|
$y = ($y > WORLD_MAX)? $y-WORLD_MAX*2-1 : $y;
|
|
$xm3 = ($x-3) < -WORLD_MAX? $x+WORLD_MAX+WORLD_MAX-2 : $x-3;
|
|
$xm2 = ($x-2) < -WORLD_MAX? $x+WORLD_MAX+WORLD_MAX-1 : $x-2;
|
|
$xm1 = ($x-1) < -WORLD_MAX? $x+WORLD_MAX+WORLD_MAX : $x-1;
|
|
$xp1 = ($x+1) > WORLD_MAX? $x-WORLD_MAX-WORLD_MAX : $x+1;
|
|
$xp2 = ($x+2) > WORLD_MAX? $x-WORLD_MAX-WORLD_MAX+1 : $x+2;
|
|
$xp3 = ($x+3) > WORLD_MAX? $x-WORLD_MAX-WORLD_MAX+2: $x+3;
|
|
$ym3 = ($y-3) < -WORLD_MAX? $y+WORLD_MAX+WORLD_MAX-2 : $y-3;
|
|
$ym2 = ($y-2) < -WORLD_MAX? $y+WORLD_MAX+WORLD_MAX-1 : $y-2;
|
|
$ym1 = ($y-1) < -WORLD_MAX? $y+WORLD_MAX+WORLD_MAX : $y-1;
|
|
$yp1 = ($y+1) > WORLD_MAX? $y-WORLD_MAX-WORLD_MAX : $y+1;
|
|
$yp2 = ($y+2) > WORLD_MAX? $y-WORLD_MAX-WORLD_MAX+1 : $y+2;
|
|
$yp3 = ($y+3) > WORLD_MAX? $y-WORLD_MAX-WORLD_MAX+2: $y+3;
|
|
$xarray = array($xm3,$xm2,$xm1,$x,$xp1,$xp2,$xp3);
|
|
$yarray = array($ym3,$ym2,$ym1,$y,$yp1,$yp2,$yp3);
|
|
$maparray = array();
|
|
$xcount = 0;
|
|
|
|
$maparray = '';
|
|
$maparray2 = '';
|
|
for($i=0; $i<=6; $i++){
|
|
if($xcount != 7){
|
|
$maparray .= '\''.$generator->getBaseID($xarray[$xcount],$yarray[$i]).'\',';
|
|
$maparray2 .= $generator->getBaseID($xarray[$xcount],$yarray[$i]).',';
|
|
if($i==6){
|
|
$i = -1;
|
|
$xcount +=1;
|
|
}
|
|
}
|
|
}
|
|
header("Content-Type: application/json;");
|
|
|
|
$maparray = (substr($maparray, 0, -1));
|
|
|
|
$query2 = "SELECT
|
|
".TB_PREFIX."wdata.id AS map_id,
|
|
".TB_PREFIX."wdata.fieldtype AS map_fieldtype,
|
|
".TB_PREFIX."wdata.oasistype AS map_oasis,
|
|
".TB_PREFIX."wdata.x AS map_x,
|
|
".TB_PREFIX."wdata.y AS map_y,
|
|
".TB_PREFIX."wdata.occupied AS map_occupied,
|
|
".TB_PREFIX."wdata.image AS map_image,
|
|
|
|
".TB_PREFIX."odata.conqured AS oasis_conqured,
|
|
info_user_oasis.username AS oasis_user,
|
|
info_user_oasis.tribe AS oasis_tribe,
|
|
info_alliance_oasis.tag AS oasis_alli_name,
|
|
|
|
".TB_PREFIX."vdata.wref AS ville_id,
|
|
".TB_PREFIX."vdata.owner AS ville_user,
|
|
".TB_PREFIX."vdata.name AS ville_name,
|
|
".TB_PREFIX."vdata.capital AS ville_capital,
|
|
".TB_PREFIX."vdata.pop AS ville_pop,
|
|
|
|
".TB_PREFIX."users.id AS user_id,
|
|
".TB_PREFIX."users.username AS user_username,
|
|
".TB_PREFIX."users.tribe AS user_tribe,
|
|
".TB_PREFIX."users.alliance AS user_alliance,
|
|
|
|
".TB_PREFIX."alidata.id AS aliance_id,
|
|
".TB_PREFIX."alidata.tag AS aliance_name
|
|
|
|
FROM ((((((".TB_PREFIX."wdata
|
|
LEFT JOIN ".TB_PREFIX."vdata ON ".TB_PREFIX."vdata.wref = ".TB_PREFIX."wdata.id )
|
|
LEFT JOIN ".TB_PREFIX."odata ON ".TB_PREFIX."odata.wref = ".TB_PREFIX."wdata.id )
|
|
LEFT JOIN ".TB_PREFIX."users AS info_user_oasis ON info_user_oasis.id = ".TB_PREFIX."odata.owner )
|
|
LEFT JOIN ".TB_PREFIX."alidata AS info_alliance_oasis ON info_alliance_oasis.id = info_user_oasis.alliance )
|
|
LEFT JOIN ".TB_PREFIX."users ON ".TB_PREFIX."users.id = ".TB_PREFIX."vdata.owner )
|
|
LEFT JOIN ".TB_PREFIX."alidata ON ".TB_PREFIX."alidata.id = ".TB_PREFIX."users.alliance )
|
|
where ".TB_PREFIX."wdata.id IN ($maparray)
|
|
ORDER BY FIND_IN_SET(".TB_PREFIX."wdata.id,'$maparray2')";
|
|
|
|
$result2 = mysqli_query($GLOBALS['link'],$query2) or die(mysqli_error($database->dblink));
|
|
|
|
$i=0;
|
|
//Load coor array
|
|
$yrow = 0;
|
|
|
|
$map_js ='';
|
|
while ($donnees = mysqli_fetch_assoc($result2)){
|
|
|
|
$targetalliance=$donnees["aliance_id"];
|
|
$friendarray=$database->getAllianceAlly($donnees["aliance_id"],1);
|
|
$neutralarray=$database->getAllianceAlly($donnees["aliance_id"],2);
|
|
$enemyarray=$database->getAllianceWar2($donnees["aliance_id"]);
|
|
|
|
$friend = ((isset($friendarray[0]) && isset($friendarray[0]['alli1']) && isset($friendarray[0]['alli2']) && $friendarray[0]['alli1']>0 and $friendarray[0]['alli2']>0 and $donnees["aliance_id"]>0) and ($friendarray[0]['alli1']==$_SESSION['alliance_user'] or $friendarray[0]['alli2']==$_SESSION['alliance_user']) and ($_SESSION['alliance_user'] != $targetalliance and $_SESSION['alliance_user'] and $targetalliance)) ? '1':'0';
|
|
|
|
$war = ((isset($enemyarray[0]) && isset($enemyarray[0]['alli1']) && isset($enemyarray[0]['alli2']) && $enemyarray[0]['alli1']>0 and $enemyarray[0]['alli2']>0 and $donnees["aliance_id"]>0) and ($enemyarray[0]['alli1']==$_SESSION['alliance_user'] or $enemyarray[0]['alli2']==$_SESSION['alliance_user']) and ($_SESSION['alliance_user'] != $targetalliance and $_SESSION['alliance_user'] and $targetalliance)) ? '1':'0';
|
|
|
|
$neutral = ((isset($neutralarray[0]) && isset($neutralarray[0]['alli1']) && isset($neutralarray[0]['alli2']) && $neutralarray[0]['alli1']>0 and $neutralarray[0]['alli2']>0 and $donnees["aliance_id"]>0) and ($neutralarray[0]['alli1']==$_SESSION['alliance_user'] or $neutralarray[0]['alli2']==$_SESSION['alliance_user']) and ($_SESSION['alliance_user'] != $targetalliance and $_SESSION['alliance_user'] and $targetalliance)) ? '1':'0';
|
|
|
|
|
|
$image = ($donnees['map_occupied'] == 1 && $donnees['map_fieldtype'] > 0)?(($donnees['ville_user'] == $_SESSION['id_user'])? ($donnees['ville_pop']>=100? $donnees['ville_pop']>= 250?$donnees['ville_pop']>=500? 'b30': 'b20' :'b10' : 'b00') : (($targetalliance != 0)? ($friend==1? ($donnees['ville_pop']>=100? $donnees['ville_pop']>= 250?$donnees['ville_pop']>=500? 'b31': 'b21' :'b11' : 'b01') : ($war==1? ($donnees['ville_pop']>=100? $donnees['ville_pop']>= 250?$donnees['ville_pop']>=500? 'b32': 'b22' :'b12' : 'b02') : ($neutral==1? ($donnees['ville_pop']>=100? $donnees['ville_pop']>= 250?$donnees['ville_pop']>=500? 'b35': 'b25' :'b15' : 'b05') : ($targetalliance == $_SESSION['alliance_user']? ($donnees['ville_pop']>=100? $donnees['ville_pop']>= 250?$donnees['ville_pop']>=500? 'b33': 'b23' :'b13' : 'b03') : ($donnees['ville_pop']>=100? $donnees['ville_pop']>= 250?$donnees['ville_pop']>=500? 'b34': 'b24' :'b14' : 'b04'))))) : ($donnees['ville_pop']>=100? $donnees['ville_pop']>= 250?$donnees['ville_pop']>=500? 'b34': 'b24' :'b14' : 'b04'))) : $donnees['map_image'];
|
|
if($donnees['ville_user']==3 && $donnees['ville_name']==PLANVILLAGE){
|
|
$image = "o99";
|
|
}
|
|
//Javascript map info
|
|
$regcount=0;
|
|
if($yrow!=7){
|
|
$map_js .= "[".$donnees['map_x'].",".$donnees['map_y'].",".$donnees['map_fieldtype'].",". ((!empty($donnees['map_oasis'])) ? $donnees['map_oasis'] : 0) .",\"d=".$donnees['map_id']."&c=".$generator->getMapCheck($donnees['map_id'])."\",\"".$image."\"";
|
|
if($donnees['map_occupied']){
|
|
if($donnees['map_fieldtype'] != 0){
|
|
$map_js.= ",\"".$donnees['ville_name']."\",\"".$donnees['user_username']."\",\"".$donnees['ville_pop']."\",\"".$donnees['aliance_name']."\",\"".$donnees['user_tribe']."\"]\n";
|
|
}
|
|
}
|
|
elseif($donnees['map_oasis'] != 0){
|
|
if ($donnees['oasis_conqured'] != 0){
|
|
$map_js.= ",\"\",\"".$donnees['oasis_user']."\",\"-\",\"".$donnees['oasis_alli_name']."\",\"".$donnees['oasis_tribe']."\"]";
|
|
}
|
|
else{
|
|
$map_js.="]";
|
|
}
|
|
}
|
|
else{$map_js .= "]";}
|
|
|
|
if($i == 6 && $yrow !=6){
|
|
$i = -1;
|
|
$yrow +=1;
|
|
$map_js .= "],[";
|
|
}
|
|
else {
|
|
if($yrow == 6 && $i == 6) {$map_js .= "]";}
|
|
else {$map_js .= ",";}
|
|
}
|
|
$regcount += 1;
|
|
}
|
|
else {$map_js .= "]";}
|
|
++$i;
|
|
}
|
|
echo '[['.$map_js.']';
|