@@ -11,7 +11,7 @@ |
||
| 11 | 11 | class SnBootstrap { |
| 12 | 12 | |
| 13 | 13 | public static function install_benchmark() { |
| 14 | - register_shutdown_function(function () { |
|
| 14 | + register_shutdown_function(function() { |
|
| 15 | 15 | if (defined('IN_AJAX')) { |
| 16 | 16 | return; |
| 17 | 17 | } |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | $config->pass()->game_disable = GAME_DISABLE_STAT; |
| 59 | 59 | |
| 60 | 60 | $statMinimalInterval = intval($config->pass()->stats_minimal_interval); |
| 61 | - $config->pass()->var_stat_update_end= date(FMT_DATE_TIME_SQL, SN_TIME_NOW + ($statMinimalInterval ? $statMinimalInterval : STATS_RUN_INTERVAL_MINIMUM)); |
|
| 61 | + $config->pass()->var_stat_update_end = date(FMT_DATE_TIME_SQL, SN_TIME_NOW + ($statMinimalInterval ? $statMinimalInterval : STATS_RUN_INTERVAL_MINIMUM)); |
|
| 62 | 62 | $config->pass()->var_stat_update_msg = 'Update started'; |
| 63 | 63 | sn_db_transaction_commit(); |
| 64 | 64 | |
@@ -22,11 +22,11 @@ |
||
| 22 | 22 | |
| 23 | 23 | define('IN_AJAX', true); |
| 24 | 24 | |
| 25 | -if(($result = StatUpdateLauncher::scheduler_process()) && !defined('IN_ADMIN')) { |
|
| 25 | +if (($result = StatUpdateLauncher::scheduler_process()) && !defined('IN_ADMIN')) { |
|
| 26 | 26 | $result = htmlspecialchars($result, ENT_QUOTES, 'UTF-8'); |
| 27 | 27 | print(json_encode($result)); |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | -if(!defined('IN_ADMIN')) { |
|
| 30 | +if (!defined('IN_ADMIN')) { |
|
| 31 | 31 | die(); |
| 32 | 32 | } |
@@ -7,9 +7,9 @@ discard block |
||
| 7 | 7 | * |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -define('INSIDE' , true); |
|
| 11 | -define('INSTALL' , false); |
|
| 12 | -define('IN_ADMIN' , true); |
|
| 10 | +define('INSIDE', true); |
|
| 11 | +define('INSTALL', false); |
|
| 12 | +define('IN_ADMIN', true); |
|
| 13 | 13 | |
| 14 | 14 | require('../common.' . substr(strrchr(__FILE__, '.'), 1)); |
| 15 | 15 | |
@@ -20,12 +20,12 @@ discard block |
||
| 20 | 20 | function adm_lng_assign_string($lang_id, $locale_string_name, $value) { |
| 21 | 21 | global $locale_string_template, $languages_info, $languages, $domain; |
| 22 | 22 | |
| 23 | - if(is_array($value)) { |
|
| 24 | - foreach($value as $sub_key => $sub_value) { |
|
| 23 | + if (is_array($value)) { |
|
| 24 | + foreach ($value as $sub_key => $sub_value) { |
|
| 25 | 25 | adm_lng_assign_string($lang_id, "{$locale_string_name}[{$sub_key}]", $sub_value); |
| 26 | 26 | } |
| 27 | - } elseif($value) { |
|
| 28 | - if(!isset($locale_string_template[$locale_string_name])) { |
|
| 27 | + } elseif ($value) { |
|
| 28 | + if (!isset($locale_string_template[$locale_string_name])) { |
|
| 29 | 29 | $locale_string_template[$locale_string_name] = array(); |
| 30 | 30 | } |
| 31 | 31 | $locale_string_template[$locale_string_name] = array_merge($locale_string_template[$locale_string_name], array("[{$lang_id}]" => htmlentities($value, ENT_COMPAT, 'utf-8'))); |
@@ -46,11 +46,11 @@ discard block |
||
| 46 | 46 | global $domain, $lang_id; |
| 47 | 47 | |
| 48 | 48 | $return = "{$ident}'{$string_name}' => "; |
| 49 | - if(isset($string_value[$lang_id]) && !is_array($string_value[$lang_id])) { |
|
| 49 | + if (isset($string_value[$lang_id]) && !is_array($string_value[$lang_id])) { |
|
| 50 | 50 | $return .= "'" . str_replace(array("\\", "'"), array('\\\\', "\\'"), $string_value[$lang_id]) . "',"; |
| 51 | 51 | } else { |
| 52 | 52 | $return .= "array(\r\n"; |
| 53 | - foreach($string_value as $arr_name => $arr_data) { |
|
| 53 | + foreach ($string_value as $arr_name => $arr_data) { |
|
| 54 | 54 | $return .= adm_lng_parse_string($arr_name, $arr_data, $ident . ' '); |
| 55 | 55 | } |
| 56 | 56 | $return .= "{$ident}),\r\n"; |
@@ -103,12 +103,12 @@ discard block |
||
| 103 | 103 | |
| 104 | 104 | $string_name_new = false; |
| 105 | 105 | |
| 106 | - if(isset($honor_constants[$domain][$string_name_prefix])) { |
|
| 106 | + if (isset($honor_constants[$domain][$string_name_prefix])) { |
|
| 107 | 107 | $found_constants = array_keys($constants, $string_name); |
| 108 | - foreach($found_constants as $constant_name) { |
|
| 108 | + foreach ($found_constants as $constant_name) { |
|
| 109 | 109 | $honor_prefix_list = is_array($honor_constants[$domain][$string_name_prefix]) ? $honor_constants[$domain][$string_name_prefix] : array($honor_constants[$domain][$string_name_prefix]); |
| 110 | - foreach($honor_prefix_list as $honor_prefix) { |
|
| 111 | - if(strpos($constant_name, $honor_prefix) === 0) { |
|
| 110 | + foreach ($honor_prefix_list as $honor_prefix) { |
|
| 111 | + if (strpos($constant_name, $honor_prefix) === 0) { |
|
| 112 | 112 | $string_name_new = $constant_name; |
| 113 | 113 | break; |
| 114 | 114 | } |
@@ -118,13 +118,13 @@ discard block |
||
| 118 | 118 | |
| 119 | 119 | $string_name_new = $string_name_new ? $string_name_new : "'{$string_name}'"; |
| 120 | 120 | fwrite($file_handler, "{$ident}{$string_name_new} => "); |
| 121 | - if(isset($string_value[$lang_id]) && !is_array($string_value[$lang_id])) { |
|
| 121 | + if (isset($string_value[$lang_id]) && !is_array($string_value[$lang_id])) { |
|
| 122 | 122 | fwrite($file_handler, "'" . str_replace(array("\\", "'"), array('\\\\', "\\'"), $string_value[$lang_id]) . "',"); |
| 123 | 123 | // fwrite($file_handler, "'" . addslashes($string_value[$lang_id]) . "',"); |
| 124 | 124 | } else { |
| 125 | 125 | $string_name_prefix = $string_name_prefix . "[{$string_name}]"; |
| 126 | 126 | fwrite($file_handler, "array(\r\n"); |
| 127 | - foreach($string_value as $arr_name => $arr_data) { |
|
| 127 | + foreach ($string_value as $arr_name => $arr_data) { |
|
| 128 | 128 | adm_lng_write_string($arr_name, $arr_data, $ident . ' ', $string_name_prefix); |
| 129 | 129 | } |
| 130 | 130 | fwrite($file_handler, "{$ident}),\r\n"); |
@@ -144,13 +144,13 @@ discard block |
||
| 144 | 144 | $languages_info = lng_get_list(); |
| 145 | 145 | $domain = sys_get_param_str('domain'); |
| 146 | 146 | |
| 147 | -if($domain) { |
|
| 147 | +if ($domain) { |
|
| 148 | 148 | $lang_new = sys_get_param('lang_new'); |
| 149 | - if(!empty($lang_new) && is_array($lang_new)) { |
|
| 149 | + if (!empty($lang_new) && is_array($lang_new)) { |
|
| 150 | 150 | $constants = get_defined_constants(true); |
| 151 | 151 | $constants = $constants['user']; |
| 152 | 152 | ksort($constants); |
| 153 | - foreach($languages_info as $lang_id => $land_data) { |
|
| 153 | + foreach ($languages_info as $lang_id => $land_data) { |
|
| 154 | 154 | $file_handler = fopen(SN_ROOT_PHYSICAL . "language/{$lang_id}/{$domain}.mo.php.new", 'w'); |
| 155 | 155 | fwrite($file_handler, "<?php\r\n\r\n/*\r\n############################################################################# |
| 156 | 156 | # Filename: {$domain}.mo.php |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | # Website: http://www.supernova.ws |
| 159 | 159 | # Description: Massive Multiplayer Online Browser Space Startegy Game\r\n#\r\n"); |
| 160 | 160 | |
| 161 | - foreach($land_data['LANG_COPYRIGHT'] as $lang_copyright) { |
|
| 161 | + foreach ($land_data['LANG_COPYRIGHT'] as $lang_copyright) { |
|
| 162 | 162 | $lang_copyright = str_replace(array('©', '"', '<', '>'), array('©', '"', '<', '>'), $lang_copyright); |
| 163 | 163 | fwrite($file_handler, "# {$lang_copyright}\r\n"); |
| 164 | 164 | } |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | /**\r\n*\r\n* @package language\r\n* @system [{$land_data['LANG_NAME_ENGLISH']}]\r\n* @version " . SN_VERSION . "\r\n*\r\n*/\r\n |
| 167 | 167 | /**\r\n* DO NOT CHANGE\r\n*/\r\n\r\nif (!defined('INSIDE')) die();\r\n |
| 168 | 168 | \$a_lang_array = array(\r\n"); |
| 169 | - foreach($lang_new as $string_name => $string_value) { |
|
| 169 | + foreach ($lang_new as $string_name => $string_value) { |
|
| 170 | 170 | adm_lng_write_string($string_name, $string_value); |
| 171 | 171 | } |
| 172 | 172 | fwrite($file_handler, ");\r\n"); |
@@ -176,21 +176,21 @@ discard block |
||
| 176 | 176 | sys_redirect("admin_locale.php?domain={$domain}"); |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - foreach($languages_info as $lang_id => $lang_data) { |
|
| 179 | + foreach ($languages_info as $lang_id => $lang_data) { |
|
| 180 | 180 | $template->assign_block_vars('language', $lang_data); |
| 181 | 181 | $full_filename = SN_ROOT_PHYSICAL . "language/{$lang_id}/{$domain}.mo.php"; |
| 182 | 182 | $languages[$lang_id] = adm_lng_load($full_filename . (file_exists($full_filename . '.new') ? '.new' : '')); |
| 183 | - foreach($languages[$lang_id] as $locale_string_name => $cork) { |
|
| 183 | + foreach ($languages[$lang_id] as $locale_string_name => $cork) { |
|
| 184 | 184 | adm_lng_assign_string($lang_id, "[{$locale_string_name}]", $languages[$lang_id][$locale_string_name]); |
| 185 | 185 | } |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | - foreach($locale_string_template as $locale_string_name => $locale_string_list) { |
|
| 188 | + foreach ($locale_string_template as $locale_string_name => $locale_string_list) { |
|
| 189 | 189 | $template->assign_block_vars('string', array( |
| 190 | 190 | 'NAME' => $locale_string_name, |
| 191 | 191 | )); |
| 192 | 192 | |
| 193 | - foreach($languages_info as $lang_id => $cork2) { |
|
| 193 | + foreach ($languages_info as $lang_id => $cork2) { |
|
| 194 | 194 | $template->assign_block_vars('string.locale', array( |
| 195 | 195 | 'LANG' => $lang_id, |
| 196 | 196 | 'VALUE' => $locale_string_list["[{$lang_id}]"], |
@@ -206,17 +206,17 @@ discard block |
||
| 206 | 206 | $dir = dir($path); |
| 207 | 207 | while (false !== ($lang_id = $dir->read())) { |
| 208 | 208 | $full_path = $path . $lang_id; |
| 209 | - if($lang_id[0] != "." && is_dir($full_path)) { |
|
| 209 | + if ($lang_id[0] != "." && is_dir($full_path)) { |
|
| 210 | 210 | $lang_file_list = dir($full_path); |
| 211 | 211 | while (false !== ($filename = $lang_file_list->read())) { |
| 212 | 212 | $lang_domain = strtolower(substr($filename, 0, strpos($filename, '.'))); |
| 213 | - if(!$lang_domain) { |
|
| 213 | + if (!$lang_domain) { |
|
| 214 | 214 | continue; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | $file_ext = strtolower(substr($filename, strpos($filename, '.'))); |
| 218 | - if($lang_domain != 'language') { |
|
| 219 | - if($file_ext == '.mo.php.new' || ($file_ext == '.mo.php' && empty($languages[$lang_id][$lang_domain]))) { |
|
| 218 | + if ($lang_domain != 'language') { |
|
| 219 | + if ($file_ext == '.mo.php.new' || ($file_ext == '.mo.php' && empty($languages[$lang_id][$lang_domain]))) { |
|
| 220 | 220 | $language_domains[$lang_domain] = $lang_domain; |
| 221 | 221 | $languages[$lang_id][$lang_domain] = $lang_domain; |
| 222 | 222 | } |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | } |
| 227 | 227 | $dir->close(); |
| 228 | 228 | |
| 229 | - foreach($language_domains as $lang_domain) { |
|
| 229 | + foreach ($language_domains as $lang_domain) { |
|
| 230 | 230 | $template->assign_block_vars('domain', array( |
| 231 | 231 | 'NAME' => $lang_domain, |
| 232 | 232 | )); |
@@ -39,11 +39,11 @@ discard block |
||
| 39 | 39 | $planet = sys_get_param_int('planet', $planetrow['planet']); |
| 40 | 40 | |
| 41 | 41 | $target_mission = sys_get_param_int('target_mission'); |
| 42 | -if($target_mission == MT_COLONIZE || $target_mission == MT_EXPLORE) { |
|
| 42 | +if ($target_mission == MT_COLONIZE || $target_mission == MT_EXPLORE) { |
|
| 43 | 43 | $planet_type = PT_PLANET; |
| 44 | -} elseif($target_mission == MT_RECYCLE) { |
|
| 44 | +} elseif ($target_mission == MT_RECYCLE) { |
|
| 45 | 45 | $planet_type = PT_DEBRIS; |
| 46 | -} elseif($target_mission == MT_DESTROY) { |
|
| 46 | +} elseif ($target_mission == MT_DESTROY) { |
|
| 47 | 47 | $planet_type = PT_MOON; |
| 48 | 48 | } else { |
| 49 | 49 | $planet_type = sys_get_param_int('planet_type'); |
@@ -59,15 +59,15 @@ discard block |
||
| 59 | 59 | //$FlyingFleets = doquery("SELECT COUNT(fleet_id) as Number FROM {{fleets}} WHERE `fleet_owner`='{$user['id']}'", true); |
| 60 | 60 | //$FlyingFleets = $FlyingFleets['Number']; |
| 61 | 61 | $FlyingFleets = fleet_count_flying($user['id']); |
| 62 | -if($MaxFleets <= $FlyingFleets && $fleet_page && $fleet_page != 4) { |
|
| 62 | +if ($MaxFleets <= $FlyingFleets && $fleet_page && $fleet_page != 4) { |
|
| 63 | 63 | messageBox($lang['fl_noslotfree'], $lang['fl_error'], "fleet." . PHP_EX, 5); |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | $MaxExpeditions = get_player_max_expeditons($user); |
| 67 | -if($MaxExpeditions) { |
|
| 67 | +if ($MaxExpeditions) { |
|
| 68 | 68 | // $FlyingExpeditions = doquery("SELECT COUNT(fleet_owner) AS `expedi` FROM {{fleets}} WHERE `fleet_owner` = {$user['id']} AND `fleet_mission` = '" . MT_EXPLORE . "';", '', true); |
| 69 | 69 | // $FlyingExpeditions = $FlyingExpeditions['expedi']; |
| 70 | - $FlyingExpeditions = fleet_count_flying($user['id'], MT_EXPLORE); |
|
| 70 | + $FlyingExpeditions = fleet_count_flying($user['id'], MT_EXPLORE); |
|
| 71 | 71 | } else { |
| 72 | 72 | $FlyingExpeditions = 0; |
| 73 | 73 | } |
@@ -80,8 +80,8 @@ discard block |
||
| 80 | 80 | $fleetarray = json_decode(base64_decode(str_rot13(sys_get_param('usedfleet'))), true); |
| 81 | 81 | $fleetarray = is_array($fleetarray) ? $fleetarray : array(); |
| 82 | 82 | |
| 83 | - foreach($fleetarray as $ship_id => &$ship_amount) { |
|
| 84 | - if(!in_array($ship_id, sn_get_groups('fleet')) || (string)floatval($ship_amount) != $ship_amount || $ship_amount < 1) { |
|
| 83 | + foreach ($fleetarray as $ship_id => &$ship_amount) { |
|
| 84 | + if (!in_array($ship_id, sn_get_groups('fleet')) || (string) floatval($ship_amount) != $ship_amount || $ship_amount < 1) { |
|
| 85 | 85 | $debug->warning('Supplying wrong ship in ship list on fleet page', 'Hack attempt', 302, array('base_dump' => true)); |
| 86 | 86 | die(); |
| 87 | 87 | } |
@@ -112,11 +112,11 @@ discard block |
||
| 112 | 112 | $target_mission = MT_COLONIZE; |
| 113 | 113 | $planet_type = PT_PLANET; |
| 114 | 114 | } else { |
| 115 | - messageBox ("<font color=\"red\"><b>". $lang['fl_no_planet_type'] ."</b></font>", $lang['fl_error']); |
|
| 115 | + messageBox("<font color=\"red\"><b>" . $lang['fl_no_planet_type'] . "</b></font>", $lang['fl_error']); |
|
| 116 | 116 | } |
| 117 | 117 | } else { |
| 118 | 118 | $recyclers = 0; |
| 119 | - foreach(sn_get_groups('flt_recyclers') as $recycler_id) { |
|
| 119 | + foreach (sn_get_groups('flt_recyclers') as $recycler_id) { |
|
| 120 | 120 | $recyclers += $fleetarray[$recycler_id]; |
| 121 | 121 | } |
| 122 | 122 | if ($recyclers > 0 && $planet_type == PT_DEBRIS) { |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | $missiontype[MT_HOLD] = $lang['type_mission'][MT_HOLD]; |
| 143 | 143 | |
| 144 | - if($planet_type == PT_MOON && $fleetarray[SHIP_HUGE_DEATH_STAR]) { |
|
| 144 | + if ($planet_type == PT_MOON && $fleetarray[SHIP_HUGE_DEATH_STAR]) { |
|
| 145 | 145 | $missiontype[MT_DESTROY] = $lang['type_mission'][MT_DESTROY]; |
| 146 | 146 | } |
| 147 | 147 | } |
@@ -201,14 +201,14 @@ discard block |
||
| 201 | 201 | ); |
| 202 | 202 | |
| 203 | 203 | $is_transport_missions = false; |
| 204 | -if($missiontype) { |
|
| 204 | +if ($missiontype) { |
|
| 205 | 205 | $sn_group_missions = sn_get_groups('missions'); |
| 206 | - foreach($missiontype as $mission_data_id => $mission_data) { |
|
| 206 | + foreach ($missiontype as $mission_data_id => $mission_data) { |
|
| 207 | 207 | $is_transport_missions = $is_transport_missions || (isset($sn_group_missions[$mission_data_id]['transport']) && $sn_group_missions[$mission_data_id]['transport']); |
| 208 | 208 | } |
| 209 | 209 | } |
| 210 | 210 | |
| 211 | -switch($fleet_page) { |
|
| 211 | +switch ($fleet_page) { |
|
| 212 | 212 | case 1: |
| 213 | 213 | require('includes/includes/flt_page1.inc'); |
| 214 | 214 | break; |
@@ -75,11 +75,11 @@ |
||
| 75 | 75 | * @return float[] - [int resourceId] -> [float ratesNormalizedToResourceCost] |
| 76 | 76 | */ |
| 77 | 77 | public function getResourceExchangeIn($resourceId) { |
| 78 | - if(empty($this->resourceExchangeRates[$resourceId])) { |
|
| 78 | + if (empty($this->resourceExchangeRates[$resourceId])) { |
|
| 79 | 79 | $defaultRates = $this->getResourcesExchange(); |
| 80 | 80 | |
| 81 | 81 | $this->resourceExchangeRates[$resourceId] = []; |
| 82 | - foreach($defaultRates as $defaultResourceId => $defaultRate) { |
|
| 82 | + foreach ($defaultRates as $defaultResourceId => $defaultRate) { |
|
| 83 | 83 | $this->resourceExchangeRates[$resourceId][$defaultResourceId] = $defaultRate / $defaultRates[$resourceId]; |
| 84 | 84 | } |
| 85 | 85 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -function admin_planet_edit_mode(&$template, &$admin_planet_edit_mode_list){return sn_function_call('admin_planet_edit_mode', array(&$template, &$admin_planet_edit_mode_list));} |
|
| 3 | +function admin_planet_edit_mode(&$template, &$admin_planet_edit_mode_list) {return sn_function_call('admin_planet_edit_mode', array(&$template, &$admin_planet_edit_mode_list)); } |
|
| 4 | 4 | function sn_admin_planet_edit_mode(&$template, &$admin_planet_edit_mode_list) |
| 5 | 5 | { |
| 6 | 6 | global $lang; |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | return $mode; |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | -function admin_planet_edit_template(&$template, $edit_planet_row, $mode){return sn_function_call('admin_planet_edit_template', array(&$template, $edit_planet_row, $mode));} |
|
| 22 | +function admin_planet_edit_template(&$template, $edit_planet_row, $mode) {return sn_function_call('admin_planet_edit_template', array(&$template, $edit_planet_row, $mode)); } |
|
| 23 | 23 | /** |
| 24 | 24 | * @param template $template |
| 25 | 25 | * @param $edit_planet_row |
@@ -30,13 +30,13 @@ discard block |
||
| 30 | 30 | global $lang; |
| 31 | 31 | |
| 32 | 32 | $unit_list = sn_get_groups($mode); |
| 33 | - if(empty($unit_list)) |
|
| 33 | + if (empty($unit_list)) |
|
| 34 | 34 | { |
| 35 | 35 | return; |
| 36 | 36 | } |
| 37 | 37 | $name_list = $lang['tech']; |
| 38 | 38 | |
| 39 | - foreach($unit_list as $unit_id) |
|
| 39 | + foreach ($unit_list as $unit_id) |
|
| 40 | 40 | { |
| 41 | 41 | $template->assign_block_vars('unit', array( |
| 42 | 42 | 'ID' => $unit_id, |
@@ -47,10 +47,10 @@ discard block |
||
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | -function admin_planet_edit_query_string($unit_id, $unit_amount, $mode){return sn_function_call('admin_planet_edit_query_string', array($unit_id, $unit_amount, $mode));} |
|
| 50 | +function admin_planet_edit_query_string($unit_id, $unit_amount, $mode) {return sn_function_call('admin_planet_edit_query_string', array($unit_id, $unit_amount, $mode)); } |
|
| 51 | 51 | function sn_admin_planet_edit_query_string($unit_id, $unit_amount, $mode) |
| 52 | 52 | { |
| 53 | - if($unit_amount && in_array($unit_id, sn_get_groups($mode))) |
|
| 53 | + if ($unit_amount && in_array($unit_id, sn_get_groups($mode))) |
|
| 54 | 54 | { |
| 55 | 55 | $unit_amount = round($unit_amount); |
| 56 | 56 | $unit_name = get_unit_param($unit_id, P_NAME); |
@@ -12,12 +12,12 @@ discard block |
||
| 12 | 12 | $fleet_row = &$mission_data['fleet']; |
| 13 | 13 | $destination_planet = &$mission_data['dst_planet']; |
| 14 | 14 | |
| 15 | - if(!$fleet_row) |
|
| 15 | + if (!$fleet_row) |
|
| 16 | 16 | { |
| 17 | 17 | return CACHE_NOTHING; |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | - if(!isset($destination_planet['id'])) |
|
| 20 | + if (!isset($destination_planet['id'])) |
|
| 21 | 21 | { |
| 22 | 22 | // doquery("UPDATE {{fleets}} SET `fleet_mess` = 1 WHERE `fleet_id` = {$fleet_row['fleet_id']} LIMIT 1;"); |
| 23 | 23 | fleet_send_back($mission_data['fleet']); |
@@ -29,12 +29,12 @@ discard block |
||
| 29 | 29 | $RecyclerCapacity = 0; |
| 30 | 30 | $OtherFleetCapacity = 0; |
| 31 | 31 | $fleet_array = sys_unit_str2arr($fleet_row['fleet_array']); |
| 32 | - foreach($fleet_array as $unit_id => $unit_count) |
|
| 32 | + foreach ($fleet_array as $unit_id => $unit_count) |
|
| 33 | 33 | { |
| 34 | - if(in_array($unit_id, sn_get_groups('fleet'))) |
|
| 34 | + if (in_array($unit_id, sn_get_groups('fleet'))) |
|
| 35 | 35 | { |
| 36 | 36 | $capacity = get_unit_param($unit_id, P_CAPACITY) * $unit_count; |
| 37 | - if(in_array($unit_id, sn_get_groups('flt_recyclers'))) |
|
| 37 | + if (in_array($unit_id, sn_get_groups('flt_recyclers'))) |
|
| 38 | 38 | { |
| 39 | 39 | $RecyclerCapacity += $capacity; |
| 40 | 40 | } |
@@ -46,19 +46,19 @@ discard block |
||
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | $IncomingFleetGoods = $fleet_row["fleet_resource_metal"] + $fleet_row["fleet_resource_crystal"] + $fleet_row["fleet_resource_deuterium"]; |
| 49 | - if($IncomingFleetGoods > $OtherFleetCapacity) |
|
| 49 | + if ($IncomingFleetGoods > $OtherFleetCapacity) |
|
| 50 | 50 | { |
| 51 | 51 | $RecyclerCapacity -= ($IncomingFleetGoods - $OtherFleetCapacity); |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - if(($destination_planet["debris_metal"] + $destination_planet["debris_crystal"]) <= $RecyclerCapacity) |
|
| 54 | + if (($destination_planet["debris_metal"] + $destination_planet["debris_crystal"]) <= $RecyclerCapacity) |
|
| 55 | 55 | { |
| 56 | 56 | $RecycledGoods["metal"] = $destination_planet["debris_metal"]; |
| 57 | 57 | $RecycledGoods["crystal"] = $destination_planet["debris_crystal"]; |
| 58 | 58 | } |
| 59 | 59 | else |
| 60 | 60 | { |
| 61 | - if (($destination_planet["debris_metal"] > $RecyclerCapacity / 2) AND |
|
| 61 | + if (($destination_planet["debris_metal"] > $RecyclerCapacity / 2) AND |
|
| 62 | 62 | ($destination_planet["debris_crystal"] > $RecyclerCapacity / 2)) |
| 63 | 63 | { |
| 64 | 64 | $RecycledGoods["metal"] = $RecyclerCapacity / 2; |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | - $NewCargo['Metal'] = $fleet_row["fleet_resource_metal"] + $RecycledGoods["metal"]; |
|
| 95 | + $NewCargo['Metal'] = $fleet_row["fleet_resource_metal"] + $RecycledGoods["metal"]; |
|
| 96 | 96 | $NewCargo['Crystal'] = $fleet_row["fleet_resource_crystal"] + $RecycledGoods["crystal"]; |
| 97 | 97 | $NewCargo['Deuterium'] = $fleet_row["fleet_resource_deuterium"]; |
| 98 | 98 | |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | HelperString::numberFloorAndFormat($RecycledGoods["metal"]), $lang['Metal'], |
| 106 | 106 | HelperString::numberFloorAndFormat($RecycledGoods["crystal"]), $lang['Crystal'] |
| 107 | 107 | ); |
| 108 | - msg_send_simple_message ( $fleet_row['fleet_owner'], '', $fleet_row['fleet_start_time'], MSG_TYPE_RECYCLE, $lang['sys_mess_spy_control'], $lang['sys_recy_report'], $Message); |
|
| 108 | + msg_send_simple_message($fleet_row['fleet_owner'], '', $fleet_row['fleet_start_time'], MSG_TYPE_RECYCLE, $lang['sys_mess_spy_control'], $lang['sys_recy_report'], $Message); |
|
| 109 | 109 | |
| 110 | 110 | // $QryUpdateFleet = "UPDATE {{fleets}} SET `fleet_mess` = 1,`fleet_resource_metal` = '{$NewCargo['Metal']}',`fleet_resource_crystal` = '{$NewCargo['Crystal']}',`fleet_resource_deuterium` = '{$NewCargo['Deuterium']}' "; |
| 111 | 111 | // $QryUpdateFleet .= "WHERE `fleet_id` = '{$fleet_row['fleet_id']}' LIMIT 1;"; |
@@ -11,8 +11,8 @@ discard block |
||
| 11 | 11 | global $who, $lang; |
| 12 | 12 | |
| 13 | 13 | // $sn_group_stat_common = sn_get_groups('STAT_COMMON'); |
| 14 | - foreach($array as $key => $value) { |
|
| 15 | - if($array_name == 'type' && $who == 2 && !in_array($key, $sn_group_stat_common)) { |
|
| 14 | + foreach ($array as $key => $value) { |
|
| 15 | + if ($array_name == 'type' && $who == 2 && !in_array($key, $sn_group_stat_common)) { |
|
| 16 | 16 | continue; |
| 17 | 17 | } |
| 18 | 18 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | $subject_list = array( |
| 45 | 45 | 1 => array('header' => $lang['stat_player']), |
| 46 | 46 | ); |
| 47 | -if(!$source) { |
|
| 47 | +if (!$source) { |
|
| 48 | 48 | $subject_list[2] = array('header' => $lang['stat_allys']); |
| 49 | 49 | } |
| 50 | 50 | stat_tpl_assign($template, $who, 'subject', $subject_list, $sn_group_stat_common); |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | |
| 112 | 112 | $page_count = floor($record_count / 100); |
| 113 | 113 | $pages = array(); |
| 114 | -for($i = 0; $i <= $page_count; $i++) { |
|
| 114 | +for ($i = 0; $i <= $page_count; $i++) { |
|
| 115 | 115 | $first_element = $i * 100 + 1; |
| 116 | 116 | $last_element = $first_element + 99; |
| 117 | 117 | $pages[$first_element] = array( |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | 'POINTS' => HelperString::numberFloorAndFormat($row['points']), |
| 131 | 131 | ); |
| 132 | 132 | |
| 133 | - if($who == 1) { |
|
| 133 | + if ($who == 1) { |
|
| 134 | 134 | $row_stat['ALLY_NAME'] = $row['ally_name']; |
| 135 | 135 | $row_stat['ALLY_ID'] = $row['ally_id']; |
| 136 | 136 | empty($row['username']) ? $row['username'] = $row['name'] : false; |