website/screenshots.php

41 lines
1.5 KiB
PHP
Raw Normal View History

2000-10-05 05:44:29 +00:00
<? // Preamble
$pageName = "Screenshots";
2000-10-05 05:44:29 +00:00
$focused = "none"; // Dock icon name to gets a border
2000-10-05 06:11:38 +00:00
require "parts/preamble.php"; // Load most of document
2000-10-05 05:47:23 +00:00
2000-10-05 06:11:38 +00:00
function screenshot ($name, $caption)
2000-10-05 05:47:23 +00:00
{
echo '<TR>' .
' <TD>';
echo '<P align="center"><A href="/img/screenshots/' . $name . '.png">';
echo '<IMG src="/img/screenshots/' . $name . '.jpg" alt="View at full size" border="1">';
2000-10-05 06:11:38 +00:00
echo '</A>';
echo "<P>$caption";
echo ' </TD>' .
'</TR>';
2000-10-05 05:47:23 +00:00
}
?>
<P>Finally! Here are some screen captures of QuakeForge in action, showing off
some of the things we've done to this beast. None of these shots are
gamma-modified or doctored, they are what you actually see in the game.
<P>
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
<TR vAlign="top">
<TD><?
tableBoxHeader (featureBgColor, featureHeadColor);
tableTitle ('QuakeForge: Newtree', 1, featureHeadColor);
screenshot ('wateralpha-0.3', 'The Elder World pool, with a watervised map and with r_wateralpha 0.3. If you look closely, you can see the partially fullbright texture on the nail box below.');
screenshot ('dlights-quad-rocket', 'This one really shows off dynamic lighting and fullbrights. The player has quad damage, causing them to give off a blue dynamic light. A rocket is exploding after hitting a wall, and in the background you see the fullbrights on the exit glowing bright red.');
// put more here
2000-10-05 06:11:38 +00:00
tableBoxFooter ();
?></TD>
</TR>
</TABLE>
<?
2000-10-05 06:11:38 +00:00
require "parts/postamble.php"; // Finish this sucker up
2000-10-05 05:44:29 +00:00
?>