Exemplo n.º 1
0
}
switch ($_GET['mode']) {
    case "ship":
    case "faction":
    case "activity":
    case "sys":
        $view = new MapView($_GET['mode'], $img_size);
        $view->setSystemID(intval($_GET['sys_id']));
        $view->showLines(config::get('map_act_showlines'));
        $view->showSysNames(config::get('map_act_shownames'));
        $view->setOffset(25);
        $view->generate();
        break;
    case "na":
        $view = new MapView($_GET['mode'], $img_size);
        $view->generateNA();
        break;
    default:
        exit;
}
//-------------------------------------------------------------------------
// Antialising functions
// FROM: http://personal.3d-box.com/php/filledellipseaa.php
//-------------------------------------------------------------------------
// Parses a color value to an array.
function color2rgb($color)
{
    $rgb = array();
    $rgb[] = 0xff & $color >> 16;
    $rgb[] = 0xff & $color >> 8;
    $rgb[] = 0xff & $color >> 0;