mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 16:44:24 +00:00
01474fb31f
Update Readme
237 lines
10 KiB
PHP
237 lines
10 KiB
PHP
<?php
|
|
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Project: TravianZ ##
|
|
## Version: 01.09.2013 ##
|
|
## Filename process.php ##
|
|
## Developed by: Shadow ##
|
|
## Fixed by: Shadow cata7007@gmail.com ##
|
|
## License: TravianZ Project ##
|
|
## Copyright: TravianZ (c) 2010-2026. All rights reserved. ##
|
|
## URLs: https://travianz.org ##
|
|
## https://github.com/Shadowss/TravianZ ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
// don't let SQL time out when 30-500 seconds (depending on php.ini) is not enough
|
|
@set_time_limit(0);
|
|
|
|
if (file_exists("../var/installed")) {
|
|
die("<span class='f18 c5'>ERROR!</span><br />Installation appears to have been completed.<br />If this is an error remove /var/installed file in install directory.");
|
|
}
|
|
|
|
class Process {
|
|
|
|
function __construct() {
|
|
if(isset($_POST['subconst'])) {
|
|
$this->constForm();
|
|
} else
|
|
if(isset($_POST['substruc'])) {
|
|
$this->createStruc();
|
|
} else
|
|
if(isset($_POST['subwdata'])) {
|
|
$this->createWdata();
|
|
} else
|
|
if(isset($_POST['subacc'])) {
|
|
$this->createAcc();
|
|
} else {
|
|
header("Location: index.php");
|
|
}
|
|
}
|
|
|
|
private function constForm() {
|
|
$configFile = "../GameEngine/config.php";
|
|
$configTemplateFile = "../GameEngine/Admin/Mods/constant_format.tpl";
|
|
|
|
$gameConfig = @fopen($configFile, 'w') or die("<br/><br/><br/>Can't create or update file: GameEngine\config.php");
|
|
|
|
// copy the contents of the config template file into a new location, used when editing
|
|
// game configuration from the in-game Admin (since the install folder would be deleted at that point)
|
|
$templateFile = @fopen($configTemplateFile, 'w') or die("<br/><br/><br/>Can't create or update file: GameEngine\Admin\Mods\constant_format.tpl");
|
|
fclose($templateFile);
|
|
|
|
$text = file_get_contents("data/constant_format.tpl");
|
|
|
|
// make template copy
|
|
file_put_contents($configTemplateFile, $text);
|
|
|
|
// continue with text replacements
|
|
$findReplace = [];
|
|
|
|
$findReplace["%SERVERNAME%"] = $_POST['servername'];
|
|
$findReplace["%SSTARTDATE%"] = $_POST['start_date'];
|
|
$findReplace["%SSTARTTIME%"] = $_POST['start_time'];
|
|
|
|
$tz = explode(",",$_POST['tzone']);
|
|
$findReplace["%STIMEZONE%"] = $tz[1];
|
|
$findReplace["%LANG%"] = $_POST['lang'];
|
|
$findReplace["%SPEED%"] = $_POST['speed'];
|
|
$findReplace["%INCSPEED%"] = $_POST['incspeed'];
|
|
$findReplace["%EVASIONSPEED%"] = $_POST['evasionspeed'];
|
|
$findReplace["%TRADERCAP%"] = $_POST['tradercap'];
|
|
$findReplace["%CRANNYCAP%"] = $_POST['crannycap'];
|
|
$findReplace["%TRAPPERCAP%"] = $_POST['trappercap'];
|
|
$findReplace["%STORAGE_MULTIPLIER%"] = $_POST['storage_multiplier'];
|
|
//$findReplace["%UTRACK%"] = $_POST['trackusers'];
|
|
//$findReplace["%UTOUT%"] = $_POST['timeout'];
|
|
//$findReplace["%AUTOD%"] = $_POST['autodel'];
|
|
//$findReplace["%AUTODT%"] = $_POST['autodeltime'];
|
|
$findReplace["%MAX%"] = $_POST['wmax'];
|
|
//$findReplace["%GP%"] = $_POST['gpack'];
|
|
$findReplace["%SSERVER%"] = $_POST['sserver'];
|
|
$findReplace["%SPORT%"] = $_POST['sport'];
|
|
$findReplace["%SUSER%"] = $_POST['suser'];
|
|
$findReplace["%SPASS%"] = $_POST['spass'];
|
|
$findReplace["%SDB%"] = $_POST['sdb'];
|
|
$findReplace["%PREFIX%"] = $_POST['prefix'];
|
|
$findReplace["%CONNECTT%"] = $_POST['connectt'];
|
|
$findReplace["%ASUPPMSGS%"] = 'true';
|
|
$findReplace["%ARAIDS%"] = 'false';
|
|
//$findReplace["%SUBDOM%"] = $_POST['subdom'];
|
|
$findReplace["%LOGBUILD%"] = $_POST['log_build'];
|
|
$findReplace["%LOGTECH%"] = $_POST['log_tech'];
|
|
$findReplace["%LOGLOGIN%"] = $_POST['log_login'];
|
|
$findReplace["%LOGGOLDFIN%"] = $_POST['log_gold_fin'];
|
|
$findReplace["%LOGADMIN%"] = $_POST['log_admin'];
|
|
$findReplace["%LOGWAR%"] = $_POST['log_war'];
|
|
$findReplace["%LOGMARKET%"] = $_POST['log_market'];
|
|
$findReplace["%LOGILLEGAL%"] = $_POST['log_illegal'];
|
|
//$findReplace["%MINUSERLENGTH%"] = $_POST['userlength'];
|
|
//$findReplace["%MINPASSLENGTH%"] = $_POST['passlength'];
|
|
//$findReplace["%SPECIALCHARS%"] = $_POST['specialchars'];
|
|
$findReplace["%ACTIVATE%"] = $_POST['activate'];
|
|
$findReplace["%ARANK%"] = 'false';
|
|
$findReplace["%QUEST%"] = $_POST['quest'];
|
|
$findReplace["%QTYPE%"] = $_POST['qtype'];
|
|
$findReplace["%BEGINNER%"] = $_POST['beginner'];
|
|
$findReplace["%STARTTIME%"] = time();
|
|
$findReplace["%DOMAIN%"] = $_POST['domain'];
|
|
$findReplace["%HOMEPAGE%"] = $_POST['homepage'];
|
|
$findReplace["%SERVER%"] = $_POST['server'];
|
|
$findReplace["%LIMIT_MAILBOX%"] = $_POST['limit_mailbox'];
|
|
$findReplace["%MAX_MAILS%"] = $_POST['max_mails'];
|
|
$findReplace["%DEMOLISH%"] = $_POST['demolish'];
|
|
$findReplace["%BOX1%"] = $_POST['box1'];
|
|
$findReplace["%BOX2%"] = $_POST['box2'];
|
|
$findReplace["%BOX3%"] = $_POST['box3'];
|
|
$findReplace["%VILLAGE_EXPAND%"] = $_POST['village_expand'];
|
|
$findReplace["%ERRORREPORT%"] = $_POST['error'];
|
|
$findReplace["%ERROR%"] = $_POST['error'];
|
|
//$findReplace["%GP_LOCATE%"] = $_POST['gp_locate'];
|
|
$findReplace["%PLUS_TIME%"] = $_POST['plus_time'];
|
|
$findReplace["%PLUS_PRODUCTION%"] = $_POST['plus_production'];
|
|
$findReplace["%PAYPAL_EMAIL%"] = $_POST['paypal-email'];
|
|
$findReplace["%PAYPAL_CURRENCY%"] = $_POST['paypal-currency'];
|
|
$findReplace["%PLUS_PACKAGE_A_GOLD%"] = $_POST['plus-a-gold'];
|
|
$findReplace["%PLUS_PACKAGE_A_PRICE%"] = $_POST['plus-a-price'];
|
|
$findReplace["%PLUS_PACKAGE_B_GOLD%"] = $_POST['plus-b-gold'];
|
|
$findReplace["%PLUS_PACKAGE_B_PRICE%"] = $_POST['plus-b-price'];
|
|
$findReplace["%PLUS_PACKAGE_C_GOLD%"] = $_POST['plus-c-gold'];
|
|
$findReplace["%PLUS_PACKAGE_C_PRICE%"] = $_POST['plus-c-price'];
|
|
$findReplace["%PLUS_PACKAGE_D_GOLD%"] = $_POST['plus-d-gold'];
|
|
$findReplace["%PLUS_PACKAGE_D_PRICE%"] = $_POST['plus-d-price'];
|
|
$findReplace["%PLUS_PACKAGE_E_GOLD%"] = $_POST['plus-e-gold'];
|
|
$findReplace["%PLUS_PACKAGE_E_PRICE%"] = $_POST['plus-e-price'];
|
|
$findReplace["%MEDALINTERVAL%"] = $_POST['medalinterval'];
|
|
$findReplace["%GREAT_WKS%"] = $_POST['great_wks'];
|
|
$findReplace["%TS_THRESHOLD%"] = $_POST['ts_threshold'];
|
|
$findReplace["%WW%"] = $_POST['ww'];
|
|
$findReplace["%SHOW_NATARS%"] = $_POST['show_natars'];
|
|
$findReplace["%NATARS_UNITS%"] = $_POST['natars_units'];
|
|
$findReplace["%NATARS_SPAWN_TIME%"] = $_POST['natars_spawn_time'];
|
|
$findReplace["%NATARS_WW_SPAWN_TIME%"] = $_POST['natars_ww_spawn_time'];
|
|
$findReplace["%NATARS_WW_BUILDING_PLAN_SPAWN_TIME%"] = $_POST['natars_ww_building_plan_spawn_time'];
|
|
$findReplace["%NATURE_REGTIME%"] = $_POST['nature_regtime'];
|
|
$findReplace["%OASIS_WOOD_MULTIPLIER%"] = $_POST['oasis_wood_multiplier'];
|
|
$findReplace["%OASIS_CLAY_MULTIPLIER%"] = $_POST['oasis_clay_multiplier'];
|
|
$findReplace["%OASIS_IRON_MULTIPLIER%"] = $_POST['oasis_iron_multiplier'];
|
|
$findReplace["%OASIS_CROP_MULTIPLIER%"] = $_POST['oasis_crop_multiplier'];
|
|
$findReplace["%T4_COMING%"] = $_POST['t4_coming'];
|
|
$findReplace["%REG_OPEN%"] = $_POST['reg_open'];
|
|
$findReplace["%PEACE%"] = $_POST['peace'];
|
|
|
|
//New Mechanics and Functions
|
|
$findReplace["%NEW_FUNCTIONS_OASIS%"] = $_POST['new_functions_oasis'];
|
|
$findReplace["%NEW_FUNCTIONS_ALLIANCE_INVITATION%"] = $_POST['new_functions_alliance_invitation'];
|
|
$findReplace["%NEW_FUNCTIONS_EMBASSY_MECHANICS%"] = $_POST['new_functions_embassy_mechanics'];
|
|
$findReplace["%NEW_FUNCTIONS_FORUM_POST_MESSAGE%"] = $_POST['new_functions_forum_post_message'];
|
|
$findReplace["%NEW_FUNCTIONS_TRIBE_IMAGES%"] = $_POST['new_functions_tribe_images'];
|
|
$findReplace["%NEW_FUNCTIONS_MHS_IMAGES%"] = $_POST['new_functions_mhs_images'];
|
|
$findReplace["%NEW_FUNCTIONS_DISPLAY_ARTIFACT%"] = $_POST['new_functions_display_artifact'];
|
|
$findReplace["%NEW_FUNCTIONS_DISPLAY_WONDER%"] = $_POST['new_functions_display_wonder'];
|
|
$findReplace["%NEW_FUNCTIONS_VACATION%"] = $_POST['new_functions_vacation'];
|
|
$findReplace["%NEW_FUNCTIONS_DISPLAY_CATAPULT_TARGET%"] = $_POST['new_functions_display_catapult_target'];
|
|
$findReplace["%NEW_FUNCTIONS_MANUAL_NATURENATARS%"] = $_POST['new_functions_manual_naturenatars'];
|
|
$findReplace["%NEW_FUNCTIONS_DISPLAY_LINKS%"] = $_POST['new_functions_display_links'];
|
|
$findReplace["%NEW_FUNCTIONS_MEDAL_3YEAR%"] = $_POST['new_functions_medal_3year'];
|
|
$findReplace["%NEW_FUNCTIONS_MEDAL_5YEAR%"] = $_POST['new_functions_medal_5year'];
|
|
$findReplace["%NEW_FUNCTIONS_MEDAL_10YEAR%"] = $_POST['new_functions_medal_10year'];
|
|
|
|
fwrite($gameConfig, str_replace(array_keys($findReplace), array_values($findReplace), $text));
|
|
|
|
if (file_exists($configFile) && file_exists($configTemplateFile)) {
|
|
header("Location: index.php?s=2");
|
|
} else {
|
|
header("Location: index.php?s=1&c=1");
|
|
}
|
|
|
|
fclose($gameConfig);
|
|
}
|
|
|
|
/**
|
|
* Creates database structure for the game.
|
|
*/
|
|
function createStruc() {
|
|
global $database;
|
|
|
|
include ("../GameEngine/config.php");
|
|
include ("../GameEngine/Database.php");
|
|
include ("../GameEngine/Admin/database.php");
|
|
|
|
// create table structure
|
|
$result = $database->createDbStructure();
|
|
if ($result === false) {
|
|
header("Location: index.php?s=2&err=1");
|
|
exit;
|
|
} else if ($result === -1) {
|
|
header("Location: index.php?s=2&c=1");
|
|
exit;
|
|
}
|
|
|
|
header("Location: index.php?s=3");
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Generates map data and populates it with oasis.
|
|
*/
|
|
function createWdata() {
|
|
global $database;
|
|
|
|
include ("../GameEngine/config.php");
|
|
include ("../GameEngine/Database.php");
|
|
include ("../GameEngine/Admin/database.php");
|
|
|
|
// 1) Populate world data
|
|
$result = $database->populateWorldData();
|
|
if ($result === false) {
|
|
header("Location: index.php?s=3&err=1");
|
|
exit;
|
|
} else if ($result === -1) {
|
|
header("Location: index.php?s=3&c=1");
|
|
exit;
|
|
}
|
|
|
|
header("Location: index.php?s=3&startCroppers=1");
|
|
exit;
|
|
}
|
|
|
|
}
|
|
;
|
|
|
|
$process = new Process;
|
|
|
|
?>
|