@@ -284,7 +284,7 @@ |
||
| 284 | 284 | $time_left = min(floor($time_left / PERIOD_DAY), $term_original); |
| 285 | 285 | $cost_left = $term_original > 0 ? ceil($time_left / $term_original * $original_cost) : 0; |
| 286 | 286 | |
| 287 | - array_walk_recursive($result, function (&$value) use ($cost_left) { |
|
| 287 | + array_walk_recursive($result, function(&$value) use ($cost_left) { |
|
| 288 | 288 | $value -= $cost_left; |
| 289 | 289 | }); |
| 290 | 290 | } |
@@ -112,10 +112,10 @@ discard block |
||
| 112 | 112 | $rexep = "#" . strtr(preg_quote($format), $masks) . "#"; |
| 113 | 113 | if (preg_match($rexep, $date, $out)) { |
| 114 | 114 | $ret = array( |
| 115 | - "tm_sec" => (int)$out['S'], |
|
| 116 | - "tm_min" => (int)$out['M'], |
|
| 117 | - "tm_hour" => (int)$out['H'], |
|
| 118 | - "tm_mday" => (int)$out['d'], |
|
| 115 | + "tm_sec" => (int) $out['S'], |
|
| 116 | + "tm_min" => (int) $out['M'], |
|
| 117 | + "tm_hour" => (int) $out['H'], |
|
| 118 | + "tm_mday" => (int) $out['d'], |
|
| 119 | 119 | "tm_mon" => $out['m'] ? $out['m'] - 1 : 0, |
| 120 | 120 | "tm_year" => $out['Y'] > 1900 ? $out['Y'] - 1900 : 0, |
| 121 | 121 | ); |
@@ -150,5 +150,5 @@ discard block |
||
| 150 | 150 | * @return int |
| 151 | 151 | */ |
| 152 | 152 | function datePart($fullDate) { |
| 153 | - return (int)strtotime(date('Y-m-d', $fullDate)); |
|
| 153 | + return (int) strtotime(date('Y-m-d', $fullDate)); |
|
| 154 | 154 | } |
@@ -46,8 +46,7 @@ |
||
| 46 | 46 | 'ANNOUNCE' => classSupernova::$gc->bbCodeParser->expandBbCode($announce['strAnnounce'], intval($announce['authlevel'])), |
| 47 | 47 | 'DETAIL_URL' => $announce['detail_url'], |
| 48 | 48 | 'USER_NAME' => |
| 49 | - isset($users[$announce['user_id']]) && $users[$announce['user_id']] ? player_nick_render_to_html($users[$announce['user_id']], array('color' => true)) : |
|
| 50 | - js_safe_string($announce['user_name']), |
|
| 49 | + isset($users[$announce['user_id']]) && $users[$announce['user_id']] ? player_nick_render_to_html($users[$announce['user_id']], array('color' => true)) : js_safe_string($announce['user_name']), |
|
| 51 | 50 | 'NEW' => $announce['unix_time'] + $config->game_news_actual >= SN_TIME_NOW, |
| 52 | 51 | 'FUTURE' => $announce['unix_time'] > SN_TIME_NOW, |
| 53 | 52 | 'SURVEY_ID' => $announce['survey_id'], |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | |
| 12 | 12 | $language_new = sys_get_param_str('langer', $user['lang']); |
| 13 | 13 | |
| 14 | - if($language_new != $user['lang']) { |
|
| 14 | + if ($language_new != $user['lang']) { |
|
| 15 | 15 | $lang->lng_switch($language_new); |
| 16 | 16 | } |
| 17 | 17 | |
@@ -20,35 +20,35 @@ discard block |
||
| 20 | 20 | |
| 21 | 21 | $FMT_DATE = preg_replace(array('/d/', '/m/', '/Y/'), array('DD', 'MM', 'YYYY'), FMT_DATE); |
| 22 | 22 | |
| 23 | - if(sys_get_param_str('mode') == 'change') { |
|
| 24 | - if($user['authlevel'] > 0) { |
|
| 23 | + if (sys_get_param_str('mode') == 'change') { |
|
| 24 | + if ($user['authlevel'] > 0) { |
|
| 25 | 25 | $planet_protection = sys_get_param_int('adm_pl_prot') ? $user['authlevel'] : 0; |
| 26 | 26 | DBStaticPlanet::db_planet_set_by_owner($user['id'], "`id_level` = '{$planet_protection}'"); |
| 27 | 27 | db_user_set_by_id($user['id'], "`admin_protection` = '{$planet_protection}'"); |
| 28 | 28 | $user['admin_protection'] = $planet_protection; |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - if(sys_get_param_int('vacation') && !$config->user_vacation_disable) { |
|
| 31 | + if (sys_get_param_int('vacation') && !$config->user_vacation_disable) { |
|
| 32 | 32 | sn_db_transaction_start(); |
| 33 | - if($user['authlevel'] < 3) { |
|
| 34 | - if($user['vacation_next'] > SN_TIME_NOW) { |
|
| 33 | + if ($user['authlevel'] < 3) { |
|
| 34 | + if ($user['vacation_next'] > SN_TIME_NOW) { |
|
| 35 | 35 | messageBox($lang['opt_vacation_err_timeout'], $lang['Error'], 'index.php?page=options', 5); |
| 36 | 36 | die(); |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - if(fleet_count_flying($user['id'])) { |
|
| 39 | + if (fleet_count_flying($user['id'])) { |
|
| 40 | 40 | messageBox($lang['opt_vacation_err_your_fleet'], $lang['Error'], 'index.php?page=options', 5); |
| 41 | 41 | die(); |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | $que = que_get($user['id'], false); |
| 45 | - if(!empty($que)) { |
|
| 45 | + if (!empty($que)) { |
|
| 46 | 46 | messageBox($lang['opt_vacation_err_que'], $lang['Error'], 'index.php?page=options', 5); |
| 47 | 47 | die(); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | $query = classSupernova::db_get_record_list(LOC_PLANET, "`id_owner` = {$user['id']}"); |
| 51 | - foreach($query as $planet) { |
|
| 51 | + foreach ($query as $planet) { |
|
| 52 | 52 | DBStaticPlanet::db_planet_set_by_id($planet['id'], |
| 53 | 53 | "last_update = " . SN_TIME_NOW . ", energy_used = '0', energy_max = '0', |
| 54 | 54 | metal_perhour = '{$config->metal_basic_income}', crystal_perhour = '{$config->crystal_basic_income}', deuterium_perhour = '{$config->deuterium_basic_income}', |
@@ -63,9 +63,9 @@ discard block |
||
| 63 | 63 | sn_db_transaction_commit(); |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - foreach($user_option_list as $option_group_id => $option_group) { |
|
| 67 | - foreach($option_group as $option_name => $option_value) { |
|
| 68 | - if($user[$option_name] !== null) { |
|
| 66 | + foreach ($user_option_list as $option_group_id => $option_group) { |
|
| 67 | + foreach ($option_group as $option_name => $option_value) { |
|
| 68 | + if ($user[$option_name] !== null) { |
|
| 69 | 69 | $user[$option_name] = sys_get_param_str($option_name); |
| 70 | 70 | } else { |
| 71 | 71 | $user[$option_name] = $option_value; |
@@ -76,12 +76,12 @@ discard block |
||
| 76 | 76 | |
| 77 | 77 | |
| 78 | 78 | $player_options = sys_get_param('options'); |
| 79 | - if(!empty($player_options)) { |
|
| 80 | - if($player_options[PLAYER_OPTION_TUTORIAL_CURRENT] == classSupernova::$config->tutorial_first_item) { |
|
| 79 | + if (!empty($player_options)) { |
|
| 80 | + if ($player_options[PLAYER_OPTION_TUTORIAL_CURRENT] == classSupernova::$config->tutorial_first_item) { |
|
| 81 | 81 | $player_options[PLAYER_OPTION_TUTORIAL_FINISHED] = 0; |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - array_walk($player_options, function (&$value) { |
|
| 84 | + array_walk($player_options, function(&$value) { |
|
| 85 | 85 | // TODO - Когда будет больше параметров - сделать больше проверок |
| 86 | 86 | $value = intval($value); |
| 87 | 87 | }); |
@@ -90,15 +90,15 @@ discard block |
||
| 90 | 90 | |
| 91 | 91 | $username = substr(sys_get_param_str_unsafe('username'), 0, 32); |
| 92 | 92 | $username_safe = db_escape($username); |
| 93 | - if($username && $user['username'] != $username && $config->game_user_changename != SERVER_PLAYER_NAME_CHANGE_NONE && sys_get_param_int('username_confirm') && !strpbrk($username, LOGIN_REGISTER_CHARACTERS_PROHIBITED)) { |
|
| 93 | + if ($username && $user['username'] != $username && $config->game_user_changename != SERVER_PLAYER_NAME_CHANGE_NONE && sys_get_param_int('username_confirm') && !strpbrk($username, LOGIN_REGISTER_CHARACTERS_PROHIBITED)) { |
|
| 94 | 94 | // проверка на корректность |
| 95 | 95 | sn_db_transaction_start(); |
| 96 | 96 | $name_check = doquery("SELECT * FROM `{{player_name_history}}` WHERE `player_name` LIKE \"{$username_safe}\" LIMIT 1 FOR UPDATE;", true); |
| 97 | - if(!$name_check || $name_check['player_id'] == $user['id']) { |
|
| 97 | + if (!$name_check || $name_check['player_id'] == $user['id']) { |
|
| 98 | 98 | $user = db_user_by_id($user['id'], true); |
| 99 | - switch($config->game_user_changename) { |
|
| 99 | + switch ($config->game_user_changename) { |
|
| 100 | 100 | case SERVER_PLAYER_NAME_CHANGE_PAY: |
| 101 | - if(mrc_get_level($user, [], RES_DARK_MATTER) < $config->game_user_changename_cost) { |
|
| 101 | + if (mrc_get_level($user, [], RES_DARK_MATTER) < $config->game_user_changename_cost) { |
|
| 102 | 102 | $template_result['.']['result'][] = array( |
| 103 | 103 | 'STATUS' => ERR_ERROR, |
| 104 | 104 | 'MESSAGE' => $lang['opt_msg_name_change_err_no_dm'], |
@@ -128,18 +128,18 @@ discard block |
||
| 128 | 128 | sn_db_transaction_commit(); |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | - if($new_password = sys_get_param('newpass1')) { |
|
| 131 | + if ($new_password = sys_get_param('newpass1')) { |
|
| 132 | 132 | try { |
| 133 | - if($new_password != sys_get_param('newpass2')) { |
|
| 133 | + if ($new_password != sys_get_param('newpass2')) { |
|
| 134 | 134 | throw new Exception($lang['opt_err_pass_unmatched'], ERR_WARNING); |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - if(!classSupernova::$auth->password_change(sys_get_param('db_password'), $new_password)) { |
|
| 137 | + if (!classSupernova::$auth->password_change(sys_get_param('db_password'), $new_password)) { |
|
| 138 | 138 | throw new Exception($lang['opt_err_pass_wrong'], ERR_WARNING); |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | throw new Exception($lang['opt_msg_pass_changed'], ERR_NONE); |
| 142 | - } catch(Exception $e) { |
|
| 142 | + } catch (Exception $e) { |
|
| 143 | 143 | $template_result['.']['result'][] = array( |
| 144 | 144 | 'STATUS' => in_array($e->getCode(), array(ERR_NONE, ERR_WARNING, ERR_ERROR)) ? $e->getCode() : ERR_ERROR, |
| 145 | 145 | 'MESSAGE' => $e->getMessage() |
@@ -160,12 +160,12 @@ discard block |
||
| 160 | 160 | $user['gender'] = $user['gender'] == GENDER_UNKNOWN ? $gender : $user['gender']; |
| 161 | 161 | |
| 162 | 162 | try { |
| 163 | - if($user['birthday']) { |
|
| 163 | + if ($user['birthday']) { |
|
| 164 | 164 | throw new exception(); |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | $user_birthday = sys_get_param_str_unsafe('user_birthday'); |
| 168 | - if(!$user_birthday || $user_birthday == $FMT_DATE) { |
|
| 168 | + if (!$user_birthday || $user_birthday == $FMT_DATE) { |
|
| 169 | 169 | throw new exception(); |
| 170 | 170 | } |
| 171 | 171 | |
@@ -175,16 +175,16 @@ discard block |
||
| 175 | 175 | $pos['Y'] = strpos(FMT_DATE, 'Y'); |
| 176 | 176 | asort($pos); |
| 177 | 177 | $i = 0; |
| 178 | - foreach($pos as &$position) { |
|
| 178 | + foreach ($pos as &$position) { |
|
| 179 | 179 | $position = ++$i; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | $regexp = "/" . preg_replace(array('/\\\\/', '/\//', '/\./', '/\-/', '/d/', '/m/', '/Y/'), array('\\\\\\', '\/', '\.', '\-', '(\d?\d)', '(\d?\d)', '(\d{4})'), FMT_DATE) . "/"; |
| 183 | - if(!preg_match($regexp, $user_birthday, $match)) { |
|
| 183 | + if (!preg_match($regexp, $user_birthday, $match)) { |
|
| 184 | 184 | throw new exception(); |
| 185 | 185 | } |
| 186 | 186 | |
| 187 | - if(!checkdate($match[$pos['m']], $match[$pos['d']], $match[$pos['Y']])) { |
|
| 187 | + if (!checkdate($match[$pos['m']], $match[$pos['d']], $match[$pos['Y']])) { |
|
| 188 | 188 | throw new exception(); |
| 189 | 189 | } |
| 190 | 190 | |
@@ -192,13 +192,13 @@ discard block |
||
| 192 | 192 | // EOF black magic! Now we have valid SQL date in $user['user_birthday'] - independent of date format |
| 193 | 193 | |
| 194 | 194 | $year = date('Y', SN_TIME_NOW); |
| 195 | - if(mktime(0, 0, 0, $match[$pos['m']], $match[$pos['d']], $year) > SN_TIME_NOW) { |
|
| 195 | + if (mktime(0, 0, 0, $match[$pos['m']], $match[$pos['d']], $year) > SN_TIME_NOW) { |
|
| 196 | 196 | $year--; |
| 197 | 197 | } |
| 198 | 198 | $user['user_birthday_celebrated'] = db_escape("{$year}-{$match[$pos['m']]}-{$match[$pos['d']]}"); |
| 199 | 199 | |
| 200 | 200 | $user_birthday = ", `user_birthday` = '{$user['user_birthday']}', `user_birthday_celebrated` = '{$user['user_birthday_celebrated']}'"; |
| 201 | - } catch(exception $e) { |
|
| 201 | + } catch (exception $e) { |
|
| 202 | 202 | $user_birthday = ''; |
| 203 | 203 | } |
| 204 | 204 | |
@@ -208,14 +208,14 @@ discard block |
||
| 208 | 208 | $template_result['.']['result'][] = $avatar_upload_result; |
| 209 | 209 | |
| 210 | 210 | $user_time_diff = playerTimeDiff::user_time_diff_get(); |
| 211 | - if(sys_get_param_int('PLAYER_OPTION_TIME_DIFF_FORCED')) { |
|
| 211 | + if (sys_get_param_int('PLAYER_OPTION_TIME_DIFF_FORCED')) { |
|
| 212 | 212 | playerTimeDiff::user_time_diff_set(array( |
| 213 | 213 | PLAYER_OPTION_TIME_DIFF => sys_get_param_int('PLAYER_OPTION_TIME_DIFF'), |
| 214 | 214 | PLAYER_OPTION_TIME_DIFF_UTC_OFFSET => 0, |
| 215 | 215 | PLAYER_OPTION_TIME_DIFF_FORCED => 1, |
| 216 | 216 | PLAYER_OPTION_TIME_DIFF_MEASURE_TIME => SN_TIME_SQL, |
| 217 | 217 | )); |
| 218 | - } elseif(sys_get_param_int('opt_time_diff_clear') || $user_time_diff[PLAYER_OPTION_TIME_DIFF_FORCED]) { |
|
| 218 | + } elseif (sys_get_param_int('opt_time_diff_clear') || $user_time_diff[PLAYER_OPTION_TIME_DIFF_FORCED]) { |
|
| 219 | 219 | playerTimeDiff::user_time_diff_set(array( |
| 220 | 220 | PLAYER_OPTION_TIME_DIFF => '', |
| 221 | 221 | PLAYER_OPTION_TIME_DIFF_UTC_OFFSET => 0, |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | 'STATUS' => ERR_NONE, |
| 236 | 236 | 'MESSAGE' => $lang['opt_msg_saved'] |
| 237 | 237 | ); |
| 238 | - } elseif(sys_get_param_str('result') == 'ok') { |
|
| 238 | + } elseif (sys_get_param_str('result') == 'ok') { |
|
| 239 | 239 | $template_result['.']['result'][] = array( |
| 240 | 240 | 'STATUS' => ERR_NONE, |
| 241 | 241 | 'MESSAGE' => $lang['opt_msg_saved'] |
@@ -258,8 +258,8 @@ discard block |
||
| 258 | 258 | $template = gettemplate('options', $template); |
| 259 | 259 | |
| 260 | 260 | $dir = dir(SN_ROOT_PHYSICAL . 'skins'); |
| 261 | - while(($entry = $dir->read()) !== false) { |
|
| 262 | - if(is_dir("skins/{$entry}") && $entry[0] != '.') { |
|
| 261 | + while (($entry = $dir->read()) !== false) { |
|
| 262 | + if (is_dir("skins/{$entry}") && $entry[0] != '.') { |
|
| 263 | 263 | $template_result['.']['skin_list'][] = array( |
| 264 | 264 | 'VALUE' => $entry, |
| 265 | 265 | 'NAME' => $entry, |
@@ -269,7 +269,7 @@ discard block |
||
| 269 | 269 | } |
| 270 | 270 | $dir->close(); |
| 271 | 271 | |
| 272 | - foreach($lang['opt_planet_sort_options'] as $key => &$value) { |
|
| 272 | + foreach ($lang['opt_planet_sort_options'] as $key => &$value) { |
|
| 273 | 273 | $template_result['.']['planet_sort_options'][] = array( |
| 274 | 274 | 'VALUE' => $key, |
| 275 | 275 | 'NAME' => $value, |
@@ -277,7 +277,7 @@ discard block |
||
| 277 | 277 | ); |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | - foreach($lang['sys_gender_list'] as $key => $value) { |
|
| 280 | + foreach ($lang['sys_gender_list'] as $key => $value) { |
|
| 281 | 281 | $template_result['.']['gender_list'][] = array( |
| 282 | 282 | 'VALUE' => $key, |
| 283 | 283 | 'NAME' => $value, |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | } |
| 287 | 287 | |
| 288 | 288 | $lang_list = lng_get_list(); |
| 289 | - foreach($lang_list as $lang_id => $lang_data) { |
|
| 289 | + foreach ($lang_list as $lang_id => $lang_data) { |
|
| 290 | 290 | $template_result['.']['languages'][] = array( |
| 291 | 291 | 'VALUE' => $lang_id, |
| 292 | 292 | 'NAME' => $lang_data['LANG_NAME_NATIVE'], |
@@ -295,8 +295,8 @@ discard block |
||
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | |
| 298 | - if(isset($lang['menu_customize_show_hide_button_state'])) { |
|
| 299 | - foreach($lang['menu_customize_show_hide_button_state'] as $key => $value) { |
|
| 298 | + if (isset($lang['menu_customize_show_hide_button_state'])) { |
|
| 299 | + foreach ($lang['menu_customize_show_hide_button_state'] as $key => $value) { |
|
| 300 | 300 | $template->assign_block_vars('menu_customize_show_hide_button_state', array( |
| 301 | 301 | 'ID' => $key, |
| 302 | 302 | 'NAME' => $value, |
@@ -407,10 +407,10 @@ discard block |
||
| 407 | 407 | 'PAGE_HEADER' => $lang['opt_header'], |
| 408 | 408 | )); |
| 409 | 409 | |
| 410 | - foreach($user_option_list as $option_group_id => $option_group) { |
|
| 411 | - if($option_group_id == OPT_MESSAGE) { |
|
| 412 | - foreach($sn_message_class_list as $message_class_id => $message_class_data) { |
|
| 413 | - if($message_class_data['switchable'] || ($message_class_data['email'] && $config->game_email_pm)) { |
|
| 410 | + foreach ($user_option_list as $option_group_id => $option_group) { |
|
| 411 | + if ($option_group_id == OPT_MESSAGE) { |
|
| 412 | + foreach ($sn_message_class_list as $message_class_id => $message_class_data) { |
|
| 413 | + if ($message_class_data['switchable'] || ($message_class_data['email'] && $config->game_email_pm)) { |
|
| 414 | 414 | $option_name = $message_class_data['name']; |
| 415 | 415 | |
| 416 | 416 | $template->assign_block_vars("options_{$option_group_id}", array( |
@@ -422,8 +422,8 @@ discard block |
||
| 422 | 422 | } |
| 423 | 423 | } |
| 424 | 424 | } else { |
| 425 | - foreach($option_group as $option_name => $option_value) { |
|
| 426 | - if(array_key_exists($option_name, $user_option_types)) { |
|
| 425 | + foreach ($option_group as $option_name => $option_value) { |
|
| 426 | + if (array_key_exists($option_name, $user_option_types)) { |
|
| 427 | 427 | $option_type = $user_option_types[$option_name]; |
| 428 | 428 | } else { |
| 429 | 429 | $option_type = 'switch'; |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if(defined('__SN_CONSTANTS_DEFINED') && __SN_CONSTANTS_DEFINED === true) { |
|
| 3 | +if (defined('__SN_CONSTANTS_DEFINED') && __SN_CONSTANTS_DEFINED === true) { |
|
| 4 | 4 | return; |
| 5 | 5 | } |
| 6 | 6 | |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | define('SN_ROOT_VIRTUAL', 'http' . (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on' ? 's' : '') . '://' . $_server_http_host . SN_ROOT_RELATIVE); |
| 36 | 36 | |
| 37 | 37 | $_server_server_name = isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : ''; |
| 38 | -if(strpos(strtolower($_server_server_name), 'google.') !== false) { |
|
| 38 | +if (strpos(strtolower($_server_server_name), 'google.') !== false) { |
|
| 39 | 39 | define('SN_GOOGLE', true); |
| 40 | 40 | } |
| 41 | 41 | define('SN_ROOT_VIRTUAL_PARENT', str_replace('//google.', '//', SN_ROOT_VIRTUAL)); |
@@ -56,8 +56,8 @@ discard block |
||
| 56 | 56 | |
| 57 | 57 | // Game type constants starts with GAME_ |
| 58 | 58 | define('GAME_SUPERNOVA', 0); |
| 59 | -define('GAME_OGAME' , 1); |
|
| 60 | -define('GAME_BLITZ' , 2); |
|
| 59 | +define('GAME_OGAME', 1); |
|
| 60 | +define('GAME_BLITZ', 2); |
|
| 61 | 61 | |
| 62 | 62 | // Date & time range constants |
| 63 | 63 | define('DATE_FOREVER', 2000000000); |
@@ -70,15 +70,15 @@ discard block |
||
| 70 | 70 | define('PERIOD_YEAR', PERIOD_DAY * 365); |
| 71 | 71 | define('PERIOD_FOREVER', PERIOD_YEAR * 100); |
| 72 | 72 | |
| 73 | -define('PERIOD_MINUTE_2' , PERIOD_MINUTE * 2); |
|
| 74 | -define('PERIOD_MINUTE_3' , PERIOD_MINUTE * 3); |
|
| 75 | -define('PERIOD_MINUTE_5' , PERIOD_MINUTE * 5); |
|
| 73 | +define('PERIOD_MINUTE_2', PERIOD_MINUTE * 2); |
|
| 74 | +define('PERIOD_MINUTE_3', PERIOD_MINUTE * 3); |
|
| 75 | +define('PERIOD_MINUTE_5', PERIOD_MINUTE * 5); |
|
| 76 | 76 | define('PERIOD_MINUTE_10', PERIOD_MINUTE * 10); |
| 77 | 77 | define('PERIOD_MINUTE_15', PERIOD_MINUTE * 15); |
| 78 | -define('PERIOD_DAY_3' , PERIOD_DAY * 3); |
|
| 79 | -define('PERIOD_WEEK_2' , PERIOD_WEEK * 2); |
|
| 80 | -define('PERIOD_MONTH_2' , PERIOD_MONTH * 2); |
|
| 81 | -define('PERIOD_MONTH_3' , PERIOD_MONTH * 3); |
|
| 78 | +define('PERIOD_DAY_3', PERIOD_DAY * 3); |
|
| 79 | +define('PERIOD_WEEK_2', PERIOD_WEEK * 2); |
|
| 80 | +define('PERIOD_MONTH_2', PERIOD_MONTH * 2); |
|
| 81 | +define('PERIOD_MONTH_3', PERIOD_MONTH * 3); |
|
| 82 | 82 | |
| 83 | 83 | define('FONT_SIZE_PERCENT_MIN', 56.25); |
| 84 | 84 | define('FONT_SIZE_PERCENT_DEFAULT', 68.75); |
@@ -133,38 +133,38 @@ discard block |
||
| 133 | 133 | |
| 134 | 134 | // Mot qui sont interdit a la saisie ! |
| 135 | 135 | global $ListCensure; |
| 136 | -$ListCensure = array ( '/</', '/>/', '/script/i', '/doquery/i', '/http/i', '/javascript/i'); |
|
| 136 | +$ListCensure = array('/</', '/>/', '/script/i', '/doquery/i', '/http/i', '/javascript/i'); |
|
| 137 | 137 | |
| 138 | 138 | // Confirmation record types |
| 139 | -define('CONFIRM_REGISTRATION' , 1); |
|
| 139 | +define('CONFIRM_REGISTRATION', 1); |
|
| 140 | 140 | define('CONFIRM_PASSWORD_RESET', 2); |
| 141 | -define('CONFIRM_DELETE' , 3); |
|
| 141 | +define('CONFIRM_DELETE', 3); |
|
| 142 | 142 | |
| 143 | 143 | define('AFFILIATE_MM_TO_REFERRAL_DM', 2); |
| 144 | 144 | |
| 145 | 145 | // Ally diplomacy statuses |
| 146 | -define('ALLY_DIPLOMACY_SELF' , 'self'); |
|
| 147 | -define('ALLY_DIPLOMACY_NEUTRAL' , 'neutral'); |
|
| 148 | -define('ALLY_DIPLOMACY_WAR' , 'war'); |
|
| 149 | -define('ALLY_DIPLOMACY_PEACE' , 'peace'); |
|
| 146 | +define('ALLY_DIPLOMACY_SELF', 'self'); |
|
| 147 | +define('ALLY_DIPLOMACY_NEUTRAL', 'neutral'); |
|
| 148 | +define('ALLY_DIPLOMACY_WAR', 'war'); |
|
| 149 | +define('ALLY_DIPLOMACY_PEACE', 'peace'); |
|
| 150 | 150 | define('ALLY_DIPLOMACY_CONFEDERATION', 'confederation'); |
| 151 | -define('ALLY_DIPLOMACY_FEDERATION' , 'federation'); |
|
| 152 | -define('ALLY_DIPLOMACY_UNION' , 'union'); |
|
| 153 | -define('ALLY_DIPLOMACY_MASTER' , 'master'); |
|
| 154 | -define('ALLY_DIPLOMACY_SLAVE' , 'slave'); |
|
| 151 | +define('ALLY_DIPLOMACY_FEDERATION', 'federation'); |
|
| 152 | +define('ALLY_DIPLOMACY_UNION', 'union'); |
|
| 153 | +define('ALLY_DIPLOMACY_MASTER', 'master'); |
|
| 154 | +define('ALLY_DIPLOMACY_SLAVE', 'slave'); |
|
| 155 | 155 | |
| 156 | 156 | define('ALLY_PROPOSE_SEND', 0); |
| 157 | 157 | |
| 158 | 158 | // Quest types |
| 159 | -define('QUEST_TYPE_BUILD' , 1); |
|
| 159 | +define('QUEST_TYPE_BUILD', 1); |
|
| 160 | 160 | define('QUEST_TYPE_RESEARCH', 2); |
| 161 | -define('QUEST_TYPE_COMBAT' , 3); |
|
| 161 | +define('QUEST_TYPE_COMBAT', 3); |
|
| 162 | 162 | |
| 163 | -define('QUEST_STATUS_EXCEPT_COMPLETE' , -2); |
|
| 164 | -define('QUEST_STATUS_ALL' , -1); |
|
| 165 | -define('QUEST_STATUS_NOT_STARTED' , 0); |
|
| 166 | -define('QUEST_STATUS_STARTED' , 1); |
|
| 167 | -define('QUEST_STATUS_COMPLETE' , 2); |
|
| 163 | +define('QUEST_STATUS_EXCEPT_COMPLETE', -2); |
|
| 164 | +define('QUEST_STATUS_ALL', -1); |
|
| 165 | +define('QUEST_STATUS_NOT_STARTED', 0); |
|
| 166 | +define('QUEST_STATUS_STARTED', 1); |
|
| 167 | +define('QUEST_STATUS_COMPLETE', 2); |
|
| 168 | 168 | |
| 169 | 169 | define('TYPE_EMPTY', ''); |
| 170 | 170 | define('TYPE_INTEGER', 'integer'); |
@@ -177,68 +177,68 @@ discard block |
||
| 177 | 177 | |
| 178 | 178 | // *** Combat-related constants |
| 179 | 179 | // *** Mission Type constants starts with MT_ |
| 180 | -define('MT_NONE' , 0); |
|
| 181 | -define('MT_ATTACK' , 1); |
|
| 182 | -define('MT_AKS' , 2); |
|
| 183 | -define('MT_TRANSPORT', 3); |
|
| 184 | -define('MT_RELOCATE' , 4); |
|
| 185 | -define('MT_HOLD' , 5); |
|
| 186 | -define('MT_SPY' , 6); |
|
| 187 | -define('MT_COLONIZE' , 7); |
|
| 188 | -define('MT_RECYCLE' , 8); |
|
| 189 | -define('MT_DESTROY' , 9); |
|
| 190 | -define('MT_MISSILE' , 10); |
|
| 191 | -define('MT_EXPLORE' , 15); |
|
| 180 | +define('MT_NONE', 0); |
|
| 181 | +define('MT_ATTACK', 1); |
|
| 182 | +define('MT_AKS', 2); |
|
| 183 | +define('MT_TRANSPORT', 3); |
|
| 184 | +define('MT_RELOCATE', 4); |
|
| 185 | +define('MT_HOLD', 5); |
|
| 186 | +define('MT_SPY', 6); |
|
| 187 | +define('MT_COLONIZE', 7); |
|
| 188 | +define('MT_RECYCLE', 8); |
|
| 189 | +define('MT_DESTROY', 9); |
|
| 190 | +define('MT_MISSILE', 10); |
|
| 191 | +define('MT_EXPLORE', 15); |
|
| 192 | 192 | |
| 193 | 193 | // *** Planet Target constants starts with PT_ |
| 194 | 194 | define('PT_NONE', 0); |
| 195 | 195 | define('PT_ALL', 0); |
| 196 | 196 | define('PT_PLANET', 1); |
| 197 | 197 | define('PT_DEBRIS', 2); |
| 198 | -define('PT_MOON' , 3); |
|
| 198 | +define('PT_MOON', 3); |
|
| 199 | 199 | |
| 200 | 200 | // *** Unit locations - shows db table where unit belong |
| 201 | 201 | // Also cache indexes |
| 202 | 202 | define('LOC_AUTODETECT', -2); |
| 203 | -define('LOC_NONE', -1); // Deprecated |
|
| 203 | +define('LOC_NONE', -1); // Deprecated |
|
| 204 | 204 | define('LOC_UNIVERSE', 0); |
| 205 | -define('LOC_PLANET', 1); |
|
| 206 | -define('LOC_DEBRIS', 2); // Translates to `planets` table planet_type = 1, `debris_*` fields |
|
| 207 | -define('LOC_MOON', 3); // Translates to `planets` table planet_type = 3 |
|
| 208 | -define('LOC_USER', 4); |
|
| 209 | -define('LOC_FLEET', 5); |
|
| 210 | -define('LOC_ALLY', 6); |
|
| 211 | -define('LOC_SERVER', 7); // Located on server |
|
| 205 | +define('LOC_PLANET', 1); |
|
| 206 | +define('LOC_DEBRIS', 2); // Translates to `planets` table planet_type = 1, `debris_*` fields |
|
| 207 | +define('LOC_MOON', 3); // Translates to `planets` table planet_type = 3 |
|
| 208 | +define('LOC_USER', 4); |
|
| 209 | +define('LOC_FLEET', 5); |
|
| 210 | +define('LOC_ALLY', 6); |
|
| 211 | +define('LOC_SERVER', 7); // Located on server |
|
| 212 | 212 | |
| 213 | 213 | // ТОЛЬКО ВНУТРЕНЕЕ!!! |
| 214 | -define('LOC_UNIT', 'LOC_UNIT'); |
|
| 215 | -define('LOC_QUE', 'LOC_QUE'); |
|
| 216 | -define('LOC_LOCATION','LOC_LOCATION'); |
|
| 217 | -define('LOC_LOCKS','LOC_LOCKS'); |
|
| 214 | +define('LOC_UNIT', 'LOC_UNIT'); |
|
| 215 | +define('LOC_QUE', 'LOC_QUE'); |
|
| 216 | +define('LOC_LOCATION', 'LOC_LOCATION'); |
|
| 217 | +define('LOC_LOCKS', 'LOC_LOCKS'); |
|
| 218 | 218 | |
| 219 | 219 | // *** Caching masks |
| 220 | -define('CACHE_NOTHING' , 0); |
|
| 221 | -define('CACHE_FLEET' , 1); |
|
| 222 | -define('CACHE_PLANET' , 2); |
|
| 223 | -define('CACHE_USER' , 4); |
|
| 224 | -define('CACHE_SOURCE' , 8); |
|
| 220 | +define('CACHE_NOTHING', 0); |
|
| 221 | +define('CACHE_FLEET', 1); |
|
| 222 | +define('CACHE_PLANET', 2); |
|
| 223 | +define('CACHE_USER', 4); |
|
| 224 | +define('CACHE_SOURCE', 8); |
|
| 225 | 225 | define('CACHE_DESTINATION', 16); |
| 226 | -define('CACHE_EVENT' , 32); |
|
| 226 | +define('CACHE_EVENT', 32); |
|
| 227 | 227 | |
| 228 | -define('CACHE_USER_SRC' , CACHE_USER | CACHE_SOURCE); |
|
| 229 | -define('CACHE_USER_DST' , CACHE_USER | CACHE_DESTINATION); |
|
| 228 | +define('CACHE_USER_SRC', CACHE_USER | CACHE_SOURCE); |
|
| 229 | +define('CACHE_USER_DST', CACHE_USER | CACHE_DESTINATION); |
|
| 230 | 230 | define('CACHE_PLANET_SRC', CACHE_PLANET | CACHE_SOURCE); |
| 231 | 231 | define('CACHE_PLANET_DST', CACHE_PLANET | CACHE_DESTINATION); |
| 232 | -define('CACHE_COMBAT' , CACHE_FLEET | CACHE_PLANET | CACHE_USER | CACHE_SOURCE | CACHE_DESTINATION); |
|
| 232 | +define('CACHE_COMBAT', CACHE_FLEET | CACHE_PLANET | CACHE_USER | CACHE_SOURCE | CACHE_DESTINATION); |
|
| 233 | 233 | |
| 234 | -define('CACHE_ALL' , CACHE_FLEET | CACHE_PLANET | CACHE_USER | CACHE_SOURCE | CACHE_DESTINATION | CACHE_EVENT); |
|
| 234 | +define('CACHE_ALL', CACHE_FLEET | CACHE_PLANET | CACHE_USER | CACHE_SOURCE | CACHE_DESTINATION | CACHE_EVENT); |
|
| 235 | 235 | |
| 236 | -define('CACHE_NONE' , CACHE_NOTHING); // Alias for me |
|
| 236 | +define('CACHE_NONE', CACHE_NOTHING); // Alias for me |
|
| 237 | 237 | |
| 238 | 238 | // *** Event types |
| 239 | 239 | define('EVENT_FLEET_NONE', 0); |
| 240 | 240 | define('EVENT_FLEET_ARRIVE', 1); |
| 241 | -define('EVENT_FLEET_STAY' , 2); |
|
| 241 | +define('EVENT_FLEET_STAY', 2); |
|
| 242 | 242 | define('EVENT_FLEET_RETURN', 3); |
| 243 | 243 | |
| 244 | 244 | // *** Constants for changing DM |
@@ -296,11 +296,11 @@ discard block |
||
| 296 | 296 | |
| 297 | 297 | |
| 298 | 298 | // Operation error status HARDCODE! |
| 299 | -define('ERR_NONE' , 0); // No error |
|
| 300 | -define('ERR_WARNING' , 1); // There is warning - something altering normal operation process |
|
| 301 | -define('ERR_ERROR' , 2); // There is error - something permits operation from process |
|
| 302 | -define('ERR_HACK' , 4); // Operation is qualified as hack attempt |
|
| 303 | -define('ERR_NOTICE' , 8); // There is notice - nothing really critical but operator should know |
|
| 299 | +define('ERR_NONE', 0); // No error |
|
| 300 | +define('ERR_WARNING', 1); // There is warning - something altering normal operation process |
|
| 301 | +define('ERR_ERROR', 2); // There is error - something permits operation from process |
|
| 302 | +define('ERR_HACK', 4); // Operation is qualified as hack attempt |
|
| 303 | +define('ERR_NOTICE', 8); // There is notice - nothing really critical but operator should know |
|
| 304 | 304 | // New GLOBAL operation results |
| 305 | 305 | //define('RESULT_DEFAULT' , 0); // Default result - all went OK or result really doesn't matter |
| 306 | 306 | //define('RESULT_WARNING' , 1); |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | define('SN_PAYMENT_REQUEST_OK', 0); |
| 321 | 321 | define('SN_PAYMENT_REQUEST_ERROR_UNIT_AMOUNT', 1); |
| 322 | 322 | define('SN_PAYMENT_REQUEST_ERROR_PAYLINK_UNSUPPORTED', 2); |
| 323 | -define('SN_PAYMENT_REQUEST_IP_WRONG', 3); // Неправильный IP входящей системы - обычно хак |
|
| 323 | +define('SN_PAYMENT_REQUEST_IP_WRONG', 3); // Неправильный IP входящей системы - обычно хак |
|
| 324 | 324 | define('SN_PAYMENT_REQUEST_COMMAND_UNSUPPORTED', 4); // Неподдерживаемая команда - обычно хак |
| 325 | 325 | define('SN_PAYMENT_REQUEST_SIGNATURE_INVALID', 5); // Неправильная подпись или не сошлась контрольная сумма - обычно хак |
| 326 | 326 | define('SN_MODULE_DISABLED', 6); // Модуль отключен // УНИВЕРСАЛЬНЫЙ ОТВЕТ! |
@@ -596,16 +596,16 @@ discard block |
||
| 596 | 596 | //define('F_DEVICE_ID', 'F_DEVICE_ID'); |
| 597 | 597 | //define('F_DEVICE_CYPHER', 'F_DEVICE_CYPHER'); |
| 598 | 598 | |
| 599 | -define('F_PROVIDER_ID', 'F_PROVIDER_ID'); |
|
| 599 | +define('F_PROVIDER_ID', 'F_PROVIDER_ID'); |
|
| 600 | 600 | // define('F_PROVIDER_LIST', 'F_PROVIDER_LIST'); |
| 601 | 601 | |
| 602 | 602 | define('F_IMPERSONATE_STATUS', 'F_IMPERSONATE_STATUS'); |
| 603 | 603 | define('F_IMPERSONATE_OPERATOR', 'F_IMPERSONATE_OPERATOR'); |
| 604 | 604 | |
| 605 | -define('F_LOGIN_STATUS', 'F_LOGIN_STATUS'); |
|
| 605 | +define('F_LOGIN_STATUS', 'F_LOGIN_STATUS'); |
|
| 606 | 606 | define('F_LOGIN_MESSAGE', 'F_LOGIN_MESSAGE'); |
| 607 | 607 | |
| 608 | -define('F_PLAYER_REGISTER_STATUS', 'F_PLAYER_REGISTER_STATUS'); |
|
| 608 | +define('F_PLAYER_REGISTER_STATUS', 'F_PLAYER_REGISTER_STATUS'); |
|
| 609 | 609 | define('F_PLAYER_REGISTER_MESSAGE', 'F_PLAYER_REGISTER_MESSAGE'); |
| 610 | 610 | |
| 611 | 611 | define('F_USER_ID', 'F_USER_ID'); |
@@ -649,78 +649,78 @@ discard block |
||
| 649 | 649 | |
| 650 | 650 | |
| 651 | 651 | // Option groups |
| 652 | -define('OPT_ALL', 0); |
|
| 653 | -define('OPT_MESSAGE', 1); |
|
| 652 | +define('OPT_ALL', 0); |
|
| 653 | +define('OPT_MESSAGE', 1); |
|
| 654 | 654 | define('OPT_UNIVERSE', 2); |
| 655 | 655 | define('OPT_INTERFACE', 3); |
| 656 | 656 | |
| 657 | 657 | // Message classes |
| 658 | -define('MSG_TYPE_OUTBOX' , -1); |
|
| 659 | -define('MSG_TYPE_SPY' , 0); |
|
| 660 | -define('MSG_TYPE_PLAYER' , 1); |
|
| 661 | -define('MSG_TYPE_ALLIANCE' , 2); |
|
| 662 | -define('MSG_TYPE_COMBAT' , 3); |
|
| 663 | -define('MSG_TYPE_RECYCLE' , 4); |
|
| 664 | -define('MSG_TYPE_TRANSPORT', 5); |
|
| 665 | -define('MSG_TYPE_ADMIN' , 6); |
|
| 666 | -define('MSG_TYPE_EXPLORE' , 15); |
|
| 667 | -define('MSG_TYPE_QUE' , 99); |
|
| 668 | -define('MSG_TYPE_NEW' , 100); |
|
| 658 | +define('MSG_TYPE_OUTBOX', -1); |
|
| 659 | +define('MSG_TYPE_SPY', 0); |
|
| 660 | +define('MSG_TYPE_PLAYER', 1); |
|
| 661 | +define('MSG_TYPE_ALLIANCE', 2); |
|
| 662 | +define('MSG_TYPE_COMBAT', 3); |
|
| 663 | +define('MSG_TYPE_RECYCLE', 4); |
|
| 664 | +define('MSG_TYPE_TRANSPORT', 5); |
|
| 665 | +define('MSG_TYPE_ADMIN', 6); |
|
| 666 | +define('MSG_TYPE_EXPLORE', 15); |
|
| 667 | +define('MSG_TYPE_QUE', 99); |
|
| 668 | +define('MSG_TYPE_NEW', 100); |
|
| 669 | 669 | |
| 670 | 670 | // Attack verification statuses |
| 671 | -define('ATTACK_ALLOWED' , 0); |
|
| 672 | -define('ATTACK_NO_TARGET' , 1); |
|
| 673 | -define('ATTACK_OWN' , 2); |
|
| 674 | -define('ATTACK_WRONG_MISSION' , 3); |
|
| 675 | -define('ATTACK_NO_ALLY_DEPOSIT' , 4); |
|
| 676 | -define('ATTACK_NO_DEBRIS' , 5); |
|
| 677 | -define('ATTACK_VACATION' , 6); |
|
| 678 | -define('ATTACK_SAME_IP' , 7); |
|
| 679 | -define('ATTACK_BUFFING' , 8); |
|
| 680 | -define('ATTACK_ADMIN' , 9); |
|
| 681 | -define('ATTACK_NOOB' , 10); |
|
| 682 | -define('ATTACK_OWN_VACATION' , 11); |
|
| 683 | -define('ATTACK_NO_SILO' , 12); |
|
| 684 | -define('ATTACK_NO_MISSILE' , 13); |
|
| 685 | -define('ATTACK_NO_FLEET' , 14); |
|
| 686 | -define('ATTACK_NO_SLOTS' , 15); |
|
| 687 | -define('ATTACK_NO_SHIPS' , 16); |
|
| 688 | -define('ATTACK_NO_RECYCLERS' , 17); |
|
| 689 | -define('ATTACK_NO_SPIES' , 18); |
|
| 690 | -define('ATTACK_NO_COLONIZER' , 19); |
|
| 691 | -define('ATTACK_MISSILE_TOO_FAR' , 20); |
|
| 692 | -define('ATTACK_WRONG_STRUCTURE' , 21); |
|
| 693 | -define('ATTACK_NO_FUEL' , 22); |
|
| 694 | -define('ATTACK_NO_RESOURCES' , 23); |
|
| 695 | -define('ATTACK_NO_ACS' , 24); |
|
| 696 | -define('ATTACK_ACS_MISSTARGET' , 25); |
|
| 697 | -define('ATTACK_WRONG_SPEED' , 26); |
|
| 698 | -define('ATTACK_ACS_TOO_LATE' , 27); |
|
| 699 | -define('ATTACK_BASHING' , 28); |
|
| 700 | -define('ATTACK_BASHING_WAR_DELAY' , 29); |
|
| 701 | -define('ATTACK_ACS_WRONG_TARGET' , 30); |
|
| 702 | -define('ATTACK_SAME' , 31); |
|
| 671 | +define('ATTACK_ALLOWED', 0); |
|
| 672 | +define('ATTACK_NO_TARGET', 1); |
|
| 673 | +define('ATTACK_OWN', 2); |
|
| 674 | +define('ATTACK_WRONG_MISSION', 3); |
|
| 675 | +define('ATTACK_NO_ALLY_DEPOSIT', 4); |
|
| 676 | +define('ATTACK_NO_DEBRIS', 5); |
|
| 677 | +define('ATTACK_VACATION', 6); |
|
| 678 | +define('ATTACK_SAME_IP', 7); |
|
| 679 | +define('ATTACK_BUFFING', 8); |
|
| 680 | +define('ATTACK_ADMIN', 9); |
|
| 681 | +define('ATTACK_NOOB', 10); |
|
| 682 | +define('ATTACK_OWN_VACATION', 11); |
|
| 683 | +define('ATTACK_NO_SILO', 12); |
|
| 684 | +define('ATTACK_NO_MISSILE', 13); |
|
| 685 | +define('ATTACK_NO_FLEET', 14); |
|
| 686 | +define('ATTACK_NO_SLOTS', 15); |
|
| 687 | +define('ATTACK_NO_SHIPS', 16); |
|
| 688 | +define('ATTACK_NO_RECYCLERS', 17); |
|
| 689 | +define('ATTACK_NO_SPIES', 18); |
|
| 690 | +define('ATTACK_NO_COLONIZER', 19); |
|
| 691 | +define('ATTACK_MISSILE_TOO_FAR', 20); |
|
| 692 | +define('ATTACK_WRONG_STRUCTURE', 21); |
|
| 693 | +define('ATTACK_NO_FUEL', 22); |
|
| 694 | +define('ATTACK_NO_RESOURCES', 23); |
|
| 695 | +define('ATTACK_NO_ACS', 24); |
|
| 696 | +define('ATTACK_ACS_MISSTARGET', 25); |
|
| 697 | +define('ATTACK_WRONG_SPEED', 26); |
|
| 698 | +define('ATTACK_ACS_TOO_LATE', 27); |
|
| 699 | +define('ATTACK_BASHING', 28); |
|
| 700 | +define('ATTACK_BASHING_WAR_DELAY', 29); |
|
| 701 | +define('ATTACK_ACS_WRONG_TARGET', 30); |
|
| 702 | +define('ATTACK_SAME', 31); |
|
| 703 | 703 | define('ATTACK_RESOURCE_FORBIDDEN', 32); |
| 704 | -define('ATTACK_TRANSPORT_EMPTY' , 33); |
|
| 705 | -define('ATTACK_SPIES_LONLY' , 34); |
|
| 706 | -define('ATTACK_TOO_FAR' , 35); |
|
| 707 | -define('ATTACK_OVERLOADED' , 36); |
|
| 708 | -define('ATTACK_MISSION_ABSENT' , 37); |
|
| 709 | -define('ATTACK_WRONG_UNIT' , 38); |
|
| 710 | -define('ATTACK_ZERO_SPEED' , 39); |
|
| 711 | -define('ATTACK_SHIP_COUNT_WRONG' , 40); |
|
| 704 | +define('ATTACK_TRANSPORT_EMPTY', 33); |
|
| 705 | +define('ATTACK_SPIES_LONLY', 34); |
|
| 706 | +define('ATTACK_TOO_FAR', 35); |
|
| 707 | +define('ATTACK_OVERLOADED', 36); |
|
| 708 | +define('ATTACK_MISSION_ABSENT', 37); |
|
| 709 | +define('ATTACK_WRONG_UNIT', 38); |
|
| 710 | +define('ATTACK_ZERO_SPEED', 39); |
|
| 711 | +define('ATTACK_SHIP_COUNT_WRONG', 40); |
|
| 712 | 712 | define('ATTACK_RESOURCE_COUNT_WRONG', 41); |
| 713 | 713 | define('ATTACK_MORATORIUM', 42); |
| 714 | 714 | define('ATTACK_CHILD_PROTECTION', 43); |
| 715 | 715 | |
| 716 | 716 | |
| 717 | 717 | // *** Races - Homeworlds |
| 718 | -define('RACE_NONE' , 0); |
|
| 719 | -define('RACE_EARTH' , 1); |
|
| 720 | -define('RACE_MOON' , 2); |
|
| 721 | -define('RACE_MERCURY' , 3); |
|
| 722 | -define('RACE_VENUS' , 4); |
|
| 723 | -define('RACE_MARS' , 5); |
|
| 718 | +define('RACE_NONE', 0); |
|
| 719 | +define('RACE_EARTH', 1); |
|
| 720 | +define('RACE_MOON', 2); |
|
| 721 | +define('RACE_MERCURY', 3); |
|
| 722 | +define('RACE_VENUS', 4); |
|
| 723 | +define('RACE_MARS', 5); |
|
| 724 | 724 | define('RACE_ASTEROID', 6); |
| 725 | 725 | // define('MARKET_INFO' , 7); |
| 726 | 726 | |
@@ -728,115 +728,115 @@ discard block |
||
| 728 | 728 | |
| 729 | 729 | // *** Market variables |
| 730 | 730 | // === Market blocks |
| 731 | -define('MARKET_ENTRY' , 0); |
|
| 732 | -define('MARKET_RESOURCES' , 1); |
|
| 733 | -define('MARKET_SCRAPPER' , 2); |
|
| 734 | -define('MARKET_STOCKMAN' , 3); |
|
| 735 | -define('MARKET_EXCHANGE' , 4); |
|
| 736 | -define('MARKET_BANKER' , 5); |
|
| 737 | -define('MARKET_PAWNSHOP' , 6); |
|
| 738 | -define('MARKET_INFO' , 7); |
|
| 731 | +define('MARKET_ENTRY', 0); |
|
| 732 | +define('MARKET_RESOURCES', 1); |
|
| 733 | +define('MARKET_SCRAPPER', 2); |
|
| 734 | +define('MARKET_STOCKMAN', 3); |
|
| 735 | +define('MARKET_EXCHANGE', 4); |
|
| 736 | +define('MARKET_BANKER', 5); |
|
| 737 | +define('MARKET_PAWNSHOP', 6); |
|
| 738 | +define('MARKET_INFO', 7); |
|
| 739 | 739 | |
| 740 | 740 | // === Market error statuses |
| 741 | -define('MARKET_NOTHING' , 0); |
|
| 742 | -define('MARKET_DEAL' , 1); |
|
| 743 | -define('MARKET_DEAL_TRADE' , 2); |
|
| 744 | -define('MARKET_NO_DM' , 3); |
|
| 745 | -define('MARKET_NO_RESOURCES' , 4); |
|
| 746 | -define('MARKET_ZERO_DEAL' , 5); |
|
| 747 | -define('MARKET_NO_SHIPS' , 6); |
|
| 748 | -define('MARKET_NOT_A_SHIP' , 7); |
|
| 749 | -define('MARKET_NO_STOCK' , 8); |
|
| 750 | -define('MARKET_ZERO_RES_STOCK' , 9); |
|
| 751 | -define('MARKET_NEGATIVE_SHIPS' , 10); |
|
| 752 | - |
|
| 753 | -define('MARKET_INFO_PLAYER' , 12); |
|
| 754 | -define('MARKET_INFO_WRONG' , 11); |
|
| 741 | +define('MARKET_NOTHING', 0); |
|
| 742 | +define('MARKET_DEAL', 1); |
|
| 743 | +define('MARKET_DEAL_TRADE', 2); |
|
| 744 | +define('MARKET_NO_DM', 3); |
|
| 745 | +define('MARKET_NO_RESOURCES', 4); |
|
| 746 | +define('MARKET_ZERO_DEAL', 5); |
|
| 747 | +define('MARKET_NO_SHIPS', 6); |
|
| 748 | +define('MARKET_NOT_A_SHIP', 7); |
|
| 749 | +define('MARKET_NO_STOCK', 8); |
|
| 750 | +define('MARKET_ZERO_RES_STOCK', 9); |
|
| 751 | +define('MARKET_NEGATIVE_SHIPS', 10); |
|
| 752 | + |
|
| 753 | +define('MARKET_INFO_PLAYER', 12); |
|
| 754 | +define('MARKET_INFO_WRONG', 11); |
|
| 755 | 755 | define('MARKET_INFO_PLAYER_NOT_FOUND', 13); |
| 756 | -define('MARKET_INFO_PLAYER_WRONG' , 14); |
|
| 757 | -define('MARKET_INFO_PLAYER_SAME' , 15); |
|
| 756 | +define('MARKET_INFO_PLAYER_WRONG', 14); |
|
| 757 | +define('MARKET_INFO_PLAYER_SAME', 15); |
|
| 758 | 758 | |
| 759 | 759 | |
| 760 | 760 | |
| 761 | 761 | |
| 762 | 762 | // *** Mercenary/talent bonus types |
| 763 | -define('BONUS_NONE' , 0); // No bonus |
|
| 764 | -define('BONUS_PERCENT' , 1); // Percent on base value |
|
| 765 | -define('BONUS_ADD' , 2); // Add |
|
| 766 | -define('BONUS_ABILITY' , 3); // Some ability |
|
| 767 | -define('BONUS_MULTIPLY', 4); // Multiply by value |
|
| 763 | +define('BONUS_NONE', 0); // No bonus |
|
| 764 | +define('BONUS_PERCENT', 1); // Percent on base value |
|
| 765 | +define('BONUS_ADD', 2); // Add |
|
| 766 | +define('BONUS_ABILITY', 3); // Some ability |
|
| 767 | +define('BONUS_MULTIPLY', 4); // Multiply by value |
|
| 768 | 768 | //define('BONUS_PERCENT_CUMULATIVE' , 5); // Cumulative percent on base value |
| 769 | 769 | //define('BONUS_PERCENT_DEGRADED' , 6); // Bonus amount degraded with increase as pow(bonus, level) (?) |
| 770 | 770 | //define('BONUS_SPEED', 7); // Speed bonus |
| 771 | 771 | |
| 772 | 772 | // *** Action constant (build should be replaced with ACTION) |
| 773 | -define('BUILD_CREATE' , 1); |
|
| 773 | +define('BUILD_CREATE', 1); |
|
| 774 | 774 | define('BUILD_DESTROY', -1); |
| 775 | 775 | define('BUILD_AUTOCONVERT', 2); |
| 776 | 776 | |
| 777 | -define('ACTION_SELL' , -1); |
|
| 778 | -define('ACTION_NOTHING' , 0); |
|
| 779 | -define('ACTION_BUY' , 1); |
|
| 780 | -define('ACTION_USE' , 2); |
|
| 781 | -define('ACTION_DELETE' , 3); |
|
| 777 | +define('ACTION_SELL', -1); |
|
| 778 | +define('ACTION_NOTHING', 0); |
|
| 779 | +define('ACTION_BUY', 1); |
|
| 780 | +define('ACTION_USE', 2); |
|
| 781 | +define('ACTION_DELETE', 3); |
|
| 782 | 782 | |
| 783 | 783 | // *** Check unit availability codes |
| 784 | -define('BUILD_ALLOWED' , 0); // HARDCODED! DO NOT CHANGE! |
|
| 784 | +define('BUILD_ALLOWED', 0); // HARDCODED! DO NOT CHANGE! |
|
| 785 | 785 | define('BUILD_REQUIRE_NOT_MEET', 1); |
| 786 | -define('BUILD_AMOUNT_WRONG' , 2); |
|
| 787 | -define('BUILD_QUE_WRONG' , 3); |
|
| 788 | -define('BUILD_QUE_UNIT_WRONG' , 4); |
|
| 789 | -define('BUILD_INDESTRUCTABLE' , 5); |
|
| 790 | -define('BUILD_NO_RESOURCES' , 6); |
|
| 791 | -define('BUILD_NO_UNITS' , 7); |
|
| 792 | -define('BUILD_UNIT_BUSY' , 8); |
|
| 793 | -define('BUILD_QUE_FULL' , 9); |
|
| 794 | -define('BUILD_SILO_FULL' ,10); |
|
| 795 | -define('BUILD_MAX_REACHED' ,11); |
|
| 796 | -define('BUILD_SECTORS_NONE' ,12); |
|
| 786 | +define('BUILD_AMOUNT_WRONG', 2); |
|
| 787 | +define('BUILD_QUE_WRONG', 3); |
|
| 788 | +define('BUILD_QUE_UNIT_WRONG', 4); |
|
| 789 | +define('BUILD_INDESTRUCTABLE', 5); |
|
| 790 | +define('BUILD_NO_RESOURCES', 6); |
|
| 791 | +define('BUILD_NO_UNITS', 7); |
|
| 792 | +define('BUILD_UNIT_BUSY', 8); |
|
| 793 | +define('BUILD_QUE_FULL', 9); |
|
| 794 | +define('BUILD_SILO_FULL', 10); |
|
| 795 | +define('BUILD_MAX_REACHED', 11); |
|
| 796 | +define('BUILD_SECTORS_NONE', 12); |
|
| 797 | 797 | define('BUILD_AUTOCONVERT_AVAILABLE', 13); |
| 798 | 798 | |
| 799 | 799 | |
| 800 | 800 | // *** Que types |
| 801 | 801 | define('QUE_STRUCTURES', 1); |
| 802 | -define('QUE_HANGAR' , 4); |
|
| 803 | -define('QUE_RESEARCH' , 7); |
|
| 804 | -define('QUE_MERCENARY' , 600); // UNIT_MERCENARIES |
|
| 802 | +define('QUE_HANGAR', 4); |
|
| 803 | +define('QUE_RESEARCH', 7); |
|
| 804 | +define('QUE_MERCENARY', 600); // UNIT_MERCENARIES |
|
| 805 | 805 | // *** Subque types |
| 806 | -define('SUBQUE_PLANET' , 1); |
|
| 807 | -define('SUBQUE_MOON' , 3); |
|
| 808 | -define('SUBQUE_FLEET' , 4); |
|
| 809 | -define('SUBQUE_DEFENSE' , 6); |
|
| 806 | +define('SUBQUE_PLANET', 1); |
|
| 807 | +define('SUBQUE_MOON', 3); |
|
| 808 | +define('SUBQUE_FLEET', 4); |
|
| 809 | +define('SUBQUE_DEFENSE', 6); |
|
| 810 | 810 | define('SUBQUE_RESEARCH', 7); |
| 811 | 811 | |
| 812 | 812 | // *** Que items |
| 813 | -define('QI_UNIT_ID' , 0); |
|
| 814 | -define('QI_AMOUNT' , 1); |
|
| 815 | -define('QI_TIME' , 2); |
|
| 816 | -define('QI_MODE' , 3); |
|
| 817 | -define('QI_QUE_ID' , 4); |
|
| 818 | -define('QI_QUE_TYPE' , 4); |
|
| 819 | -define('QI_PLANET_ID' , 5); |
|
| 813 | +define('QI_UNIT_ID', 0); |
|
| 814 | +define('QI_AMOUNT', 1); |
|
| 815 | +define('QI_TIME', 2); |
|
| 816 | +define('QI_MODE', 3); |
|
| 817 | +define('QI_QUE_ID', 4); |
|
| 818 | +define('QI_QUE_TYPE', 4); |
|
| 819 | +define('QI_PLANET_ID', 5); |
|
| 820 | 820 | |
| 821 | 821 | |
| 822 | 822 | // *** Units |
| 823 | 823 | |
| 824 | 824 | // *** Sort options |
| 825 | -define('SORT_ASCENDING' , 0); |
|
| 825 | +define('SORT_ASCENDING', 0); |
|
| 826 | 826 | define('SORT_DESCENDING', 1); |
| 827 | 827 | |
| 828 | -define('SORT_ID' , 0); |
|
| 829 | -define('SORT_LOCATION' , 1); |
|
| 830 | -define('SORT_NAME' , 2); |
|
| 831 | -define('SORT_SIZE' , 3); |
|
| 832 | -define('SORT_EMAIL' , 4); |
|
| 833 | -define('SORT_IP' , 5); |
|
| 828 | +define('SORT_ID', 0); |
|
| 829 | +define('SORT_LOCATION', 1); |
|
| 830 | +define('SORT_NAME', 2); |
|
| 831 | +define('SORT_SIZE', 3); |
|
| 832 | +define('SORT_EMAIL', 4); |
|
| 833 | +define('SORT_IP', 5); |
|
| 834 | 834 | define('SORT_TIME_REGISTERED', 6); |
| 835 | 835 | define('SORT_TIME_LAST_VISIT', 7); |
| 836 | -define('SORT_TIME_BAN_UNTIL' , 8); |
|
| 837 | -define('SORT_REFERRAL_COUNT' , 9); |
|
| 838 | -define('SORT_REFERRAL_DM' , 10); |
|
| 839 | -define('SORT_VACATION' , 11); |
|
| 836 | +define('SORT_TIME_BAN_UNTIL', 8); |
|
| 837 | +define('SORT_REFERRAL_COUNT', 9); |
|
| 838 | +define('SORT_REFERRAL_DM', 10); |
|
| 839 | +define('SORT_VACATION', 11); |
|
| 840 | 840 | |
| 841 | 841 | |
| 842 | 842 | define('HULL_SIZE_TINY', 1); |
@@ -986,10 +986,10 @@ discard block |
||
| 986 | 986 | |
| 987 | 987 | // === Artifacts |
| 988 | 988 | define('UNIT_ARTIFACTS', 1000); |
| 989 | -define('ART_LHC', 1001); // Additional moon chance |
|
| 990 | -define('ART_RCD_SMALL', 1002); // Rapid Colony Deployment - Set of buildings up to 10th level - 10/14/ 3/0 - 405 DM |
|
| 991 | -define('ART_RCD_MEDIUM', 1003); // Rapid Colony Deployment - Set of buildings up to 15th level - 15/20/ 8/0 - 4704 DM |
|
| 992 | -define('ART_RCD_LARGE', 1004); // Rapid Colony Deployment - Set of buildings up to 20th level - 20/25/10/1 - 39790 DM |
|
| 989 | +define('ART_LHC', 1001); // Additional moon chance |
|
| 990 | +define('ART_RCD_SMALL', 1002); // Rapid Colony Deployment - Set of buildings up to 10th level - 10/14/ 3/0 - 405 DM |
|
| 991 | +define('ART_RCD_MEDIUM', 1003); // Rapid Colony Deployment - Set of buildings up to 15th level - 15/20/ 8/0 - 4704 DM |
|
| 992 | +define('ART_RCD_LARGE', 1004); // Rapid Colony Deployment - Set of buildings up to 20th level - 20/25/10/1 - 39790 DM |
|
| 993 | 993 | define('ART_HEURISTIC_CHIP', 1005); // Speed up research |
| 994 | 994 | define('ART_NANO_BUILDER', 1006); // Speed up building |
| 995 | 995 | define('ART_NANO_CONSTRUCTOR', 1007); // RESERVED Speed up hangar constructions |
@@ -1063,21 +1063,21 @@ discard block |
||
| 1063 | 1063 | define('UNIT_AWARD_MEDAL_BLITZ_R0_PLACE1', 2201); // Блиц-сервер, участник 0-го раунда, 1-е место |
| 1064 | 1064 | define('UNIT_AWARD_MEDAL_BLITZ_R0_PLACE2', 2202); // Блиц-сервер, участник 0-го раунда, 2-е место |
| 1065 | 1065 | define('UNIT_AWARD_MEDAL_BLITZ_R0_PLACE3', 2203); // Блиц-сервер, участник 0-го раунда, 3-е место |
| 1066 | -define('UNIT_AWARD_MEDAL_2016_WOMEN_DAY_BEST', 2204); // Медаль Лучшему Кавалеру за максимум потраченной ММ/максимум одаренных женщин Женщине от Мужчины во время ивента 8 марта 2016 года |
|
| 1067 | -define('UNIT_AWARD_MEDAL_2017_WOMEN_DAY_BEST', 2205); // Медаль Лучшему Кавалеру за максимум потраченной ММ/максимум одаренных женщин Женщине от Мужчины во время ивента 8 марта 2017 года |
|
| 1068 | -define('UNIT_AWARD_MEDAL_2017_WOMEN_DAY_QUEEN', 2206); // Медаль Королевы Весны за максимум полученной ММ/максимум полученных подарков от Мужчины во время ивента 8 марта 2017 года |
|
| 1066 | +define('UNIT_AWARD_MEDAL_2016_WOMEN_DAY_BEST', 2204); // Медаль Лучшему Кавалеру за максимум потраченной ММ/максимум одаренных женщин Женщине от Мужчины во время ивента 8 марта 2016 года |
|
| 1067 | +define('UNIT_AWARD_MEDAL_2017_WOMEN_DAY_BEST', 2205); // Медаль Лучшему Кавалеру за максимум потраченной ММ/максимум одаренных женщин Женщине от Мужчины во время ивента 8 марта 2017 года |
|
| 1068 | +define('UNIT_AWARD_MEDAL_2017_WOMEN_DAY_QUEEN', 2206); // Медаль Королевы Весны за максимум полученной ММ/максимум полученных подарков от Мужчины во время ивента 8 марта 2017 года |
|
| 1069 | 1069 | |
| 1070 | 1070 | define('UNIT_AWARD_MEMORY', 2300); // Памятные знаки за существование и участие - например "4 года в игре". "Был онлайн в новогоднюю ночь 2013". итд |
| 1071 | -define('UNIT_AWARD_MEMORY_IMMORTAL', 2301); // Бессмертный |
|
| 1072 | -define('UNIT_AWARD_MEMORY_2015_WOMEN_DAY', 2302); // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2015 года |
|
| 1071 | +define('UNIT_AWARD_MEMORY_IMMORTAL', 2301); // Бессмертный |
|
| 1072 | +define('UNIT_AWARD_MEMORY_2015_WOMEN_DAY', 2302); // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2015 года |
|
| 1073 | 1073 | define('UNIT_AWARD_MEMORY_BLITZ_R0', 2303); // Блиц-сервер, участник 0-го раунда |
| 1074 | 1074 | define('UNIT_AWARD_MEMORY_SUPER_BORN_2015_SIMPLE', 2304); // День Рождения СН |
| 1075 | 1075 | define('UNIT_AWARD_MEMORY_SUPER_BORN_2015_BRONZE', 2305); // День Рождения СН |
| 1076 | 1076 | define('UNIT_AWARD_MEMORY_SUPER_BORN_2015_SILVER', 2306); // День Рождения СН |
| 1077 | 1077 | define('UNIT_AWARD_MEMORY_SUPER_BORN_2015_GOLD', 2307); // День Рождения СН |
| 1078 | 1078 | define('UNIT_AWARD_MEMORY_SUPER_BORN_2015_PLATINUM', 2308); // День Рождения СН |
| 1079 | -define('UNIT_AWARD_MEMORY_2016_WOMEN_DAY', 2309); // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2016 года |
|
| 1080 | -define('UNIT_AWARD_MEMORY_2017_WOMEN_DAY', 2310); // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2017 года |
|
| 1079 | +define('UNIT_AWARD_MEMORY_2016_WOMEN_DAY', 2309); // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2016 года |
|
| 1080 | +define('UNIT_AWARD_MEMORY_2017_WOMEN_DAY', 2310); // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2017 года |
|
| 1081 | 1081 | define('UNIT_AWARD_MEMORY_SUPER_BORN_2017_SIMPLE', 2311); // День Рождения СН - 2017 |
| 1082 | 1082 | define('UNIT_AWARD_MEMORY_SUPER_BORN_2017_BRONZE', 2312); // День Рождения СН - 2017 |
| 1083 | 1083 | define('UNIT_AWARD_MEMORY_SUPER_BORN_2017_SILVER', 2313); // День Рождения СН - 2017 |
@@ -1099,7 +1099,7 @@ discard block |
||
| 1099 | 1099 | define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_SIMPLE', 2326); // СуперНовый Год - 2018 |
| 1100 | 1100 | define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_BRONZE', 2327); // СуперНовый Год - 2018 |
| 1101 | 1101 | define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_SILVER', 2328); // СуперНовый Год - 2018 |
| 1102 | -define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_GOLD', 2329); // СуперНовый Год - 2018 |
|
| 1102 | +define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_GOLD', 2329); // СуперНовый Год - 2018 |
|
| 1103 | 1103 | define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_PLATINUM', 2330); // СуперНовый Год - 2018 |
| 1104 | 1104 | define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_DIAMOND', 2331); // СуперНовый Год - 2018 |
| 1105 | 1105 | |
@@ -1233,7 +1233,7 @@ discard block |
||
| 1233 | 1233 | define('UNIT_FLEET_PLANET_SPY', 'UNIT_FLEET_PLANET_SPY'); |
| 1234 | 1234 | |
| 1235 | 1235 | |
| 1236 | -define('GROUP_PART', 800000); |
|
| 1236 | +define('GROUP_PART', 800000); |
|
| 1237 | 1237 | // Зарезервировано для запчастей: 800.001 - 899.999 |
| 1238 | 1238 | // define('GROUP_PART_HULL', 801000); // Корпуса - 1000 штук |
| 1239 | 1239 | // define('GROUP_PART_ARMOR', 802000); // Броня - 1000 штук |
@@ -1555,32 +1555,32 @@ discard block |
||
| 1555 | 1555 | |
| 1556 | 1556 | |
| 1557 | 1557 | // define('NICK_ID', -1); |
| 1558 | -define('NICK_HTML', 0); |
|
| 1559 | - |
|
| 1560 | -define('NICK_FIRST', 1); |
|
| 1561 | -define('NICK_RACE', 1000); |
|
| 1562 | -define('NICK_GENDER', 2000); |
|
| 1563 | -define('NICK_AWARD', 3000); |
|
| 1564 | -define('NICK_VACATION', 3500); |
|
| 1565 | -define('NICK_BIRTHSDAY', 4000); |
|
| 1566 | -define('NICK_PREMIUM', 5000); |
|
| 1567 | -define('NICK_AUTH_LEVEL', 6000); |
|
| 1568 | - |
|
| 1569 | -define('NICK_HIGHLIGHT', 6300); |
|
| 1570 | -define('NICK_CLASS', 6450); |
|
| 1571 | - |
|
| 1572 | -define('NICK_NICK_CLASS', 6600); |
|
| 1573 | -define('NICK_NICK', 7000); |
|
| 1558 | +define('NICK_HTML', 0); |
|
| 1559 | + |
|
| 1560 | +define('NICK_FIRST', 1); |
|
| 1561 | +define('NICK_RACE', 1000); |
|
| 1562 | +define('NICK_GENDER', 2000); |
|
| 1563 | +define('NICK_AWARD', 3000); |
|
| 1564 | +define('NICK_VACATION', 3500); |
|
| 1565 | +define('NICK_BIRTHSDAY', 4000); |
|
| 1566 | +define('NICK_PREMIUM', 5000); |
|
| 1567 | +define('NICK_AUTH_LEVEL', 6000); |
|
| 1568 | + |
|
| 1569 | +define('NICK_HIGHLIGHT', 6300); |
|
| 1570 | +define('NICK_CLASS', 6450); |
|
| 1571 | + |
|
| 1572 | +define('NICK_NICK_CLASS', 6600); |
|
| 1573 | +define('NICK_NICK', 7000); |
|
| 1574 | 1574 | define('NICK_NICK_CLASS_END', 7300); |
| 1575 | 1575 | |
| 1576 | -define('NICK_ALLY_CLASS', 7600); |
|
| 1577 | -define('NICK_ALLY', 8000); |
|
| 1576 | +define('NICK_ALLY_CLASS', 7600); |
|
| 1577 | +define('NICK_ALLY', 8000); |
|
| 1578 | 1578 | define('NICK_ALLY_CLASS_END', 8300); |
| 1579 | 1579 | |
| 1580 | -define('NICK_CLASS_END', 8450); |
|
| 1581 | -define('NICK_HIGHLIGHT_END', 8600); |
|
| 1580 | +define('NICK_CLASS_END', 8450); |
|
| 1581 | +define('NICK_HIGHLIGHT_END', 8600); |
|
| 1582 | 1582 | |
| 1583 | -define('NICK_LAST', 9999); |
|
| 1583 | +define('NICK_LAST', 9999); |
|
| 1584 | 1584 | |
| 1585 | 1585 | // Настройки игрока |
| 1586 | 1586 | define('PLAYER_OPTION_MENU_SORT', 1); |
@@ -1682,8 +1682,8 @@ discard block |
||
| 1682 | 1682 | define('LOG_ONLIINE_AGGREGATE_PERIOD_MINUTE_10', 1); |
| 1683 | 1683 | |
| 1684 | 1684 | define('BLITZ_REGISTER_DISABLED', 0); |
| 1685 | -define('BLITZ_REGISTER_OPEN' , 1); |
|
| 1686 | -define('BLITZ_REGISTER_CLOSED' , 2); |
|
| 1685 | +define('BLITZ_REGISTER_OPEN', 1); |
|
| 1686 | +define('BLITZ_REGISTER_CLOSED', 2); |
|
| 1687 | 1687 | define('BLITZ_REGISTER_SHOW_LOGIN', 3); |
| 1688 | 1688 | define('BLITZ_REGISTER_DISCLOSURE_NAMES', 4); |
| 1689 | 1689 | |
@@ -86,87 +86,87 @@ |
||
| 86 | 86 | |
| 87 | 87 | // Services -------------------------------------------------------------------------------------------------------- |
| 88 | 88 | // Default db |
| 89 | - $gc->db = function (GlobalContainer $c) { |
|
| 89 | + $gc->db = function(GlobalContainer $c) { |
|
| 90 | 90 | classSupernova::$db = new \db_mysql($c); |
| 91 | 91 | |
| 92 | 92 | return classSupernova::$db; |
| 93 | 93 | }; |
| 94 | 94 | |
| 95 | - $gc->debug = function (/** @noinspection PhpUnusedParameterInspection */ |
|
| 95 | + $gc->debug = function(/** @noinspection PhpUnusedParameterInspection */ |
|
| 96 | 96 | GlobalContainer $c) { |
| 97 | 97 | return new \debug(); |
| 98 | 98 | }; |
| 99 | 99 | |
| 100 | - $gc->cache = function (GlobalContainer $gc) { |
|
| 100 | + $gc->cache = function(GlobalContainer $gc) { |
|
| 101 | 101 | return new \classCache($gc->cachePrefix); |
| 102 | 102 | }; |
| 103 | 103 | |
| 104 | - $gc->config = function (GlobalContainer $gc) { |
|
| 104 | + $gc->config = function(GlobalContainer $gc) { |
|
| 105 | 105 | return new \classConfig($gc->cachePrefix); |
| 106 | 106 | }; |
| 107 | 107 | |
| 108 | 108 | |
| 109 | - $gc->repository = function (GlobalContainer $gc) { |
|
| 109 | + $gc->repository = function(GlobalContainer $gc) { |
|
| 110 | 110 | return new Repository($gc); |
| 111 | 111 | }; |
| 112 | 112 | |
| 113 | - $gc->storage = function (GlobalContainer $gc) { |
|
| 113 | + $gc->storage = function(GlobalContainer $gc) { |
|
| 114 | 114 | return new \Storage($gc); |
| 115 | 115 | }; |
| 116 | 116 | |
| 117 | - $gc->design = function (GlobalContainer $gc) { |
|
| 117 | + $gc->design = function(GlobalContainer $gc) { |
|
| 118 | 118 | return new \Design($gc); |
| 119 | 119 | }; |
| 120 | 120 | |
| 121 | - $gc->bbCodeParser = function (GlobalContainer $gc) { |
|
| 121 | + $gc->bbCodeParser = function(GlobalContainer $gc) { |
|
| 122 | 122 | return new \BBCodeParser($gc); |
| 123 | 123 | }; |
| 124 | 124 | |
| 125 | - $gc->fleetDispatcher = function (GlobalContainer $gc) { |
|
| 125 | + $gc->fleetDispatcher = function(GlobalContainer $gc) { |
|
| 126 | 126 | return new \FleetDispatcher($gc); |
| 127 | 127 | }; |
| 128 | 128 | |
| 129 | - $gc->watchdog = function (GlobalContainer $gc) { |
|
| 129 | + $gc->watchdog = function(GlobalContainer $gc) { |
|
| 130 | 130 | return new Watchdog($gc); |
| 131 | 131 | }; |
| 132 | 132 | |
| 133 | - $gc->eventBus = function (GlobalContainer $gc) { |
|
| 133 | + $gc->eventBus = function(GlobalContainer $gc) { |
|
| 134 | 134 | return new EventBus($gc); |
| 135 | 135 | }; |
| 136 | 136 | |
| 137 | - $gc->valueStorage = function (GlobalContainer $gc) { |
|
| 137 | + $gc->valueStorage = function(GlobalContainer $gc) { |
|
| 138 | 138 | return new ValueStorage([]); |
| 139 | 139 | }; |
| 140 | 140 | |
| 141 | - $gc->bonusCatalog = function (GlobalContainer $gc) { |
|
| 141 | + $gc->bonusCatalog = function(GlobalContainer $gc) { |
|
| 142 | 142 | return new BonusCatalog($gc); |
| 143 | 143 | }; |
| 144 | 144 | |
| 145 | - $gc->general = function (GlobalContainer $gc) { |
|
| 145 | + $gc->general = function(GlobalContainer $gc) { |
|
| 146 | 146 | return new General($gc); |
| 147 | 147 | }; |
| 148 | 148 | |
| 149 | - $gc->economicHelper = function (GlobalContainer $gc) { |
|
| 149 | + $gc->economicHelper = function(GlobalContainer $gc) { |
|
| 150 | 150 | return new EconomicHelper($gc); |
| 151 | 151 | }; |
| 152 | 152 | |
| 153 | - $gc->playerLevelHelper = function (GlobalContainer $gc) { |
|
| 153 | + $gc->playerLevelHelper = function(GlobalContainer $gc) { |
|
| 154 | 154 | return new PlayerLevelHelper($gc); |
| 155 | 155 | }; |
| 156 | 156 | |
| 157 | 157 | // Dummy objects --------------------------------------------------------------------------------------------------- |
| 158 | - $gc->theUser = function (GlobalContainer $gc) { |
|
| 158 | + $gc->theUser = function(GlobalContainer $gc) { |
|
| 159 | 159 | return new \TheUser($gc); |
| 160 | 160 | }; |
| 161 | 161 | |
| 162 | 162 | |
| 163 | 163 | // Models ---------------------------------------------------------------------------------------------------------- |
| 164 | 164 | $gc->skinEntityClass = 'SkinV2'; |
| 165 | - $gc->skinModel = function (GlobalContainer $gc) { |
|
| 165 | + $gc->skinModel = function(GlobalContainer $gc) { |
|
| 166 | 166 | return new \SkinModel($gc); |
| 167 | 167 | }; |
| 168 | 168 | |
| 169 | - $gc->textModel = function (GlobalContainer $gc) { |
|
| 169 | + $gc->textModel = function(GlobalContainer $gc) { |
|
| 170 | 170 | return new \TextModel($gc); |
| 171 | 171 | }; |
| 172 | 172 | |
@@ -48,20 +48,20 @@ discard block |
||
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | protected function initValues() { |
| 51 | - $this[UNIT_SERVER_SPEED_BUILDING] = function (ValueStorage $vs) { |
|
| 51 | + $this[UNIT_SERVER_SPEED_BUILDING] = function(ValueStorage $vs) { |
|
| 52 | 52 | return new ValueBonused(UNIT_SERVER_SPEED_BUILDING, floatval($vs->getGlobalContainer()->config->game_speed)); |
| 53 | 53 | }; |
| 54 | - $this[UNIT_SERVER_SPEED_MINING] = function (ValueStorage $vs) { |
|
| 54 | + $this[UNIT_SERVER_SPEED_MINING] = function(ValueStorage $vs) { |
|
| 55 | 55 | return new ValueBonused(UNIT_SERVER_SPEED_MINING, floatval($vs->getGlobalContainer()->config->resource_multiplier)); |
| 56 | 56 | }; |
| 57 | - $this[UNIT_SERVER_SPEED_FLEET] = function (ValueStorage $vs) { |
|
| 57 | + $this[UNIT_SERVER_SPEED_FLEET] = function(ValueStorage $vs) { |
|
| 58 | 58 | return new ValueBonused(UNIT_SERVER_SPEED_FLEET, floatval($vs->getGlobalContainer()->config->fleet_speed)); |
| 59 | 59 | }; |
| 60 | - $this[UNIT_SERVER_SPEED_EXPEDITION] = function (ValueStorage $vs) { |
|
| 60 | + $this[UNIT_SERVER_SPEED_EXPEDITION] = function(ValueStorage $vs) { |
|
| 61 | 61 | return new ValueBonused(UNIT_SERVER_SPEED_EXPEDITION, floatval(1)); |
| 62 | 62 | }; |
| 63 | 63 | |
| 64 | - $this[UNIT_SERVER_FLEET_NOOB_POINTS] = function (ValueStorage $vs) { |
|
| 64 | + $this[UNIT_SERVER_FLEET_NOOB_POINTS] = function(ValueStorage $vs) { |
|
| 65 | 65 | $config = $vs->getGlobalContainer()->config; |
| 66 | 66 | |
| 67 | 67 | return new ValueBonused( |
@@ -69,11 +69,11 @@ discard block |
||
| 69 | 69 | floatval($config->game_noob_points * $vs->getBase(UNIT_SERVER_SPEED_MINING)) |
| 70 | 70 | ); |
| 71 | 71 | }; |
| 72 | - $this[UNIT_SERVER_FLEET_NOOB_FACTOR] = function (ValueStorage $vs) { |
|
| 72 | + $this[UNIT_SERVER_FLEET_NOOB_FACTOR] = function(ValueStorage $vs) { |
|
| 73 | 73 | return new ValueBonused(UNIT_SERVER_FLEET_NOOB_FACTOR, floatval($vs->getGlobalContainer()->config->game_noob_factor)); |
| 74 | 74 | }; |
| 75 | 75 | |
| 76 | - $this[UNIT_SERVER_PAYMENT_MM_PER_CURRENCY] = function (ValueStorage $vs) { |
|
| 76 | + $this[UNIT_SERVER_PAYMENT_MM_PER_CURRENCY] = function(ValueStorage $vs) { |
|
| 77 | 77 | return new ValueBonused(UNIT_SERVER_PAYMENT_MM_PER_CURRENCY, floatval($vs->getGlobalContainer()->config->payment_currency_exchange_mm_)); |
| 78 | 78 | }; |
| 79 | 79 | } |