Пример #1
0
include_once "main_constants.php";
//Clases
include_once "imperio.php";
header('Content-type: text/html; charset=utf-8');
///////////////////////////////////////////////////////////////////
ob_end_flush();
ob_implicit_flush();
//INICIO
report('', "Hallö, " . $developer_name . ". Iniciando kOGsmos...");
report('', "Introduciéndose en el servidor " . $server . ". Cuenta: " . $user["login"]);
$logger = new Logger();
$logger->login();
//ESCANEO DE PLANETAS E INICIALIZACIÓN DEL IMPERIO
$coordGen = new Coordinator(null, null);
$pagina = $coordGen->leerMenu('principal');
$coordGen->escanearPlanetas($pagina);
$msg = "Leyendo los planetas de la cuenta... Hay " . count($coordGen->planetas) . " planeta";
if (count($coordGen->planetas) > 1) {
    report('act', $msg . "s.");
} else {
    report('act', $msg . ".");
}
$imperio = new Imperio($coordGen->planetas);
$imperio->actividad();
///////////////////////////////////////////////////////////////////
function report($tipo, $msg)
{
    $hora = "(" . date('H:i:s') . ") ";
    $identificador = '';
    $trace = debug_backtrace();
    if (isset($trace[1]['class'])) {