mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 08:34:33 +00:00
199 lines
5.9 KiB
PHP
199 lines
5.9 KiB
PHP
<?php
|
|
include_once("GameEngine/Generator.php");
|
|
$start_timer = $generator->pageLoadTimeStart();
|
|
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename spieler.php ##
|
|
## Developed by: Dzoki ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
use App\Utils\AccessLogger;
|
|
|
|
ob_start();
|
|
include_once("GameEngine/Village.php");
|
|
AccessLogger::logRequest();
|
|
|
|
$profile->procProfile($_POST);
|
|
$profile->procSpecial($_GET);
|
|
if(isset($_GET['newdid'])){
|
|
$_SESSION['wid'] = $_GET['newdid'];
|
|
if(isset($_GET['s'])){
|
|
header("Location: ".$_SERVER['PHP_SELF']."?s=".preg_replace("/[^a-zA-Z0-9_-]/", "", $_GET['s']));
|
|
exit();
|
|
}else if(isset($_GET['uid'])){
|
|
header("Location: ".$_SERVER['PHP_SELF']."?uid=".preg_replace("/[^a-zA-Z0-9_-]/", "", $_GET['uid']));
|
|
exit();
|
|
}else{
|
|
header("Location: ".$_SERVER['PHP_SELF']);
|
|
exit();
|
|
}
|
|
}
|
|
else $building->procBuild($_GET);
|
|
|
|
?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html>
|
|
<head>
|
|
<title><?php echo SERVER_NAME ?></title>
|
|
<link rel="shortcut icon" href="favicon.ico"/>
|
|
<meta http-equiv="cache-control" content="max-age=0" />
|
|
<meta http-equiv="pragma" content="no-cache" />
|
|
<meta http-equiv="expires" content="0" />
|
|
<meta http-equiv="imagetoolbar" content="no" />
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
|
<script src="mt-full.js?0faab" type="text/javascript"></script>
|
|
<script src="unx.js?f4b7h" type="text/javascript"></script>
|
|
<script src="new.js?0faab" type="text/javascript"></script>
|
|
<link href="<?php echo GP_LOCATE; ?>lang/en/lang.css?f4b7d" rel="stylesheet" type="text/css" />
|
|
<link href="<?php echo GP_LOCATE; ?>lang/en/compact.css?f4b7i" rel="stylesheet" type="text/css" />
|
|
<?php
|
|
if($session->gpack == null || GP_ENABLE == false) {
|
|
echo "
|
|
<link href='".GP_LOCATE."travian.css?e21d2' rel='stylesheet' type='text/css' />
|
|
<link href='".GP_LOCATE."lang/en/lang.css?e21d2' rel='stylesheet' type='text/css' />";
|
|
} else {
|
|
echo "
|
|
<link href='".$session->gpack."travian.css?e21d2' rel='stylesheet' type='text/css' />
|
|
<link href='".$session->gpack."lang/en/lang.css?e21d2' rel='stylesheet' type='text/css' />";
|
|
}
|
|
?>
|
|
<script type="text/javascript">
|
|
|
|
window.addEvent('domready', start);
|
|
</script>
|
|
</head>
|
|
|
|
|
|
<body class="v35 ie ie8">
|
|
<div class="wrapper">
|
|
<img style="filter:chroma();" src="img/x.gif" id="msfilter" alt="" />
|
|
<div id="dynamic_header">
|
|
</div>
|
|
<?php include("Templates/header.tpl"); ?>
|
|
<div id="mid">
|
|
<?php include("Templates/menu.tpl"); ?>
|
|
<script type="text/javascript">
|
|
function getMouseCoords(e) {
|
|
var coords = {};
|
|
if (!e) var e = window.event;
|
|
if (e.pageX || e.pageY) {
|
|
coords.x = e.pageX;
|
|
coords.y = e.pageY;
|
|
}
|
|
else if (e.clientX || e.clientY) {
|
|
coords.x = e.clientX + document.body.scrollLeft
|
|
+ document.documentElement.scrollLeft;
|
|
coords.y = e.clientY + document.body.scrollTop
|
|
+ document.documentElement.scrollTop;
|
|
}
|
|
return coords;
|
|
}
|
|
|
|
function med_mouseMoveHandler(e, desc_string){
|
|
var coords = getMouseCoords(e);
|
|
med_showDescription(coords, desc_string);
|
|
}
|
|
|
|
function med_closeDescription(){
|
|
var layer = document.getElementById("medal_mouseover");
|
|
layer.className = "hide";
|
|
}
|
|
|
|
function init_local(){
|
|
med_init();
|
|
}
|
|
|
|
function med_init(){
|
|
layer = document.createElement("div");
|
|
layer.id = "medal_mouseover";
|
|
layer.className = "hide";
|
|
document.body.appendChild(layer);
|
|
}
|
|
|
|
function med_showDescription(coords, desc_string){
|
|
var layer = document.getElementById("medal_mouseover");
|
|
layer.style.top = (coords.y + 25)+ "px";
|
|
layer.style.left = (coords.x - 20) + "px";
|
|
layer.className = "";
|
|
layer.innerHTML = desc_string;
|
|
}
|
|
</script>
|
|
<div id="content" class="player">
|
|
<?php
|
|
if(isset($_GET['uid'])) {
|
|
if($_GET['uid'] >= 2) {
|
|
$user = $database->getUserArray(preg_replace("/[^a-zA-Z0-9_-]/","",$_GET['uid']),1);
|
|
if(isset($user['id'])){
|
|
include("Templates/Profile/overview.tpl");
|
|
} else {
|
|
include("Templates/Profile/notfound.tpl");
|
|
}
|
|
}
|
|
else {
|
|
include("Templates/Profile/special.tpl");
|
|
}
|
|
}
|
|
else if (isset($_GET['s'])) {
|
|
if($_GET['s'] == 1) {
|
|
include("Templates/Profile/profile.tpl");
|
|
}
|
|
if($_GET['s'] == 2) {
|
|
include("Templates/Profile/preference.tpl");
|
|
}
|
|
if($_GET['s'] == 3) {
|
|
include("Templates/Profile/account.tpl");
|
|
}
|
|
if($_GET['s'] == 4) {
|
|
include("Templates/Profile/graphic.tpl");
|
|
}
|
|
if($_GET['s'] == 5) {
|
|
include("Templates/Profile/vacation.tpl");
|
|
}
|
|
if($_GET['s'] > 5 or $session->sit == 1) {
|
|
header("Location: ".$_SERVER['PHP_SELF']."?uid=".preg_replace("/[^a-zA-Z0-9_-]/","",$session->uid));
|
|
exit;
|
|
}
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<br /><br /><br /><br /><div id="side_info">
|
|
<?php
|
|
include("Templates/multivillage.tpl");
|
|
include("Templates/quest.tpl");
|
|
include("Templates/news.tpl");
|
|
if(!NEW_FUNCTIONS_DISPLAY_LINKS) {
|
|
echo "<br><br><br><br>";
|
|
include("Templates/links.tpl");
|
|
}
|
|
?>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<div class="footer-stopper"></div>
|
|
<div class="clear"></div>
|
|
|
|
<?php
|
|
include("Templates/footer.tpl");
|
|
include("Templates/res.tpl");
|
|
?>
|
|
<div id="stime">
|
|
<div id="ltime">
|
|
<div id="ltimeWrap">
|
|
<?php echo CALCULATED_IN;?> <b><?php
|
|
echo round(($generator->pageLoadTimeEnd()-$start_timer)*1000);
|
|
?></b> ms
|
|
|
|
<br /><?php echo SERVER_TIME;?> <span id="tp1" class="b"><?php echo date('H:i:s'); ?></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="ce"></div>
|
|
</body>
|
|
</html>
|