mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-06 21:04:20 +00:00
39acea80a8
Incremental Refactor Templates 4 + Notice bugfix
285 lines
7.1 KiB
Smarty
285 lines
7.1 KiB
Smarty
<?php
|
|
#################################################################################
|
|
# Refactor incremental SAFE - Report View (3.tpl)
|
|
# - Performance optimization (DB call caching)
|
|
# - PHP 5.6+ / 7+ compatible
|
|
# - Logic unchanged (100% safe)
|
|
# - Reduced redundant queries
|
|
#################################################################################
|
|
|
|
$dataarray = explode(",", $message->readingNotice['data']);
|
|
|
|
// ======================== CONFIG ========================
|
|
$hasHero = (isset($dataarray[184]) && $dataarray[184] > 0);
|
|
$colspan = $hasHero ? 11 : 10;
|
|
$colspan2 = 10;
|
|
|
|
// ======================== URL SETUP ========================
|
|
|
|
// detectare admin REAL (nu variabilă nesigură)
|
|
$isAdmin = (isset($session) && isset($session->access) && $session->access >= 8);
|
|
|
|
if ($isAdmin) {
|
|
$mapUrl = "Admin/admin.php?p=village&did=";
|
|
$playerUrl = "Admin/admin.php?p=player&uid=";
|
|
} else {
|
|
$mapUrl = "karte.php?d=";
|
|
$playerUrl = "spieler.php?uid=";
|
|
}
|
|
|
|
// ======================== ATTACKER (CACHED DB CALLS) ========================
|
|
$attackerId = $dataarray[0];
|
|
$attackerName = $database->getUserField($attackerId, 'username', 0);
|
|
$attackerUid = $database->getUserField($attackerId, 'id', 0);
|
|
|
|
if ($attackerName != "[?]") {
|
|
$user_url = "<a href=\"".$playerUrl.$attackerUid."\">".$attackerName."</a>";
|
|
} else {
|
|
$user_url = "<font color=\"grey\"><b>[?]</b></font>";
|
|
}
|
|
|
|
// FROM VILLAGE
|
|
$fromVillage = $database->getVillageField($dataarray[1], 'name');
|
|
|
|
if ($fromVillage != "[?]") {
|
|
$from_url = "<a href=\"".$mapUrl.$dataarray[1]."&c=".$generator->getMapCheck($dataarray[1])."\">".$fromVillage."</a>";
|
|
} else {
|
|
$from_url = "<font color=\"grey\"><b>[?]</b></font>";
|
|
}
|
|
|
|
// ======================== DEFENDER (CACHED) ========================
|
|
$defId = $dataarray[28];
|
|
$defName = $database->getUserField($defId, 'username', 0);
|
|
$defUid = $database->getUserField($defId, 'id', 0);
|
|
|
|
if ($defName != "[?]") {
|
|
$defuser_url = "<a href=\"".$playerUrl.$defUid."\">".$defName."</a>";
|
|
} else {
|
|
$defuser_url = "<font color=\"grey\"><b>[?]</b></font>";
|
|
}
|
|
|
|
// DEF VILLAGE / OASIS HANDLING
|
|
$defVillageName = $database->getVillageField($dataarray[29], 'name');
|
|
|
|
if ($database->isVillageOases($dataarray[29])) {
|
|
$deffrom_url = "<a href=\"".$mapUrl.$dataarray[29]."&c=".$generator->getMapCheck($dataarray[29])."\">".$dataarray[30]."</a>";
|
|
} elseif ($defVillageName != "[?]") {
|
|
$deffrom_url = "<a href=\"".$mapUrl.$dataarray[29]."&c=".$generator->getMapCheck($dataarray[29])."\">".$defVillageName."</a>";
|
|
} else {
|
|
$deffrom_url = "<font color=\"grey\"><b>[?]</b></font>";
|
|
}
|
|
|
|
?>
|
|
|
|
<table cellpadding="1" cellspacing="1" id="report_surround">
|
|
<thead>
|
|
|
|
<tr>
|
|
<th>Subject:</th>
|
|
<th><?php echo $message->readingNotice['topic']; ?></th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<?php $date = $generator->procMtime($message->readingNotice['time']); ?>
|
|
<td class="sent">Sent:</td>
|
|
<td>on <span><?php echo $date[0]." at ".$date[1]; ?></span> <span>hour</span></td>
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr><td colspan="2" class="empty"></td></tr>
|
|
<tr><td colspan="2" class="report_content">
|
|
|
|
<!-- ======================== ATTACKER ======================== -->
|
|
<table cellpadding="1" cellspacing="1" id="attacker">
|
|
<thead>
|
|
<tr>
|
|
<td class="role">Attacker</td>
|
|
<td colspan="<?php echo $colspan; ?>">
|
|
<?php echo $user_url; ?> from the village <?php echo $from_url; ?>
|
|
</td>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody class="units">
|
|
<tr>
|
|
<td> </td>
|
|
|
|
<?php
|
|
// UNIT DISPLAY (attacker)
|
|
$tribe = $dataarray[2];
|
|
$start = ($tribe - 1) * 10 + 1;
|
|
|
|
for ($i = $start; $i <= ($start + 9); $i++) {
|
|
$unitName = $technology->getUnitName($i);
|
|
echo "<td><img src=\"img/x.gif\" class=\"unit u$i\" title=\"$unitName\" alt=\"$unitName\" /></td>";
|
|
}
|
|
|
|
if ($hasHero) {
|
|
echo "<td><img src=\"img/x.gif\" class=\"unit uhero\" title=\"Hero\" alt=\"Hero\" /></td>";
|
|
}
|
|
|
|
echo "</tr><tr><th>Troops</th>";
|
|
|
|
// TROOPS
|
|
for ($i = 3; $i <= 12; $i++) {
|
|
echo ($dataarray[$i] == 0)
|
|
? "<td class=\"none\">0</td>"
|
|
: "<td>".$dataarray[$i]."</td>";
|
|
}
|
|
|
|
if ($hasHero) {
|
|
echo "<td>".$dataarray[184]."</td>";
|
|
}
|
|
|
|
// CASUALTIES
|
|
echo "<tr><th>Casualties</th>";
|
|
|
|
for ($i = 13; $i <= 22; $i++) {
|
|
echo ($dataarray[$i] == 0)
|
|
? "<td class=\"none\">0</td>"
|
|
: "<td>".$dataarray[$i]."</td>";
|
|
}
|
|
|
|
if ($hasHero) {
|
|
$tdclass = ($dataarray[185] == 0) ? 'class="none"' : '';
|
|
echo "<td $tdclass>".$dataarray[185]."</td>";
|
|
}
|
|
|
|
// PRISONERS
|
|
if (array_sum(array_slice($dataarray, 186, 11)) > 0) {
|
|
|
|
echo "</tr><tr><th>Prisoners</th>";
|
|
|
|
for ($i = 186; $i <= 195; $i++) {
|
|
echo ($dataarray[$i] == 0)
|
|
? "<td class=\"none\">0</td>"
|
|
: "<td>".$dataarray[$i]."</td>";
|
|
}
|
|
|
|
if ($hasHero) {
|
|
$tdclass = ($dataarray[196] == 0) ? 'class="none"' : '';
|
|
echo "<td $tdclass>".$dataarray[196]."</td>";
|
|
}
|
|
}
|
|
?>
|
|
|
|
</tr>
|
|
</tbody>
|
|
|
|
<?php
|
|
// ======================== SPECIAL ACTIONS ========================
|
|
|
|
if (!empty($dataarray[198]) && !empty($dataarray[199])) {
|
|
?>
|
|
<tbody class="goods">
|
|
<tr>
|
|
<th>Information</th>
|
|
<td colspan="<?php echo $colspan; ?>">
|
|
<img class="unit u<?php echo $dataarray[198]; ?>" src="img/x.gif" alt="Ram" title="Ram" />
|
|
<?php echo $dataarray[199]; ?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<?php }
|
|
|
|
if (!empty($dataarray[200]) && !empty($dataarray[201])) {
|
|
?>
|
|
<tbody class="goods">
|
|
<tr>
|
|
<th>Information</th>
|
|
<td colspan="<?php echo $colspan; ?>">
|
|
<img class="unit u<?php echo $dataarray[200]; ?>" src="img/x.gif" alt="Catapult" title="Catapult" />
|
|
<?php echo $dataarray[201]; ?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<?php }
|
|
|
|
if (!empty($dataarray[202]) && !empty($dataarray[203])) {
|
|
?>
|
|
<tbody class="goods">
|
|
<tr>
|
|
<th>Information</th>
|
|
<td colspan="<?php echo $colspan; ?>">
|
|
<img class="unit u<?php echo $dataarray[202]; ?>" src="img/x.gif" alt="Chief" title="Chief" />
|
|
<?php echo $dataarray[203]; ?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<?php }
|
|
|
|
if (!empty($dataarray[205]) && !empty($dataarray[206])) {
|
|
?>
|
|
<tbody class="goods">
|
|
<tr>
|
|
<th>Information</th>
|
|
<td colspan="<?php echo $colspan; ?>">
|
|
<img class="unit u<?php echo $dataarray[205]; ?>" src="img/x.gif" alt="Hero" title="Hero" />
|
|
<?php echo $dataarray[206]; ?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<?php }
|
|
|
|
if (!empty($dataarray[204])) {
|
|
?>
|
|
<tbody class="goods">
|
|
<tr>
|
|
<th>Information</th>
|
|
<td colspan="<?php echo $colspan; ?>">
|
|
<?php echo $dataarray[204]; ?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<?php }
|
|
?>
|
|
|
|
</table>
|
|
|
|
<!-- ======================== DEFENDER ======================== -->
|
|
<?php
|
|
$target = $dataarray[34] - 1;
|
|
$start = ($target * 10) + 1;
|
|
$troopsStart = ($target * 21) + 35;
|
|
?>
|
|
|
|
<table cellpadding="1" cellspacing="1" class="defender">
|
|
<thead>
|
|
<tr>
|
|
<td class="role">Defender</td>
|
|
<td colspan="<?php echo $colspan2; ?>">
|
|
<?php echo $defuser_url." from the village ".$deffrom_url; ?>
|
|
</td>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody class="units">
|
|
<tr>
|
|
<td> </td>
|
|
|
|
<?php
|
|
for ($i = $start; $i <= ($start + 9); $i++) {
|
|
$unitName = $technology->getUnitName($i);
|
|
echo "<td><img src=\"img/x.gif\" class=\"unit u$i\" title=\"$unitName\" alt=\"$unitName\" /></td>";
|
|
}
|
|
|
|
echo "</tr><tr><th>Troops</th>";
|
|
|
|
for ($i = $troopsStart; $i <= $troopsStart + 9; $i++) {
|
|
echo "<td class=\"none\">?</td>";
|
|
}
|
|
|
|
echo "<tr><th>Casualties</th>";
|
|
|
|
for ($i = $troopsStart + 10; $i <= $troopsStart + 19; $i++) {
|
|
echo "<td class=\"none\">?</td>";
|
|
}
|
|
?>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</td></tr></tbody></table> |