@@ -79,8 +79,7 @@ |
||
| 79 | 79 | |
| 80 | 80 | sn_db_transaction_commit(); |
| 81 | 81 | throw new Exception($info_action, ERR_NONE); |
| 82 | - } |
|
| 83 | - catch (Exception $e) |
|
| 82 | + } catch (Exception $e) |
|
| 84 | 83 | { |
| 85 | 84 | sn_db_transaction_rollback(); |
| 86 | 85 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if(!defined('SN_IN_MARKET') || SN_IN_MARKET !== true) |
|
| 3 | +if (!defined('SN_IN_MARKET') || SN_IN_MARKET !== true) |
|
| 4 | 4 | { |
| 5 | 5 | $debug->error("Attempt to call market page mode {$mode} directly - not from market.php", 'Forbidden', 403); |
| 6 | 6 | } |
@@ -15,50 +15,50 @@ discard block |
||
| 15 | 15 | )); |
| 16 | 16 | |
| 17 | 17 | $info_action = sys_get_param_int('action'); |
| 18 | -if($info_action) |
|
| 18 | +if ($info_action) |
|
| 19 | 19 | { |
| 20 | 20 | try |
| 21 | 21 | { |
| 22 | 22 | sn_db_transaction_start(); |
| 23 | 23 | |
| 24 | 24 | $user = db_user_by_id($user['id'], true); |
| 25 | - if(mrc_get_level($user, null, RES_DARK_MATTER) < $config->rpg_cost_info) |
|
| 25 | + if (mrc_get_level($user, null, RES_DARK_MATTER) < $config->rpg_cost_info) |
|
| 26 | 26 | { |
| 27 | 27 | throw new Exception(MARKET_NO_DM, ERR_ERROR); |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - switch($info_action) |
|
| 30 | + switch ($info_action) |
|
| 31 | 31 | { |
| 32 | 32 | case MARKET_INFO_PLAYER: |
| 33 | 33 | $user_info_name_unsafe = sys_get_param_str_unsafe('user_info_name'); |
| 34 | - if(!$user_info_name_unsafe) |
|
| 34 | + if (!$user_info_name_unsafe) |
|
| 35 | 35 | { |
| 36 | 36 | throw new Exception(MARKET_INFO_PLAYER_WRONG, ERR_ERROR); |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - if(is_id($user_info_name_unsafe)) |
|
| 39 | + if (is_id($user_info_name_unsafe)) |
|
| 40 | 40 | { |
| 41 | 41 | $user_info = db_user_by_id($user_info_name_unsafe, true, '`id`, `username`', true); |
| 42 | 42 | } |
| 43 | - if(!is_array($user_info)) |
|
| 43 | + if (!is_array($user_info)) |
|
| 44 | 44 | { |
| 45 | 45 | $user_info = db_user_by_username($user_info_name_unsafe, true); |
| 46 | 46 | } |
| 47 | - if(!is_array($user_info)) |
|
| 47 | + if (!is_array($user_info)) |
|
| 48 | 48 | { |
| 49 | 49 | throw new Exception(MARKET_INFO_PLAYER_NOT_FOUND, ERR_ERROR); |
| 50 | 50 | } |
| 51 | - if($user_info['id'] == $user['id']) |
|
| 51 | + if ($user_info['id'] == $user['id']) |
|
| 52 | 52 | { |
| 53 | 53 | throw new Exception(MARKET_INFO_PLAYER_SAME, ERR_ERROR); |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | $msg_text = array(); |
| 57 | - foreach(sn_get_groups('mercenaries') as $mercenary_id) |
|
| 57 | + foreach (sn_get_groups('mercenaries') as $mercenary_id) |
|
| 58 | 58 | { |
| 59 | 59 | $msg_text[] = "{$lang['tech'][$mercenary_id]} - " . (($mercenary_level = mrc_get_level($user_info, false, $mercenary_id)) ? "{$lang['sys_level']} {$mercenary_level}" : $lang['eco_mrk_info_not_hired']); |
| 60 | 60 | } |
| 61 | - if($mercenary_level = mrc_get_level($user_info, false, UNIT_PREMIUM)) |
|
| 61 | + if ($mercenary_level = mrc_get_level($user_info, false, UNIT_PREMIUM)) |
|
| 62 | 62 | { |
| 63 | 63 | $msg_text[] = "{$lang['tech'][UNIT_PREMIUM]} - {$mercenary_level} {$lang['sys_level']}"; |
| 64 | 64 | } |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | break; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - if(!rpg_points_change($user['id'], RPG_MARKET_INFO_MERCENARY, -$config->rpg_cost_info, "Using Black Market page {$lang['eco_mrk_info']} - getting info about user ID {$user_info['id']}")) |
|
| 75 | + if (!rpg_points_change($user['id'], RPG_MARKET_INFO_MERCENARY, -$config->rpg_cost_info, "Using Black Market page {$lang['eco_mrk_info']} - getting info about user ID {$user_info['id']}")) |
|
| 76 | 76 | { |
| 77 | 77 | // TODO: throw new Exception(MARKET_INFO_PLAYER_SAME, ERR_ERROR); |
| 78 | 78 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if((!defined('SN_IN_MARKET') || SN_IN_MARKET !== true) && (!defined('SN_IN_ALLY') || SN_IN_ALLY !== true)) { |
|
| 3 | +if ((!defined('SN_IN_MARKET') || SN_IN_MARKET !== true) && (!defined('SN_IN_ALLY') || SN_IN_ALLY !== true)) { |
|
| 4 | 4 | $debug->error("Attempt to call market page mode {$mode} directly - not from market.php", 'Forbidden', 403); |
| 5 | 5 | } |
| 6 | 6 | |
@@ -27,12 +27,12 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | // $dm_db_name = pname_resource_name(RES_DARK_MATTER); |
| 29 | 29 | $exchangeTo = in_array($exchangeTo = sys_get_param_int('exchangeTo'), sn_get_groups('resources_trader')) ? $exchangeTo : 0; |
| 30 | - if($exchangeTo && is_array($tradeList = $_POST['spend'])) { |
|
| 30 | + if ($exchangeTo && is_array($tradeList = $_POST['spend'])) { |
|
| 31 | 31 | $value = 0; |
| 32 | 32 | $qry = array(); |
| 33 | 33 | |
| 34 | 34 | sn_db_transaction_start(); |
| 35 | - if($planetrow['id_owner']) { |
|
| 35 | + if ($planetrow['id_owner']) { |
|
| 36 | 36 | $global_data = sys_o_get_updated($user, $planetrow, SN_TIME_NOW); |
| 37 | 37 | $planetrow = $global_data['planet']; |
| 38 | 38 | } |
@@ -41,27 +41,27 @@ discard block |
||
| 41 | 41 | $user = db_user_by_id($user['id'], true); |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - foreach(sn_get_groups('resources_trader') as $resource_id) { |
|
| 44 | + foreach (sn_get_groups('resources_trader') as $resource_id) { |
|
| 45 | 45 | $amount = floatval($tradeList[$resource_id]); |
| 46 | - if($amount < 0) { |
|
| 46 | + if ($amount < 0) { |
|
| 47 | 47 | $debug->error('Trying to supply negative resource amount on Black Market Page', 'Hack Attempt', 305); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - if($resource_id == RES_DARK_MATTER && $exchangeTo == RES_DARK_MATTER) { |
|
| 50 | + if ($resource_id == RES_DARK_MATTER && $exchangeTo == RES_DARK_MATTER) { |
|
| 51 | 51 | continue; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | $resource_db_name = pname_resource_name($resource_id); |
| 55 | - if($exchangeTo == RES_DARK_MATTER) { |
|
| 55 | + if ($exchangeTo == RES_DARK_MATTER) { |
|
| 56 | 56 | $sign = '+'; |
| 57 | 57 | $amount = floor($tradeList[RES_DARK_MATTER] / 3 * $rates[RES_DARK_MATTER] / $rates[$resource_id]); |
| 58 | 58 | $value += $amount; |
| 59 | 59 | } else { |
| 60 | 60 | $value += floor($amount * $rates[$resource_id] / $rates[$exchangeTo]); |
| 61 | - if($resource_id == RES_DARK_MATTER) { |
|
| 61 | + if ($resource_id == RES_DARK_MATTER) { |
|
| 62 | 62 | $amount = 0; |
| 63 | 63 | } else { |
| 64 | - if(mrc_get_level($user, $planetrow, $resource_id, true) < $amount) { |
|
| 64 | + if (mrc_get_level($user, $planetrow, $resource_id, true) < $amount) { |
|
| 65 | 65 | $intError = MARKET_NO_RESOURCES; |
| 66 | 66 | break; |
| 67 | 67 | } |
@@ -70,12 +70,12 @@ discard block |
||
| 70 | 70 | } |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - if($amount) { |
|
| 73 | + if ($amount) { |
|
| 74 | 74 | $qry[] = "`{$resource_db_name}` = `{$resource_db_name}` {$sign} {$amount}"; |
| 75 | 75 | } |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - if($exchangeTo != RES_DARK_MATTER) { |
|
| 78 | + if ($exchangeTo != RES_DARK_MATTER) { |
|
| 79 | 79 | $amount = floor($value); |
| 80 | 80 | $exchange_to_db_name = pname_resource_name($exchangeTo); |
| 81 | 81 | $qry[] = "`{$exchange_to_db_name}` = `{$exchange_to_db_name}` + {$amount}"; |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | $intError = $value <= 0 ? MARKET_ZERO_DEAL : $intError; |
| 87 | 87 | $intError = mrc_get_level($user, null, RES_DARK_MATTER) < $operation_cost ? MARKET_NO_DM : $intError; |
| 88 | 88 | |
| 89 | - if($intError == MARKET_DEAL) { |
|
| 89 | + if ($intError == MARKET_DEAL) { |
|
| 90 | 90 | $qry = implode(', ', $qry); |
| 91 | 91 | $table = $planetrow['id_owner'] ? 'planets' : 'users'; |
| 92 | 92 | |
@@ -111,8 +111,8 @@ discard block |
||
| 111 | 111 | 'EXCHANGE_TO_RESOURCE_ID' => $exchangeTo, |
| 112 | 112 | )); |
| 113 | 113 | |
| 114 | - foreach(sn_get_groups('resources_trader') as $resource_id) { |
|
| 115 | - if($resource_id == RES_DARK_MATTER) { |
|
| 114 | + foreach (sn_get_groups('resources_trader') as $resource_id) { |
|
| 115 | + if ($resource_id == RES_DARK_MATTER) { |
|
| 116 | 116 | $amount = floor(mrc_get_level($user, null, RES_DARK_MATTER) - $config->rpg_cost_trader); |
| 117 | 117 | } else { |
| 118 | 118 | $amount = floor(mrc_get_level($user, $planetrow, $resource_id)); |
@@ -35,8 +35,7 @@ |
||
| 35 | 35 | if($planetrow['id_owner']) { |
| 36 | 36 | $global_data = sys_o_get_updated($user, $planetrow, SN_TIME_NOW); |
| 37 | 37 | $planetrow = $global_data['planet']; |
| 38 | - } |
|
| 39 | - else { |
|
| 38 | + } else { |
|
| 40 | 39 | // Locking user record |
| 41 | 40 | $user = db_user_by_id($user['id'], true); |
| 42 | 41 | } |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | |
| 9 | 9 | $query = db_user_list_to_celebrate($config->user_birthday_range); |
| 10 | 10 | |
| 11 | - while($row = db_fetch($query)) |
|
| 11 | + while ($row = db_fetch($query)) |
|
| 12 | 12 | { |
| 13 | 13 | $row['username'] = db_escape($row['username']); |
| 14 | 14 | rpg_points_change($row['id'], RPG_BIRTHDAY, $config->user_birthday_gift, "Birthday gift for user {$row['username']} ID {$row['id']} on his birthday on {$row['user_birthday']}. Gift last gaved at {$row['user_birthday_celebrated']}"); |
@@ -1,7 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -function sn_user_birthday_celebrate() |
|
| 4 | -{ |
|
| 3 | +function sn_user_birthday_celebrate() { |
|
| 5 | 4 | global $config, $lang; |
| 6 | 5 | |
| 7 | 6 | sn_db_transaction_start(); |
@@ -4,9 +4,9 @@ discard block |
||
| 4 | 4 | { |
| 5 | 5 | $strPacked = "{$type}!"; |
| 6 | 6 | |
| 7 | - foreach($combat as $fleetID => $fleetCompress) |
|
| 7 | + foreach ($combat as $fleetID => $fleetCompress) |
|
| 8 | 8 | { |
| 9 | - foreach($fleetCompress as $key => $value) |
|
| 9 | + foreach ($fleetCompress as $key => $value) |
|
| 10 | 10 | { |
| 11 | 11 | $value = intval($value); |
| 12 | 12 | $strPacked .= "{$key},{$value};"; |
@@ -22,29 +22,29 @@ discard block |
||
| 22 | 22 | $fleet_id = 0; |
| 23 | 23 | |
| 24 | 24 | $arr_data_unpacked = explode('!', $str_data); |
| 25 | - foreach($arr_data_unpacked as $data_piece) |
|
| 25 | + foreach ($arr_data_unpacked as $data_piece) |
|
| 26 | 26 | { |
| 27 | - if(!$data_piece) |
|
| 27 | + if (!$data_piece) |
|
| 28 | 28 | { |
| 29 | 29 | continue; |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | - if($data_piece == 'A' || $data_piece == 'D') |
|
| 32 | + if ($data_piece == 'A' || $data_piece == 'D') |
|
| 33 | 33 | { |
| 34 | 34 | $fleet_type = $data_piece; |
| 35 | 35 | continue; |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | $arr_unit_strings = explode(';', $data_piece); |
| 39 | - foreach($arr_unit_strings as $str_unit_string) |
|
| 39 | + foreach ($arr_unit_strings as $str_unit_string) |
|
| 40 | 40 | { |
| 41 | - if(!$str_unit_string) |
|
| 41 | + if (!$str_unit_string) |
|
| 42 | 42 | { |
| 43 | 43 | continue; |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | $arr_unit_data = explode(',', $str_unit_string); |
| 47 | - if($arr_unit_data[1]) |
|
| 47 | + if ($arr_unit_data[1]) |
|
| 48 | 48 | { |
| 49 | 49 | $unpacked[$fleet_type][$fleet_id][$arr_unit_data[0]] = intval($arr_unit_data[1]); |
| 50 | 50 | } |
@@ -64,48 +64,48 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | $player_id = $player_id == -1 ? count($combat_data[UBE_PLAYERS]) : $player_id; |
| 66 | 66 | |
| 67 | - foreach($side_info as $fleet_data) |
|
| 67 | + foreach ($side_info as $fleet_data) |
|
| 68 | 68 | { |
| 69 | 69 | $combat_data[UBE_PLAYERS][$player_id][UBE_NAME] = $attacker ? 'Attacker' : 'Defender'; |
| 70 | 70 | $combat_data[UBE_PLAYERS][$player_id][UBE_ATTACKER] = $attacker; |
| 71 | 71 | |
| 72 | 72 | $combat_data[UBE_FLEETS][$player_id][UBE_OWNER] = $player_id; |
| 73 | - foreach($fleet_data as $unit_id => $unit_count) |
|
| 73 | + foreach ($fleet_data as $unit_id => $unit_count) |
|
| 74 | 74 | { |
| 75 | - if(!$unit_count) |
|
| 75 | + if (!$unit_count) |
|
| 76 | 76 | { |
| 77 | 77 | continue; |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | $unit_type = get_unit_param($unit_id, P_UNIT_TYPE); |
| 81 | 81 | |
| 82 | - if($unit_type == UNIT_SHIPS || $unit_type == UNIT_DEFENCE) |
|
| 82 | + if ($unit_type == UNIT_SHIPS || $unit_type == UNIT_DEFENCE) |
|
| 83 | 83 | { |
| 84 | 84 | $combat_data[UBE_FLEETS][$player_id][UBE_COUNT][$unit_id] = $unit_count; |
| 85 | 85 | } |
| 86 | - elseif($unit_type == UNIT_RESOURCES) |
|
| 86 | + elseif ($unit_type == UNIT_RESOURCES) |
|
| 87 | 87 | { |
| 88 | 88 | $combat_data[UBE_FLEETS][$player_id][UBE_RESOURCES][$unit_id] = $unit_count; |
| 89 | 89 | } |
| 90 | - elseif($unit_type == UNIT_TECHNOLOGIES) |
|
| 90 | + elseif ($unit_type == UNIT_TECHNOLOGIES) |
|
| 91 | 91 | { |
| 92 | 92 | $combat_data[UBE_PLAYERS][$player_id][UBE_BONUSES][$ube_convert_techs[$unit_id]] += $unit_count * get_unit_param($unit_id, P_BONUS_VALUE) / 100; |
| 93 | 93 | } |
| 94 | - elseif($unit_type == UNIT_GOVERNORS) |
|
| 94 | + elseif ($unit_type == UNIT_GOVERNORS) |
|
| 95 | 95 | { |
| 96 | - if($unit_id == MRC_FORTIFIER) |
|
| 96 | + if ($unit_id == MRC_FORTIFIER) |
|
| 97 | 97 | { |
| 98 | - foreach($ube_convert_techs as $ube_id) |
|
| 98 | + foreach ($ube_convert_techs as $ube_id) |
|
| 99 | 99 | { |
| 100 | 100 | $combat_data[UBE_FLEETS][$player_id][UBE_BONUSES][$ube_id] += $unit_count * get_unit_param($unit_id, P_BONUS_VALUE) / 100; |
| 101 | 101 | } |
| 102 | 102 | } |
| 103 | 103 | } |
| 104 | - elseif($unit_type == UNIT_MERCENARIES) |
|
| 104 | + elseif ($unit_type == UNIT_MERCENARIES) |
|
| 105 | 105 | { |
| 106 | - if($unit_id == MRC_ADMIRAL) |
|
| 106 | + if ($unit_id == MRC_ADMIRAL) |
|
| 107 | 107 | { |
| 108 | - foreach($ube_convert_techs as $ube_id) |
|
| 108 | + foreach ($ube_convert_techs as $ube_id) |
|
| 109 | 109 | { |
| 110 | 110 | $combat_data[UBE_PLAYERS][$player_id][UBE_BONUSES][$ube_id] += $unit_count * get_unit_param($unit_id, P_BONUS_VALUE) / 100; |
| 111 | 111 | } |
@@ -1,7 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -function sn_ube_simulator_encode_replay($combat, $type) |
|
| 4 | -{ |
|
| 3 | +function sn_ube_simulator_encode_replay($combat, $type) { |
|
| 5 | 4 | $strPacked = "{$type}!"; |
| 6 | 5 | |
| 7 | 6 | foreach($combat as $fleetID => $fleetCompress) |
@@ -17,8 +16,7 @@ discard block |
||
| 17 | 16 | return $strPacked; |
| 18 | 17 | } |
| 19 | 18 | |
| 20 | -function sn_ube_simulator_decode_replay($str_data) |
|
| 21 | -{ |
|
| 19 | +function sn_ube_simulator_decode_replay($str_data) { |
|
| 22 | 20 | $fleet_id = 0; |
| 23 | 21 | |
| 24 | 22 | $arr_data_unpacked = explode('!', $str_data); |
@@ -58,8 +56,7 @@ discard block |
||
| 58 | 56 | |
| 59 | 57 | // ------------------------------------------------------------------------------------------------ |
| 60 | 58 | // Преобразовывает данные симулятора в данные для расчета боя |
| 61 | -function sn_ube_simulator_fill_side(&$combat_data, $side_info, $attacker, $player_id = -1) |
|
| 62 | -{ |
|
| 59 | +function sn_ube_simulator_fill_side(&$combat_data, $side_info, $attacker, $player_id = -1) { |
|
| 63 | 60 | global $ube_convert_techs; |
| 64 | 61 | |
| 65 | 62 | $player_id = $player_id == -1 ? count($combat_data[UBE_PLAYERS]) : $player_id; |
@@ -82,16 +79,13 @@ discard block |
||
| 82 | 79 | if($unit_type == UNIT_SHIPS || $unit_type == UNIT_DEFENCE) |
| 83 | 80 | { |
| 84 | 81 | $combat_data[UBE_FLEETS][$player_id][UBE_COUNT][$unit_id] = $unit_count; |
| 85 | - } |
|
| 86 | - elseif($unit_type == UNIT_RESOURCES) |
|
| 82 | + } elseif($unit_type == UNIT_RESOURCES) |
|
| 87 | 83 | { |
| 88 | 84 | $combat_data[UBE_FLEETS][$player_id][UBE_RESOURCES][$unit_id] = $unit_count; |
| 89 | - } |
|
| 90 | - elseif($unit_type == UNIT_TECHNOLOGIES) |
|
| 85 | + } elseif($unit_type == UNIT_TECHNOLOGIES) |
|
| 91 | 86 | { |
| 92 | 87 | $combat_data[UBE_PLAYERS][$player_id][UBE_BONUSES][$ube_convert_techs[$unit_id]] += $unit_count * get_unit_param($unit_id, P_BONUS_VALUE) / 100; |
| 93 | - } |
|
| 94 | - elseif($unit_type == UNIT_GOVERNORS) |
|
| 88 | + } elseif($unit_type == UNIT_GOVERNORS) |
|
| 95 | 89 | { |
| 96 | 90 | if($unit_id == MRC_FORTIFIER) |
| 97 | 91 | { |
@@ -100,8 +94,7 @@ discard block |
||
| 100 | 94 | $combat_data[UBE_FLEETS][$player_id][UBE_BONUSES][$ube_id] += $unit_count * get_unit_param($unit_id, P_BONUS_VALUE) / 100; |
| 101 | 95 | } |
| 102 | 96 | } |
| 103 | - } |
|
| 104 | - elseif($unit_type == UNIT_MERCENARIES) |
|
| 97 | + } elseif($unit_type == UNIT_MERCENARIES) |
|
| 105 | 98 | { |
| 106 | 99 | if($unit_id == MRC_ADMIRAL) |
| 107 | 100 | { |
@@ -115,8 +108,7 @@ discard block |
||
| 115 | 108 | } |
| 116 | 109 | } |
| 117 | 110 | |
| 118 | -function sn_ube_simulator_fleet_converter($sym_attacker, $sym_defender) |
|
| 119 | -{ |
|
| 111 | +function sn_ube_simulator_fleet_converter($sym_attacker, $sym_defender) { |
|
| 120 | 112 | $combat_data = array( |
| 121 | 113 | UBE_OPTIONS => array( |
| 122 | 114 | UBE_SIMULATOR => sys_get_param_int('simulator'), |
@@ -17,12 +17,12 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | global $lang; |
| 19 | 19 | |
| 20 | - $TargetAdress = sprintf ($lang['sys_adress_planet'], $fleet_row['fleet_end_galaxy'], $fleet_row['fleet_end_system'], $fleet_row['fleet_end_planet']); |
|
| 20 | + $TargetAdress = sprintf($lang['sys_adress_planet'], $fleet_row['fleet_end_galaxy'], $fleet_row['fleet_end_system'], $fleet_row['fleet_end_planet']); |
|
| 21 | 21 | |
| 22 | 22 | $fleet_array = sys_unit_str2arr($fleet_row['fleet_array']); |
| 23 | 23 | |
| 24 | 24 | $TheMessage = $lang['sys_colo_no_colonizer']; |
| 25 | - if($fleet_array[SHIP_COLONIZER] >= 1) |
|
| 25 | + if ($fleet_array[SHIP_COLONIZER] >= 1) |
|
| 26 | 26 | { |
| 27 | 27 | $TheMessage = $lang['sys_colo_notfree']; |
| 28 | 28 | if (!$mission_data['dst_planet'] || empty($mission_data['dst_planet'])) |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | // Can we colonize more planets? |
| 33 | 33 | $TheMessage = $lang['sys_colo_maxcolo']; |
| 34 | - if($iPlanetCount < get_player_max_colonies($src_user_row)) |
|
| 34 | + if ($iPlanetCount < get_player_max_colonies($src_user_row)) |
|
| 35 | 35 | { |
| 36 | 36 | // Yes, we can colonize |
| 37 | 37 | $TheMessage = $lang['sys_colo_badpos']; |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | if ($NewOwnerPlanet) |
| 43 | 43 | { |
| 44 | 44 | $TheMessage = $lang['sys_colo_arrival'] . $TargetAdress . $lang['sys_colo_allisok']; |
| 45 | - msg_send_simple_message ( $fleet_row['fleet_owner'], '', $fleet_row['fleet_start_time'], MSG_TYPE_SPY, $lang['sys_colo_mess_from'], $lang['sys_colo_mess_report'], $TheMessage); |
|
| 45 | + msg_send_simple_message($fleet_row['fleet_owner'], '', $fleet_row['fleet_start_time'], MSG_TYPE_SPY, $lang['sys_colo_mess_from'], $lang['sys_colo_mess_report'], $TheMessage); |
|
| 46 | 46 | |
| 47 | 47 | $fleet_array[SHIP_COLONIZER]--; |
| 48 | 48 | $fleet_row['fleet_amount']--; |
@@ -10,8 +10,7 @@ |
||
| 10 | 10 | // ---------------------------------------------------------------------------------------------------------------- |
| 11 | 11 | // Mission Case 9: -> Coloniser |
| 12 | 12 | // |
| 13 | -function flt_mission_colonize(&$mission_data) |
|
| 14 | -{ |
|
| 13 | +function flt_mission_colonize(&$mission_data) { |
|
| 15 | 14 | $fleet_row = &$mission_data['fleet']; |
| 16 | 15 | $src_user_row = &$mission_data['src_user']; |
| 17 | 16 | |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | |
| 10 | -function flt_planet_capture(&$fleet_row, &$combat_data) {return sn_function_call('flt_planet_capture', array(&$fleet_row, &$combat_data, &$result));} |
|
| 10 | +function flt_planet_capture(&$fleet_row, &$combat_data) {return sn_function_call('flt_planet_capture', array(&$fleet_row, &$combat_data, &$result)); } |
|
| 11 | 11 | function sn_flt_planet_capture(&$fleet_row, &$combat_data, &$result) { |
| 12 | 12 | return $result; |
| 13 | 13 | } |
@@ -17,11 +17,11 @@ discard block |
||
| 17 | 17 | $destination_user = $mission_data['dst_user']; |
| 18 | 18 | $destination_planet = $mission_data['dst_planet']; |
| 19 | 19 | |
| 20 | - if(!$fleet_row) { |
|
| 20 | + if (!$fleet_row) { |
|
| 21 | 21 | return null; |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | - if( |
|
| 24 | + if ( |
|
| 25 | 25 | // Нет данных о планете назначения или её владельце |
| 26 | 26 | empty($destination_user) || empty($destination_planet) || !is_array($destination_user) || !is_array($destination_planet) |
| 27 | 27 | || |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | |
| 16 | 16 | $combat_data = sn_ube_report_load(sys_get_param_str('cypher')); |
| 17 | 17 | |
| 18 | - if($combat_data != UBE_REPORT_NOT_FOUND) { |
|
| 18 | + if ($combat_data != UBE_REPORT_NOT_FOUND) { |
|
| 19 | 19 | sn_ube_report_generate($combat_data, $template_result); |
| 20 | 20 | $template = gettemplate('ube_combat_report', $template); |
| 21 | 21 | $template->assign_vars(array( |
@@ -14,14 +14,14 @@ |
||
| 14 | 14 | global $lang, $user, $planetrow; |
| 15 | 15 | |
| 16 | 16 | $tech_tree = array(); |
| 17 | - foreach(get_unit_param('techtree') as $unit_group_id => $unit_list) |
|
| 17 | + foreach (get_unit_param('techtree') as $unit_group_id => $unit_list) |
|
| 18 | 18 | { |
| 19 | 19 | $tech_tree[] = array( |
| 20 | 20 | 'NAME' => $lang['tech'][$unit_group_id], |
| 21 | 21 | 'GROUP_ID' => $unit_group_id, |
| 22 | 22 | ); |
| 23 | 23 | |
| 24 | - foreach($unit_list as $unit_id) |
|
| 24 | + foreach ($unit_list as $unit_id) |
|
| 25 | 25 | { |
| 26 | 26 | $sn_data_unit = get_unit_param($unit_id); |
| 27 | 27 | $level_basic = $sn_data_unit[P_STACKABLE] ? 0 : mrc_get_level($user, $planetrow, $unit_id, false, true); |
@@ -6,8 +6,7 @@ |
||
| 6 | 6 | * version 2.0 copyright (c) 2012 by Gorlum for http://supernova.ws |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -function sn_techtree_view($template = null) |
|
| 10 | -{ |
|
| 9 | +function sn_techtree_view($template = null) { |
|
| 11 | 10 | global $lang, $user, $planetrow; |
| 12 | 11 | |
| 13 | 12 | $tech_tree = array(); |
@@ -1,11 +1,11 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -function geoip_status(){return sn_function_call('geoip_status', array(&$result));} |
|
| 3 | +function geoip_status() {return sn_function_call('geoip_status', array(&$result)); } |
|
| 4 | 4 | function sn_geoip_status(&$result) { |
| 5 | 5 | return $result = false; |
| 6 | 6 | } |
| 7 | 7 | |
| 8 | -function geoip_ip_info($ip){return sn_function_call('geoip_ip_info', array($ip, &$result));} |
|
| 8 | +function geoip_ip_info($ip) {return sn_function_call('geoip_ip_info', array($ip, &$result)); } |
|
| 9 | 9 | function sn_geoip_ip_info($ip, &$result) { |
| 10 | 10 | return $result = false; |
| 11 | 11 | } |