@@ -18,18 +18,24 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | // Test de coherance de la destination (voir si elle se trouve dans les limites de l'univers connu |
| 20 | 20 | $errorlist = ''; |
| 21 | - if (!$galaxy || $galaxy > $config->game_maxGalaxy || $galaxy < 1) |
|
| 22 | - $errorlist .= $lang['fl_limit_galaxy']; |
|
| 23 | - if (!$system || $system > $config->game_maxSystem || $system < 1) |
|
| 24 | - $errorlist .= $lang['fl_limit_system']; |
|
| 25 | - if (!$planet || $planet < 1 || ($planet > $config->game_maxPlanet && $target_mission != MT_EXPLORE )) |
|
| 26 | - $errorlist .= $lang['fl_limit_planet']; |
|
| 27 | - if ($planetrow['galaxy'] == $galaxy && $planetrow['system'] == $system && $planetrow['planet'] == $planet && $planetrow['planet_type'] == $planet_type) |
|
| 28 | - $errorlist .= $lang['fl_ownpl_err']; |
|
| 29 | - if (!$planet_type) |
|
| 30 | - $errorlist .= $lang['fl_no_planettype']; |
|
| 31 | - if ($planet_type != PT_PLANET && $planet_type != PT_DEBRIS && $planet_type != PT_MOON) |
|
| 32 | - $errorlist .= $lang['fl_fleet_err_pl']; |
|
| 21 | + if (!$galaxy || $galaxy > $config->game_maxGalaxy || $galaxy < 1) { |
|
| 22 | + $errorlist .= $lang['fl_limit_galaxy']; |
|
| 23 | + } |
|
| 24 | + if (!$system || $system > $config->game_maxSystem || $system < 1) { |
|
| 25 | + $errorlist .= $lang['fl_limit_system']; |
|
| 26 | + } |
|
| 27 | + if (!$planet || $planet < 1 || ($planet > $config->game_maxPlanet && $target_mission != MT_EXPLORE )) { |
|
| 28 | + $errorlist .= $lang['fl_limit_planet']; |
|
| 29 | + } |
|
| 30 | + if ($planetrow['galaxy'] == $galaxy && $planetrow['system'] == $system && $planetrow['planet'] == $planet && $planetrow['planet_type'] == $planet_type) { |
|
| 31 | + $errorlist .= $lang['fl_ownpl_err']; |
|
| 32 | + } |
|
| 33 | + if (!$planet_type) { |
|
| 34 | + $errorlist .= $lang['fl_no_planettype']; |
|
| 35 | + } |
|
| 36 | + if ($planet_type != PT_PLANET && $planet_type != PT_DEBRIS && $planet_type != PT_MOON) { |
|
| 37 | + $errorlist .= $lang['fl_fleet_err_pl']; |
|
| 38 | + } |
|
| 33 | 39 | if (empty($missiontype[$target_mission])) { |
| 34 | 40 | $errorlist .= $lang['fl_bad_mission']; |
| 35 | 41 | } |
@@ -56,29 +62,35 @@ discard block |
||
| 56 | 62 | } |
| 57 | 63 | } else { |
| 58 | 64 | if ($TargetPlanet['id_owner']){ |
| 59 | - if ($target_mission == MT_COLONIZE) |
|
| 60 | - $errorlist .= $lang['fl_colonized']; |
|
| 65 | + if ($target_mission == MT_COLONIZE) { |
|
| 66 | + $errorlist .= $lang['fl_colonized']; |
|
| 67 | + } |
|
| 61 | 68 | |
| 62 | 69 | if ($TargetPlanet['id_owner'] == $planetrow['id_owner']){ |
| 63 | - if ($target_mission == MT_ATTACK) |
|
| 64 | - $errorlist .= $lang['fl_no_self_attack']; |
|
| 65 | - |
|
| 66 | - if ($target_mission == MT_SPY) |
|
| 67 | - $errorlist .= $lang['fl_no_self_spy']; |
|
| 68 | - }else{ |
|
| 69 | - if ($target_mission == MT_RELOCATE) |
|
| 70 | - $errorlist .= $lang['fl_only_stay_at_home']; |
|
| 70 | + if ($target_mission == MT_ATTACK) { |
|
| 71 | + $errorlist .= $lang['fl_no_self_attack']; |
|
| 72 | + } |
|
| 73 | + |
|
| 74 | + if ($target_mission == MT_SPY) { |
|
| 75 | + $errorlist .= $lang['fl_no_self_spy']; |
|
| 76 | + } |
|
| 77 | + } else{ |
|
| 78 | + if ($target_mission == MT_RELOCATE) { |
|
| 79 | + $errorlist .= $lang['fl_only_stay_at_home']; |
|
| 80 | + } |
|
| 71 | 81 | } |
| 72 | - }else{ |
|
| 82 | + } else{ |
|
| 73 | 83 | if ($target_mission < MT_COLONIZE){ |
| 74 | 84 | $errorlist .= $lang['fl_unknow_target']; |
| 75 | - }else{ |
|
| 76 | - if ($target_mission == MT_DESTROY) |
|
| 77 | - $errorlist .= $lang['fl_nomoon']; |
|
| 85 | + } else{ |
|
| 86 | + if ($target_mission == MT_DESTROY) { |
|
| 87 | + $errorlist .= $lang['fl_nomoon']; |
|
| 88 | + } |
|
| 78 | 89 | |
| 79 | 90 | if ($target_mission == MT_RECYCLE){ |
| 80 | - if($TargetPlanet['debris_metal'] + $TargetPlanet['debris_crystal'] == 0) |
|
| 81 | - $errorlist .= $lang['fl_nodebris']; |
|
| 91 | + if($TargetPlanet['debris_metal'] + $TargetPlanet['debris_crystal'] == 0) { |
|
| 92 | + $errorlist .= $lang['fl_nodebris']; |
|
| 93 | + } |
|
| 82 | 94 | } |
| 83 | 95 | } |
| 84 | 96 | } |
@@ -126,8 +138,7 @@ discard block |
||
| 126 | 138 | $aks = doquery("SELECT * FROM {{aks}} WHERE id = '{$fleet_group}' LIMIT 1;", true); |
| 127 | 139 | if (!$aks) { |
| 128 | 140 | $fleet_group = 0; |
| 129 | - } |
|
| 130 | - else |
|
| 141 | + } else |
|
| 131 | 142 | { |
| 132 | 143 | $galaxy = $aks['galaxy']; |
| 133 | 144 | $system = $aks['system']; |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | // @version 1.0 |
| 4 | 4 | // @copyright 2008 by Chlorel for XNova |
| 5 | 5 | |
| 6 | -if(SN_IN_FLEET !== true) { |
|
| 6 | +if (SN_IN_FLEET !== true) { |
|
| 7 | 7 | $debug->error("Attempt to call FLEET page mode {$mode} directly - not from fleet.php", 'Forbidden', 403); |
| 8 | 8 | } |
| 9 | 9 | |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | $errorlist .= $lang['fl_limit_galaxy']; |
| 23 | 23 | if (!$system || $system > $config->game_maxSystem || $system < 1) |
| 24 | 24 | $errorlist .= $lang['fl_limit_system']; |
| 25 | - if (!$planet || $planet < 1 || ($planet > $config->game_maxPlanet && $target_mission != MT_EXPLORE )) |
|
| 25 | + if (!$planet || $planet < 1 || ($planet > $config->game_maxPlanet && $target_mission != MT_EXPLORE)) |
|
| 26 | 26 | $errorlist .= $lang['fl_limit_planet']; |
| 27 | 27 | if ($planetrow['galaxy'] == $galaxy && $planetrow['system'] == $system && $planetrow['planet'] == $planet && $planetrow['planet_type'] == $planet_type) |
| 28 | 28 | $errorlist .= $lang['fl_ownpl_err']; |
@@ -49,35 +49,35 @@ discard block |
||
| 49 | 49 | $planetrow = DBStaticPlanet::db_planet_by_id($planetrow['id'], true); |
| 50 | 50 | |
| 51 | 51 | if ($target_mission == MT_EXPLORE) { |
| 52 | - if ($MaxExpeditions == 0 ) { |
|
| 52 | + if ($MaxExpeditions == 0) { |
|
| 53 | 53 | $errorlist .= $lang['fl_expe_notech']; |
| 54 | - } elseif ($FlyingExpeditions >= $MaxExpeditions ) { |
|
| 54 | + } elseif ($FlyingExpeditions >= $MaxExpeditions) { |
|
| 55 | 55 | $errorlist .= $lang['fl_expe_max']; |
| 56 | 56 | } |
| 57 | 57 | } else { |
| 58 | - if ($TargetPlanet['id_owner']){ |
|
| 58 | + if ($TargetPlanet['id_owner']) { |
|
| 59 | 59 | if ($target_mission == MT_COLONIZE) |
| 60 | 60 | $errorlist .= $lang['fl_colonized']; |
| 61 | 61 | |
| 62 | - if ($TargetPlanet['id_owner'] == $planetrow['id_owner']){ |
|
| 62 | + if ($TargetPlanet['id_owner'] == $planetrow['id_owner']) { |
|
| 63 | 63 | if ($target_mission == MT_ATTACK) |
| 64 | 64 | $errorlist .= $lang['fl_no_self_attack']; |
| 65 | 65 | |
| 66 | 66 | if ($target_mission == MT_SPY) |
| 67 | 67 | $errorlist .= $lang['fl_no_self_spy']; |
| 68 | - }else{ |
|
| 68 | + } else { |
|
| 69 | 69 | if ($target_mission == MT_RELOCATE) |
| 70 | 70 | $errorlist .= $lang['fl_only_stay_at_home']; |
| 71 | 71 | } |
| 72 | - }else{ |
|
| 73 | - if ($target_mission < MT_COLONIZE){ |
|
| 72 | + } else { |
|
| 73 | + if ($target_mission < MT_COLONIZE) { |
|
| 74 | 74 | $errorlist .= $lang['fl_unknow_target']; |
| 75 | - }else{ |
|
| 75 | + } else { |
|
| 76 | 76 | if ($target_mission == MT_DESTROY) |
| 77 | 77 | $errorlist .= $lang['fl_nomoon']; |
| 78 | 78 | |
| 79 | - if ($target_mission == MT_RECYCLE){ |
|
| 80 | - if($TargetPlanet['debris_metal'] + $TargetPlanet['debris_crystal'] == 0) |
|
| 79 | + if ($target_mission == MT_RECYCLE) { |
|
| 80 | + if ($TargetPlanet['debris_metal'] + $TargetPlanet['debris_crystal'] == 0) |
|
| 81 | 81 | $errorlist .= $lang['fl_nodebris']; |
| 82 | 82 | } |
| 83 | 83 | } |
@@ -85,13 +85,13 @@ discard block |
||
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | |
| 88 | - if($sn_module['unit_captain']->manifest['active'] && $captain_id = sys_get_param_id('captain_id')) { |
|
| 88 | + if ($sn_module['unit_captain']->manifest['active'] && $captain_id = sys_get_param_id('captain_id')) { |
|
| 89 | 89 | $captain = $sn_module['unit_captain']->unit_captain_get($planetrow['id']); |
| 90 | 90 | // mrc_get_level($user, $planetrow, UNIT_CAPTAIN, true); |
| 91 | - if(!$captain) { |
|
| 91 | + if (!$captain) { |
|
| 92 | 92 | $errorlist .= $lang['module_unit_captain_error_no_captain']; |
| 93 | - } elseif($captain['unit_location_type'] == LOC_PLANET) { |
|
| 94 | - if($target_mission == MT_RELOCATE && ($arriving_captain = mrc_get_level($user, $TargetPlanet, UNIT_CAPTAIN, true))) { |
|
| 93 | + } elseif ($captain['unit_location_type'] == LOC_PLANET) { |
|
| 94 | + if ($target_mission == MT_RELOCATE && ($arriving_captain = mrc_get_level($user, $TargetPlanet, UNIT_CAPTAIN, true))) { |
|
| 95 | 95 | $errorlist .= $lang['module_unit_captain_error_captain_already_bound']; |
| 96 | 96 | } |
| 97 | 97 | } else { |
@@ -101,13 +101,13 @@ discard block |
||
| 101 | 101 | |
| 102 | 102 | if ($errorlist) { |
| 103 | 103 | sn_db_transaction_rollback(); |
| 104 | - messageBox ("<span class='error'><ul>{$errorlist}</ul></span>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, false); |
|
| 104 | + messageBox("<span class='error'><ul>{$errorlist}</ul></span>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, false); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | // On verifie s'il y a assez de vaisseaux sur la planete ! |
| 108 | 108 | foreach ($fleetarray as $Ship => $Count) { |
| 109 | 109 | if ($Count > mrc_get_level($user, $planetrow, $Ship)) { |
| 110 | - messageBox ("<span class='error'><b>{$lang['fl_fleet_err']}</b></span>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 2); |
|
| 110 | + messageBox("<span class='error'><b>{$lang['fl_fleet_err']}</b></span>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 2); |
|
| 111 | 111 | } |
| 112 | 112 | } |
| 113 | 113 | |
@@ -115,13 +115,13 @@ discard block |
||
| 115 | 115 | $fleet_group = max(0, intval($_POST['fleet_group'])); |
| 116 | 116 | //But is it acs?? |
| 117 | 117 | //Well all acs fleets must have a fleet code. |
| 118 | - if($fleet_group) { |
|
| 118 | + if ($fleet_group) { |
|
| 119 | 119 | //Also it must be mission type 2 |
| 120 | 120 | $target_mission = MT_AKS; |
| 121 | 121 | |
| 122 | 122 | //The co-ords must be the same as where the acs fleet is going. |
| 123 | 123 | $target = "g{$galaxy}s{$system}p{$planet}t{$planet_type}"; |
| 124 | - if($_POST['acs_target_mr'] == $target) { |
|
| 124 | + if ($_POST['acs_target_mr'] == $target) { |
|
| 125 | 125 | //ACS attack must exist (if acs fleet has arrived this will also return false (2 checks in 1!!!) |
| 126 | 126 | $aks = doquery("SELECT * FROM {{aks}} WHERE id = '{$fleet_group}' LIMIT 1;", true); |
| 127 | 127 | if (!$aks) { |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | } |
| 138 | 138 | } |
| 139 | 139 | //Check that a failed acs attack isn't being sent, if it is, make it an attack fleet. |
| 140 | - if(!$fleet_group && $target_mission == MT_AKS) { |
|
| 140 | + if (!$fleet_group && $target_mission == MT_AKS) { |
|
| 141 | 141 | $target_mission = MT_ATTACK; |
| 142 | 142 | } |
| 143 | 143 | |
@@ -147,22 +147,21 @@ discard block |
||
| 147 | 147 | $options = array('fleet_speed_percent' => $speed_percent, 'fleet_group' => $fleet_group, 'resources' => $StorageNeeded); |
| 148 | 148 | $cant_attack = flt_can_attack($planetrow, $TargetPlanet, $fleetarray, $target_mission, $options); |
| 149 | 149 | |
| 150 | - if($cant_attack !== ATTACK_ALLOWED) { |
|
| 150 | + if ($cant_attack !== ATTACK_ALLOWED) { |
|
| 151 | 151 | messageBox("<span class='error'><b>{$lang['fl_attack_error'][$cant_attack]}</b></span>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 99); |
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | $speed_possible = array(10, 9, 8, 7, 6, 5, 4, 3, 2, 1); |
| 155 | 155 | if (!in_array($speed_percent, $speed_possible)) { |
| 156 | - messageBox ("<span class='error'><b>". $lang['fl_cheat_speed'] ."</b></span>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 2); |
|
| 156 | + messageBox("<span class='error'><b>" . $lang['fl_cheat_speed'] . "</b></span>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 2); |
|
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | $fleet['start_time'] = $duration + SN_TIME_NOW; |
| 160 | 160 | |
| 161 | - $max_duration = $target_mission == MT_EXPLORE ? get_player_max_expedition_duration($user) : |
|
| 162 | - ($target_mission == MT_HOLD ? 12 : 0); |
|
| 163 | - if($max_duration) { |
|
| 161 | + $max_duration = $target_mission == MT_EXPLORE ? get_player_max_expedition_duration($user) : ($target_mission == MT_HOLD ? 12 : 0); |
|
| 162 | + if ($max_duration) { |
|
| 164 | 163 | $StayDuration = sys_get_param_id('missiontime'); |
| 165 | - if($StayDuration > $max_duration || $StayDuration < 1) { |
|
| 164 | + if ($StayDuration > $max_duration || $StayDuration < 1) { |
|
| 166 | 165 | $debug->warning('Supplying wrong mission time', 'Hack attempt', 302, array('base_dump' => true)); |
| 167 | 166 | die(); |
| 168 | 167 | } |
@@ -172,11 +171,11 @@ discard block |
||
| 172 | 171 | $StayDuration = 0; |
| 173 | 172 | $StayTime = 0; |
| 174 | 173 | } |
| 175 | - $fleet['end_time'] = $StayDuration + (2 * $duration) + SN_TIME_NOW; |
|
| 174 | + $fleet['end_time'] = $StayDuration + (2 * $duration) + SN_TIME_NOW; |
|
| 176 | 175 | |
| 177 | - if($aks && $target_mission == MT_AKS) { |
|
| 178 | - if ($fleet['start_time']>$aks['ankunft']) { |
|
| 179 | - messageBox ($lang['fl_aks_too_slow'] . 'Fleet arrival: ' . date(FMT_DATE_TIME,$fleet['start_time']) . " AKS arrival: " .date(FMT_DATE_TIME,$aks['ankunft']), $lang['fl_error']); |
|
| 176 | + if ($aks && $target_mission == MT_AKS) { |
|
| 177 | + if ($fleet['start_time'] > $aks['ankunft']) { |
|
| 178 | + messageBox($lang['fl_aks_too_slow'] . 'Fleet arrival: ' . date(FMT_DATE_TIME, $fleet['start_time']) . " AKS arrival: " . date(FMT_DATE_TIME, $aks['ankunft']), $lang['fl_error']); |
|
| 180 | 179 | } |
| 181 | 180 | $fleet['start_time'] = $aks['ankunft']; |
| 182 | 181 | $fleet['end_time'] = $aks['ankunft'] + $duration; |
@@ -186,21 +185,21 @@ discard block |
||
| 186 | 185 | $FleetShipCount = 0; |
| 187 | 186 | $db_changeset = array(); |
| 188 | 187 | foreach ($fleetarray as $Ship => $Count) { |
| 189 | - $FleetStorage += get_unit_param($Ship, P_CAPACITY) * $Count; |
|
| 188 | + $FleetStorage += get_unit_param($Ship, P_CAPACITY) * $Count; |
|
| 190 | 189 | $db_changeset['unit'][] = OldDbChangeSet::db_changeset_prepare_unit($Ship, -$Count, $user, $planetrow['id']); |
| 191 | 190 | } |
| 192 | 191 | $fleet_array = sys_unit_arr2str($fleetarray); |
| 193 | - $FleetShipCount += array_sum($fleetarray); |
|
| 194 | - $FleetStorage -= $consumption; |
|
| 192 | + $FleetShipCount += array_sum($fleetarray); |
|
| 193 | + $FleetStorage -= $consumption; |
|
| 195 | 194 | |
| 196 | - if ( $StorageNeeded > $FleetStorage) { |
|
| 197 | - messageBox ("<span class='error'><b>". $lang['fl_nostoragespa'] . HelperString::numberFloorAndFormat($StorageNeeded - $FleetStorage) ."</b></span>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 2); |
|
| 195 | + if ($StorageNeeded > $FleetStorage) { |
|
| 196 | + messageBox("<span class='error'><b>" . $lang['fl_nostoragespa'] . HelperString::numberFloorAndFormat($StorageNeeded - $FleetStorage) . "</b></span>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 2); |
|
| 198 | 197 | } |
| 199 | 198 | if ($planetrow['deuterium'] < $TransDeuterium + $consumption) { |
| 200 | - messageBox ("<font color=\"red\"><b>". $lang['fl_no_deuterium'] . HelperString::numberFloorAndFormat($TransDeuterium + $consumption - $planetrow['deuterium']) ."</b></font>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 2); |
|
| 199 | + messageBox("<font color=\"red\"><b>" . $lang['fl_no_deuterium'] . HelperString::numberFloorAndFormat($TransDeuterium + $consumption - $planetrow['deuterium']) . "</b></font>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 2); |
|
| 201 | 200 | } |
| 202 | 201 | if (($planetrow['metal'] < $TransMetal) || ($planetrow['crystal'] < $TransCrystal)) { |
| 203 | - messageBox ("<font color=\"red\"><b>". $lang['fl_no_resources'] ."</b></font>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 2); |
|
| 202 | + messageBox("<font color=\"red\"><b>" . $lang['fl_no_resources'] . "</b></font>", $lang['fl_error'], 'fleet' . DOT_PHP_EX, 2); |
|
| 204 | 203 | } |
| 205 | 204 | |
| 206 | 205 | $fleet_set = array( |
@@ -242,7 +241,7 @@ discard block |
||
| 242 | 241 | // )); |
| 243 | 242 | // } |
| 244 | 243 | |
| 245 | - if(is_array($captain)) { |
|
| 244 | + if (is_array($captain)) { |
|
| 246 | 245 | DBStaticUnit::db_unit_set_by_id($captain['unit_id'], "`unit_location_type` = " . LOC_FLEET . ", `unit_location_id` = {$fleet_id}"); |
| 247 | 246 | } |
| 248 | 247 | |
@@ -255,7 +254,7 @@ discard block |
||
| 255 | 254 | 'START_LEFT' => floor($fleet['end_time'] + 1 - SN_TIME_NOW), |
| 256 | 255 | ); |
| 257 | 256 | |
| 258 | - if(!empty($TargetPlanet)) { |
|
| 257 | + if (!empty($TargetPlanet)) { |
|
| 259 | 258 | $template_route += array( |
| 260 | 259 | 'END_TYPE_TEXT_SH' => $lang['sys_planet_type_sh'][$TargetPlanet['planet_type']], |
| 261 | 260 | 'END_COORDS' => uni_render_coordinates($TargetPlanet), |
@@ -268,8 +267,8 @@ discard block |
||
| 268 | 267 | $template->assign_block_vars('fleets', $template_route); |
| 269 | 268 | |
| 270 | 269 | $sn_groups_fleet = sn_get_groups('fleet'); |
| 271 | - foreach($fleetarray as $ship_id => $ship_count) { |
|
| 272 | - if(in_array($ship_id, $sn_groups_fleet) && $ship_count) { |
|
| 270 | + foreach ($fleetarray as $ship_id => $ship_count) { |
|
| 271 | + if (in_array($ship_id, $sn_groups_fleet) && $ship_count) { |
|
| 273 | 272 | // $ship_base_data = get_ship_data($ship_id, $user); |
| 274 | 273 | $template->assign_block_vars('fleets.ships', array( |
| 275 | 274 | 'ID' => $ship_id, |
@@ -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(); |