We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -44,7 +44,10 @@ |
||
| 44 | 44 | <td> |
| 45 | 45 | <select name="game_type"><?php |
| 46 | 46 | foreach (SmrGame::GAME_TYPES as $GameTypeID => $GameType) { |
| 47 | - ?><option value="<?php echo $GameTypeID; ?>" <?php if ($GameType == $Game['gameType']) echo 'selected'; ?>><?php echo $GameType; ?></option><?php |
|
| 47 | + ?><option value="<?php echo $GameTypeID; ?>" <?php if ($GameType == $Game['gameType']) { |
|
| 48 | + echo 'selected'; |
|
| 49 | + } |
|
| 50 | + ?>><?php echo $GameType; ?></option><?php |
|
| 48 | 51 | } ?> |
| 49 | 52 | </select> |
| 50 | 53 | </td> |
@@ -55,9 +55,9 @@ |
||
| 55 | 55 | function applyHofVisibilityMask($amount, $vis, $gameID, $accountID) { |
| 56 | 56 | global $account, $player; |
| 57 | 57 | if (($vis == HOF_PRIVATE && $account->getAccountID() != $accountID) || |
| 58 | - ($vis == HOF_ALLIANCE && isset($gameID) && |
|
| 59 | - !SmrGame::getGame($gameID)->hasEnded() && |
|
| 60 | - !SmrPlayer::getPlayer($accountID, $gameID)->sameAlliance($player))) |
|
| 58 | + ($vis == HOF_ALLIANCE && isset($gameID) && |
|
| 59 | + !SmrGame::getGame($gameID)->hasEnded() && |
|
| 60 | + !SmrPlayer::getPlayer($accountID, $gameID)->sameAlliance($player))) |
|
| 61 | 61 | { |
| 62 | 62 | return '-'; |
| 63 | 63 | } else { |
@@ -469,8 +469,9 @@ |
||
| 469 | 469 | |
| 470 | 470 | if (!$player->isDead() && $player->getNewbieTurns() <= NEWBIE_TURNS_WARNING_LIMIT && |
| 471 | 471 | $player->getNewbieWarning() && |
| 472 | - $var['url'] != 'newbie_warning_processing.php') |
|
| 473 | - forward(create_container('newbie_warning_processing.php')); |
|
| 472 | + $var['url'] != 'newbie_warning_processing.php') { |
|
| 473 | + forward(create_container('newbie_warning_processing.php')); |
|
| 474 | + } |
|
| 474 | 475 | } |
| 475 | 476 | |
| 476 | 477 | // Initialize the template |
@@ -19,8 +19,8 @@ discard block |
||
| 19 | 19 | 1 => array("pipe", "w") // stdout is a pipe that the child will write to |
| 20 | 20 | ); |
| 21 | 21 | $engine = proc_open(UCI_CHESS_ENGINE, $descriptorSpec, $pipes); |
| 22 | - $toEngine =& $pipes[0]; |
|
| 23 | - $fromEngine =& $pipes[1]; |
|
| 22 | + $toEngine = & $pipes[0]; |
|
| 23 | + $fromEngine = & $pipes[1]; |
|
| 24 | 24 | |
| 25 | 25 | function readFromEngine($block = true) { |
| 26 | 26 | global $fromEngine; |
@@ -84,5 +84,5 @@ discard block |
||
| 84 | 84 | function debug($message, $debugObject = null) { |
| 85 | 85 | global $account, $var, $db; |
| 86 | 86 | echo date('Y-m-d H:i:s - ') . $message . ($debugObject !== null ? EOL . var_export($debugObject, true) : '') . EOL; |
| 87 | - $db->query('INSERT INTO npc_logs (script_id, npc_id, time, message, debug_info, var) VALUES (' . (defined('SCRIPT_ID') ? SCRIPT_ID : 0) . ', ' . (is_object($account) ? $account->getAccountID() : 0) . ',NOW(),' . $db->escapeString($message) . ',' . $db->escapeString(var_export($debugObject,true)) . ',' . $db->escapeString(var_export($var, true)) . ')'); |
|
| 87 | + $db->query('INSERT INTO npc_logs (script_id, npc_id, time, message, debug_info, var) VALUES (' . (defined('SCRIPT_ID') ? SCRIPT_ID : 0) . ', ' . (is_object($account) ? $account->getAccountID() : 0) . ',NOW(),' . $db->escapeString($message) . ',' . $db->escapeString(var_export($debugObject, true)) . ',' . $db->escapeString(var_export($var, true)) . ')'); |
|
| 88 | 88 | } |
@@ -374,13 +374,13 @@ |
||
| 374 | 374 | $this->db->query('SELECT type,sum(amount) as amount FROM player_hof WHERE ' . $this->SQL . ' AND game_id IN (SELECT game_id FROM game WHERE ignore_stats = \'FALSE\') GROUP BY type'); |
| 375 | 375 | $this->HOF = array(); |
| 376 | 376 | while ($this->db->nextRecord()) { |
| 377 | - $hof =& $this->HOF; |
|
| 377 | + $hof = & $this->HOF; |
|
| 378 | 378 | $typeList = explode(':', $this->db->getField('type')); |
| 379 | 379 | foreach ($typeList as $type) { |
| 380 | 380 | if (!isset($hof[$type])) { |
| 381 | 381 | $hof[$type] = array(); |
| 382 | 382 | } |
| 383 | - $hof =& $hof[$type]; |
|
| 383 | + $hof = & $hof[$type]; |
|
| 384 | 384 | } |
| 385 | 385 | $hof = $this->db->getFloat('amount'); |
| 386 | 386 | } |
@@ -79,12 +79,12 @@ discard block |
||
| 79 | 79 | 'exp_gain' => 540, |
| 80 | 80 | ], |
| 81 | 81 | ]; |
| 82 | - public function name() { return "Terran Planet"; } |
|
| 83 | - public function imageLink() { return "images/planet1.png"; } |
|
| 84 | - public function description() { return "A lush world, with forests, seas, sweeping meadows, and indigenous lifeforms."; } |
|
| 82 | + public function name() { return "Terran Planet"; } |
|
| 83 | + public function imageLink() { return "images/planet1.png"; } |
|
| 84 | + public function description() { return "A lush world, with forests, seas, sweeping meadows, and indigenous lifeforms."; } |
|
| 85 | 85 | public function maxAttackers() { return 10; } |
| 86 | - public function maxLanded() { return self::MAX_LANDED_UNLIMITED; } |
|
| 87 | - public function menuOptions() { return self::DEFAULT_MENU_OPTIONS; } |
|
| 86 | + public function maxLanded() { return self::MAX_LANDED_UNLIMITED; } |
|
| 87 | + public function menuOptions() { return self::DEFAULT_MENU_OPTIONS; } |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | class AridPlanet extends SmrPlanetType { |
@@ -108,12 +108,12 @@ discard block |
||
| 108 | 108 | 'exp_gain' => 180, |
| 109 | 109 | ], |
| 110 | 110 | ]; |
| 111 | - public function name() { return "Arid Planet"; } |
|
| 112 | - public function imageLink() { return "images/planet2.png"; } |
|
| 113 | - public function description() { return "A world mostly devoid of surface water, but capable of supporting life."; } |
|
| 111 | + public function name() { return "Arid Planet"; } |
|
| 112 | + public function imageLink() { return "images/planet2.png"; } |
|
| 113 | + public function description() { return "A world mostly devoid of surface water, but capable of supporting life."; } |
|
| 114 | 114 | public function maxAttackers() { return 5; } |
| 115 | - public function maxLanded() { return 5; } |
|
| 116 | - public function menuOptions() { return ['CONSTRUCTION', 'DEFENSE', 'STOCKPILE', 'OWNERSHIP']; } |
|
| 115 | + public function maxLanded() { return 5; } |
|
| 116 | + public function menuOptions() { return ['CONSTRUCTION', 'DEFENSE', 'STOCKPILE', 'OWNERSHIP']; } |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | class DwarfPlanet extends SmrPlanetType { |
@@ -137,12 +137,12 @@ discard block |
||
| 137 | 137 | 'exp_gain' => 540, |
| 138 | 138 | ], |
| 139 | 139 | ]; |
| 140 | - public function name() { return "Dwarf Planet"; } |
|
| 141 | - public function imageLink() { return "images/planet3.png"; } |
|
| 142 | - public function description() { return "A smaller than usual planet, with no native life present."; } |
|
| 140 | + public function name() { return "Dwarf Planet"; } |
|
| 141 | + public function imageLink() { return "images/planet3.png"; } |
|
| 142 | + public function description() { return "A smaller than usual planet, with no native life present."; } |
|
| 143 | 143 | public function maxAttackers() { return 5; } |
| 144 | - public function maxLanded() { return self::MAX_LANDED_UNLIMITED; } |
|
| 145 | - public function menuOptions() { return self::DEFAULT_MENU_OPTIONS; } |
|
| 144 | + public function maxLanded() { return self::MAX_LANDED_UNLIMITED; } |
|
| 145 | + public function menuOptions() { return self::DEFAULT_MENU_OPTIONS; } |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | class ProtoPlanet extends SmrPlanetType { |
@@ -178,12 +178,12 @@ discard block |
||
| 178 | 178 | 'exp_gain' => 540, |
| 179 | 179 | ], |
| 180 | 180 | ]; |
| 181 | - public function name() { return "Protoplanet"; } |
|
| 182 | - public function imageLink() { return "images/planet5.png"; } |
|
| 183 | - public function description() { return "A developing planet, not yet able to support the infrastructure of advanced technologies."; } |
|
| 181 | + public function name() { return "Protoplanet"; } |
|
| 182 | + public function imageLink() { return "images/planet5.png"; } |
|
| 183 | + public function description() { return "A developing planet, not yet able to support the infrastructure of advanced technologies."; } |
|
| 184 | 184 | public function maxAttackers() { return 5; } |
| 185 | - public function maxLanded() { return 5; } |
|
| 186 | - public function menuOptions() { return self::DEFAULT_MENU_OPTIONS; } |
|
| 185 | + public function maxLanded() { return 5; } |
|
| 186 | + public function menuOptions() { return self::DEFAULT_MENU_OPTIONS; } |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | 189 | class DefenseWorld extends SmrPlanetType { |
@@ -213,10 +213,10 @@ discard block |
||
| 213 | 213 | 'exp_gain' => 9, |
| 214 | 214 | ], |
| 215 | 215 | ]; |
| 216 | - public function name() { return "Defense World"; } |
|
| 217 | - public function imageLink() { return "images/planet4.png"; } |
|
| 218 | - public function description() { return "A fully armed and operational battle station loaded with excessive firepower."; } |
|
| 216 | + public function name() { return "Defense World"; } |
|
| 217 | + public function imageLink() { return "images/planet4.png"; } |
|
| 218 | + public function description() { return "A fully armed and operational battle station loaded with excessive firepower."; } |
|
| 219 | 219 | public function maxAttackers() { return 10; } |
| 220 | - public function maxLanded() { return self::MAX_LANDED_UNLIMITED; } |
|
| 221 | - public function menuOptions() { return self::DEFAULT_MENU_OPTIONS; } |
|
| 220 | + public function maxLanded() { return self::MAX_LANDED_UNLIMITED; } |
|
| 221 | + public function menuOptions() { return self::DEFAULT_MENU_OPTIONS; } |
|
| 222 | 222 | } |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | foreach (\Globals::getGoods() as $goodId => $value) { |
| 91 | 91 | if ($goods[$goodId] === true) { |
| 92 | 92 | if ($sectors[$currentSectorId]->getPort()->getGoodTransaction($goodId) === TRADER_SELLS && |
| 93 | - $sectors[$targetSectorId]->getPort()->getGoodTransaction($goodId) === TRADER_BUYS) { |
|
| 93 | + $sectors[$targetSectorId]->getPort()->getGoodTransaction($goodId) === TRADER_BUYS) { |
|
| 94 | 94 | $rl[] = new OneWayRoute($currentSectorId, $targetSectorId, $raceID, $sectors[$targetSectorId]->getPort()->getRaceID(), $sectors[$currentSectorId]->getPort()->getGoodDistance($goodId), $sectors[$targetSectorId]->getPort()->getGoodDistance($goodId), $distance, $goodId); |
| 95 | 95 | } |
| 96 | 96 | } |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | foreach (\Globals::getGoods() as $goodId => $value) { |
| 119 | 119 | if ($goods[$goodId] === true) { |
| 120 | 120 | if ($sectors[$currentSectorId]->getPort()->getGoodTransaction($goodId) === TRADER_SELLS && |
| 121 | - $sectors[$targetSectorId]->getPort()->getGoodTransaction($goodId) === TRADER_BUYS) { |
|
| 121 | + $sectors[$targetSectorId]->getPort()->getGoodTransaction($goodId) === TRADER_BUYS) { |
|
| 122 | 122 | $owr = new OneWayRoute($currentSectorId, $targetSectorId, $sectors[$currentSectorId]->getPort()->getRaceID(), $sectors[$targetSectorId]->getPort()->getRaceID(), $sectors[$currentSectorId]->getPort()->getGoodDistance($goodId), $sectors[$targetSectorId]->getPort()->getGoodDistance($goodId), $distance, $goodId); |
| 123 | 123 | $fakeReturn = new OneWayRoute($targetSectorId, $currentSectorId, $sectors[$targetSectorId]->getPort()->getRaceID(), $sectors[$currentSectorId]->getPort()->getRaceID(), 0, 0, $distance, GOODS_NOTHING); |
| 124 | 124 | $mpr = new MultiplePortRoute($owr, $fakeReturn); |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | } |
| 36 | 36 | $helper = self::getTwitterObj($_SESSION['TwitterToken']); |
| 37 | 37 | $accessToken = $helper->oauth('oauth/access_token', |
| 38 | - ['oauth_verifier' => \Request::get('oauth_verifier')]); |
|
| 38 | + ['oauth_verifier' => \Request::get('oauth_verifier')]); |
|
| 39 | 39 | $auth = self::getTwitterObj($accessToken); |
| 40 | 40 | $userInfo = $auth->get('account/verify_credentials', ['include_email' => 'true']); |
| 41 | 41 | if ($auth->getLastHttpCode() == 200) { |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | // Delete all tickets and re-insert the winning ticket |
| 33 | 33 | $db->query('DELETE FROM player_has_ticket WHERE game_id = ' . $db->escapeNumber($gameID)); |
| 34 | 34 | $db->query('INSERT INTO player_has_ticket (game_id, account_id, time, prize) ' |
| 35 | - .'VALUES (' . $db->escapeNumber($gameID) . ',' . $db->escapeNumber($winner_id) . ',\'0\',' . $db->escapeNumber($lottoInfo['Prize']) . ')'); |
|
| 35 | + .'VALUES (' . $db->escapeNumber($gameID) . ',' . $db->escapeNumber($winner_id) . ',\'0\',' . $db->escapeNumber($lottoInfo['Prize']) . ')'); |
|
| 36 | 36 | |
| 37 | 37 | $db->unlock(); |
| 38 | 38 | |