Ejemplo n.º 1
0
<?php

if (!$player->isLandedOnPlanet()) {
    create_error('You are not on a planet!');
}
$planet =& $player->getSectorPlanet();
$template->assign('PageTopic', 'Planet : ' . $planet->getName() . ' [Sector #' . $player->getSectorID() . ']');
require_once get_file_loc('menu.inc');
create_planet_menu($planet);
$template->assignByRef('ThisPlanet', $planet);
$template->assign('PlanetBuildings', Globals::getPlanetBuildings());
$template->assign('Goods', Globals::getGoods());
<?php

if (!$player->isLandedOnPlanet()) {
    create_error('You are not on a planet!');
}
$planet =& $player->getSectorPlanet();
$action = $var['action'];
if ($action == 'Build') {
    if (($message = $planet->canBuild($player, $var['construction_id'])) !== true) {
        create_error($message);
    }
    // now start the construction
    $planet->startBuilding($player, $var['construction_id']);
    $player->increaseHOF(1, array('Planet', 'Buildings', 'Started'), HOF_ALLIANCE);
    $PLANET_BUILDINGS = Globals::getPlanetBuildings();
    $account->log(LOG_TYPE_PLANETS, 'Player starts a ' . $PLANET_BUILDINGS[$var['construction_id']]['Name'] . ' on planet.', $player->getSectorID());
} elseif ($action == 'Cancel') {
    $planet->stopBuilding($var['construction_id']);
    $player->increaseHOF(1, array('Planet', 'Buildings', 'Stopped'), HOF_ALLIANCE);
    $account->log(LOG_TYPE_PLANETS, 'Player cancels planet construction', $player->getSectorID());
}
forward(create_container('skeleton.php', 'planet_construction.php'));