180 lines
7.8 KiB
PHP
180 lines
7.8 KiB
PHP
<?
|
|
include "lib.php";
|
|
include "func.php";
|
|
|
|
$type = Util::getReq('type', 'int', 10);
|
|
if ($type <= 0 || $type > 12) {
|
|
$type = 10;
|
|
}
|
|
|
|
//로그인 검사
|
|
CheckLogin();
|
|
$connect = dbConn();
|
|
increaseRefresh($connect, "세력도시", 1);
|
|
|
|
$query = "select no,nation,level,skin from general where user_id='$_SESSION[p_id]'";
|
|
$result = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
|
|
$me = MYDB_fetch_array($result);
|
|
|
|
if($me[level] == 0) {
|
|
echo "재야입니다.";
|
|
exit();
|
|
}
|
|
|
|
if($type == 0) {
|
|
$type = 10;
|
|
}
|
|
$sel[$type] = "selected";
|
|
|
|
if($me[skin] < 1) {
|
|
$tempColor = $_basecolor; $tempColor2 = $_basecolor2; $tempColor3 = $_basecolor3; $tempColor4 = $_basecolor4;
|
|
$_basecolor = "000000"; $_basecolor2 = "000000"; $_basecolor3 = "000000"; $_basecolor4 = "000000";
|
|
}
|
|
?>
|
|
<html>
|
|
|
|
<head>
|
|
<meta HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=utf-8'>
|
|
<title>세력도시</title>
|
|
<link rel=stylesheet href=stylesheet.php type=text/css>
|
|
<? require('analytics.php'); ?>
|
|
</head>
|
|
|
|
<body>
|
|
<table align=center width=1000 border=1 cellspacing=0 cellpadding=0 bordercolordark=gray bordercolorlight=black style=font-size:13;word-break:break-all; id=bg0>
|
|
<tr><td>세 력 도 시<br><? backButton(); ?></td></tr>
|
|
<tr><td><form name=form1 method=post>정렬순서 :
|
|
<select name=type size=1>
|
|
<option <?=$sel[1];?> value=1>기본</option>
|
|
<option <?=$sel[2];?> value=2>인구</option>
|
|
<option <?=$sel[3];?> value=3>인구율</option>
|
|
<option <?=$sel[4];?> value=4>민심</option>
|
|
<option <?=$sel[5];?> value=5>농업</option>
|
|
<option <?=$sel[6];?> value=6>상업</option>
|
|
<option <?=$sel[7];?> value=7>치안</option>
|
|
<option <?=$sel[8];?> value=8>수비</option>
|
|
<option <?=$sel[9];?> value=9>성벽</option>
|
|
<option <?=$sel[10];?> value=10>시세</option>
|
|
<option <?=$sel[11];?> value=11>지역</option>
|
|
<option <?=$sel[12];?> value=12>규모</option>
|
|
</select>
|
|
<input type=submit value='정렬하기'></form>
|
|
</td></tr>
|
|
</table>
|
|
<?
|
|
$query = "select nation from general where user_id='$_SESSION[p_id]'";
|
|
$result = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
|
|
$me = MYDB_fetch_array($result);
|
|
|
|
$query = "select color,capital from nation where nation='$me[nation]'";
|
|
$result = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
|
|
$nation = MYDB_fetch_array($result); //국가정보
|
|
|
|
switch($type) {
|
|
case 1: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]'"; break;
|
|
case 2: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by pop desc"; break;
|
|
case 3: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by poprate desc"; break;
|
|
case 4: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by rate desc"; break;
|
|
case 5: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by agri desc"; break;
|
|
case 6: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by comm desc"; break;
|
|
case 7: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by secu desc"; break;
|
|
case 8: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by def desc"; break;
|
|
case 9: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by wall desc"; break;
|
|
case 10: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by trade desc"; break;
|
|
case 11: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by region,level desc"; break;
|
|
case 12: $query = "select *,pop/pop2 as poprate from city where nation='$me[nation]' order by level desc, region"; break;
|
|
}
|
|
$cityresult = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
|
|
$citycount = MYDB_num_rows($cityresult);
|
|
|
|
for($j=0; $j < $citycount; $j++) {
|
|
$city = MYDB_fetch_array($cityresult);
|
|
if($city[city] == $nation[capital]) { $city[name] = "<font color=cyan>[{$city[name]}]</font>"; }
|
|
$query = "select name from general where no='$city[gen1]'"; // 태수
|
|
$genresult = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
|
|
$gen1 = MYDB_fetch_array($genresult);
|
|
|
|
$query = "select name from general where no='$city[gen2]'"; // 군사
|
|
$genresult = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
|
|
$gen2 = MYDB_fetch_array($genresult);
|
|
|
|
$query = "select name from general where no='$city[gen3]'"; // 시중
|
|
$genresult = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
|
|
$gen3 = MYDB_fetch_array($genresult);
|
|
|
|
if($type == 10 && $city[region] != $region) {
|
|
echo "<br>";
|
|
$region = $city[region];
|
|
} elseif($type == 11 && $city[level] != $level) {
|
|
echo "<br>";
|
|
$level = $city[level];
|
|
}
|
|
|
|
if($city[trade] == 0) {
|
|
$city[trade] = "- ";
|
|
}
|
|
|
|
echo "
|
|
<table align=center width=1000 border=1 cellspacing=0 cellpadding=0 bordercolordark=gray bordercolorlight=black style=font-size:13;word-break:break-all; id=bg2>
|
|
<tr>
|
|
<td colspan=12 style=color:".newColor($nation[color])."; bgcolor={$nation[color]}><font size=2>【 ".getRegion($city[region])." | ".getCityLevel($city[level])." 】 {$city[name]}</font></td>
|
|
</tr>
|
|
<tr>
|
|
<td align=center width=48 id=bg1>주민</td>
|
|
<td align=center width=112>$city[pop]/$city[pop2]</td>
|
|
<td align=center width=48 id=bg1>농업</td>
|
|
<td align=center width=108>$city[agri]/$city[agri2]</td>
|
|
<td align=center width=48 id=bg1>상업</td>
|
|
<td align=center width=108>$city[comm]/$city[comm2]</td>
|
|
<td align=center width=48 id=bg1>치안</td>
|
|
<td align=center width=108>$city[secu]/$city[secu2]</td>
|
|
<td align=center width=48 id=bg1>수비</td>
|
|
<td align=center width=108>$city[def]/$city[def2]</td>
|
|
<td align=center width=48 id=bg1>성벽</td>
|
|
<td align=center width=108>$city[wall]/$city[wall2]</td>
|
|
</tr>
|
|
<tr>
|
|
<td align=center id=bg1>민심</td>
|
|
<td align=center>$city[rate]</td>
|
|
<td align=center id=bg1>시세</td>
|
|
<td align=center>{$city[trade]}%</td>
|
|
<td align=center id=bg1>인구</td>
|
|
<td align=center>".round($city[pop]/$city[pop2]*100, 2)." %</td>
|
|
<td align=center id=bg1>태수</td>
|
|
<td align=center>";echo $gen1[name]==''?"-":"$gen1[name]";echo "</td>
|
|
<td align=center id=bg1>군사</td>
|
|
<td align=center>";echo $gen2[name]==''?"-":"$gen2[name]";echo "</td>
|
|
<td align=center id=bg1>시중</td>
|
|
<td align=center>";echo $gen3[name]==''?"-":"$gen3[name]";echo "</td>
|
|
</tr>
|
|
<tr>
|
|
<td align=center id=bg1>장수</td>
|
|
<td colspan=11>";
|
|
$query = "select npc,name from general where city='$city[city]' and nation='$me[nation]'"; // 장수 목록
|
|
$genresult = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
|
|
$gencount = MYDB_num_rows($genresult);
|
|
if($gencount == 0) echo "-";
|
|
for($i=0; $i < $gencount; $i++) {
|
|
$general = MYDB_fetch_array($genresult);
|
|
if($general[npc] >= 2) { echo "<font color=cyan>{$general[name]}, </font>"; }
|
|
elseif($general[npc] == 1) { echo "<font color=skyblue>{$general[name]}, </font>"; }
|
|
else { echo "$general[name], "; }
|
|
}
|
|
echo "
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
";
|
|
}
|
|
?>
|
|
|
|
<table align=center width=1000 border=1 cellspacing=0 cellpadding=0 bordercolordark=gray bordercolorlight=black style=font-size:13;word-break:break-all; id=bg0>
|
|
<tr><td><? backButton(); ?></td></tr>
|
|
<tr><td><? banner(); ?></td></tr>
|
|
</table>
|
|
<? PrintElapsedTime(); ?>
|
|
</body>
|
|
|
|
</html>
|
|
|