<?php
/****************************************************************************
* Copyright (C) 2000 Bryan Brunton
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
****************************************************************************/
page_open(array("sess" => "ME_Session_Uncached", "auth" => "ME_Auth", "user" => "ME_User"));
$sess->register("player_id");
$sess->register("player_dead");
include("./lib/player.php");
include("./lib/ship.php");
include("./lib/cargo.php");
include("./merchantempiresdefines.php");
#if player dead, send to post-death screen
if ( $player_dead == 't' ) {
$newurl = $sess->url(URL . "death.php");
header("Location: $newurl");
exit;
}
# send player to select a game if no player id
if (!$player_id>0) {
$newurl = $sess->url(URL . "select_game.php");
header("Location: $newurl");
exit;
}
?>
<html><head><title>Merchant Empires: Galaxy Map Selection</title>
<link rel=stylesheet href="./merchantempires.css" type=text/css>
</head><body text=white background="./images/createbg.gif"><?php
include("./templates/header.html");
?>
<table width=100%><tr>
<td width=100 vAlign=top><?php
$player = new ME_Player;
$player->get_player($player_id);
$game_id = $player->f("game_id");
$ship = new ME_Ship;
$ship->get_ship($player_id);
$ship->add_parameter("time", date ("Y H:i:s"));
$ship->add_parameter("current_screen", "galaxymap");
echo $ship->get_transform("./xslt/mainmenu.xslt", $ship->get_xml());
?>
</td>
<td vAlign=top align=left width=0> </td>
<td vAlign=top width=500>
<table border=0 cellPadding=0 cellSpacing=0>
<tr>
<td bgColor=#993300>
<table border=0 cellPadding=5 cellSpacing=1 width=500>
<tr>
<td width=500 bgColor=#000000 align=left valign=middle>
<table border=0>
<tr>
<td align=left colspan=6>
<font color=#3333FF face=arial,helvetica,swiss size=5>GALAXY MAP SELECTION</font>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br><?php
$db = new ME_DB;
$query = sprintf("select * from maps where game_id = '%s'", $game_id);
$db->query($query);
?>
<table width=500 border=0 cellPadding=0 cellSpacing=0>
<tr>
<td bgColor=#003399>
<table border=0 cellPadding=5 cellSpacing=1>
<tr>
<td width=500 bgColor=#000000 align=left valign=middle>
<table cols=2 width=100% border=0>
<tr>
<td valign=top width=230>
<font color=#3333FF face=arial,helvetica,swiss size=3><b>Galaxies<br></font></b><br>
<font color=#cccccc face=arial,helvetica,swiss size=3><?php
while ( $db->next_record() ) {
echo " <a href=";
$sess->purl(URL . "galaxy_map_mini.php");
echo "?id=" . $db->f("map_id") . ">";
echo $db->f("description");
echo "</a><br>";
}
?>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td valign=top align=right width=100%>
</td></tr></table>
</body></html><?php
page_close();
?>