Files
scummvm-web/demos.php
T

126 lines
4.8 KiB
PHP

<?
/*
* Links to Demo downloads
*
*/
// set this for position of this file relative
$file_root = ".";
// load libraries
require($file_root."/include/"."incl.php");
// start of html
html_header("ScummVM :: Game Demos");
sidebar_start();
//display welcome table
echo html_round_frame_start("Game Demos","98%","",20);
?>
<h1>Game Demos</h1>
<p>
This page lists some links to demos of various games, that in general don't work as well as the
full versions. Full Throttle, The Dig, and the Curse of Monkey Island in particular.<br><br>
Do not file bug reports against these demos as they aren't supported games.<br><br>
Please contact us if you have a copy of a demo not listed here such as the separate Maniac Mansion demo.<br><br>
* Most of the demos are currently offline as mixnmojo.com is semi-down.<br>
<br><br>
</p>
<?
$demos = array(
'Zak McKracken and the Alien Mindbenders (Atari ST)'
=> array('http://www.cowlark.com/scumm.dat/zakstdemo.zip', 'zak'),
'The Secret of Monkey Island (16 colour)'
=> array('http://www.cowlark.com/scumm.dat/mi_demo2.zip', 'monkeyega'),
'The Secret of Monkey Island (Amiga)'
=> array('http://quick.mixnmojo.com/demos/mi1amigademo.zip', 'monkeyvga'),
'Indiana Jones and the Last Crusade (non interactive 16 colour)'
=> array('http://www.cowlark.com/scumm.dat/indy3ega-demo.zip', 'indy3ega'),
'Loom (non interactive 16 colour)'
=> array('ftp://ftp.lucasarts.com/demos/pc/Loomdemo.zip', 'loom'),
'Passport to Adventure (playable 16 colour demos of mi, loom, indy3)'
=> array('ftp://ftp.lucasarts.com/demos/pc/Sampler.zip', 'pass'),
'Indy3 & Loom (non interactive FM Towns demo)'
=> array('http://www.cowlark.com/scumm.dat/indyloom.zip', 'zak256'),
'Indy3 & Zak256 (non interactive FM Towns demo)'
=>array('http://www.cowlark.com/scumm.dat/indyzak.zip', 'zak256'),
'Zak256 & Loom (non interactive Fm Towns demo)'
=>array('http://www.cowlark.com/scumm.dat/zakloom.zip', 'zak256'),
'Monkey Island 2 (non interactive demo)'
=> array('http://www.cowlark.com/scumm.dat/mi2demo.zip', 'mi2demo'),
'Indiana Jones and the Fate of Atlantis (playable)'
=> array('ftp://ftp.lucasarts.com/demos/pc/Playfate.zip', 'playfate'),
'Indiana Jones and the Fate of Atlantis (non interactive)'
=> array('http://www.cowlark.com/scumm.dat/fate.zip', 'fate'),
'Indiana Jones and the Fate of Atlantis (non interactive FM Towns)'
=> array('http://www.cowlark.com/scumm.dat/indy4demo.zip', 'indydemo'),
'Sam and Max Hit the Road (non interacive)'
=> array('http://www.cowlark.com/scumm.dat/samdemo.zip', 'samdemo'),
'Sam and Max Hit the Road (interacive)'
=> array('ftp://ftp.lucasarts.com/demos/pc/Snmdemo.zip', 'snmdemo'),
'Sam and Max Hit the Road WIP (interacive)'
=> array('http://www.cowlark.com/scumm.dat/snmidemo.zip', 'snmidemo'),
'Putt-Putt Joins the Parade (DOS demo)'
=> array('http://www.cowlark.com/scumm.dat/puttpara.zip', 'puttdemo'),
'Putt-Putt Goes to the Moon (DOS demo)'
=> array('http://www.cowlark.com/scumm.dat/moondemo.zip', 'moondemo'),
'Fatty Bear\'s Birthday Surprise (DOS demo)'
=> array('http://www.cowlark.com/scumm.dat/fatdemo.zip', 'fbdemo'),
'Day of the Tentacle (non interactive)'
=> array('ftp://ftp.lucasarts.com/demos/pc/Dottdemo.zip', 'dottdemo'),
'Full Throttle'
=> array('http://quick.mixnmojo.com/demos/ftdemo.zip', 'ft'),
'The Dig'
=> array('http://quick.mixnmojo.com/demos/digdemo.zip', 'dig'),
'The Curse of Monkey Island (web demo)'
=> array('ftp://ftp.lucasarts.com/demos/pc/cursedemo.exe', 'comi'),
'The Curse of Monkey Island (demo with movies)*'
=> array('http://files.mixnmojo.com/m3demo.zip', 'comi'),
'Simon the Sorcerer'
=> array('http://www.cowlark.com/scumm.dat/simon1demo.zip', 'simon1demo'),
'Simon the Sorcerer 2 Talkie'
=> array('http://www.cowlark.com/scumm.dat/simon2demo.zip', 'simon2talkie'),
'Beneath A Steel Sky (FREEWARE FULL GAME - Floppy)'
=> array('http://www.mixnmojo.com/bss/BASS-Floppy.zip', 'sky'),
'Beneath A Steel Sky (FREEWARE FULL GAME - Talkie CD)'
=> array('http://prdownloads.sourceforge.net/scummvm/BASS-CD.zip?download', 'sky'),
'Broken Sword II'
=> array('http://ftp.se.kde.org/pub/pc/games/pcgameworld/demos/bs2-demo.zip', 'sword2demo')
);
// render the demo list
echo html_frame_start("Game Demos","90%",2,1,"color4");
echo html_frame_tr(
html_frame_td("Demo Name / Download Link").
html_frame_td("Game Target"),
"color4"
);
$c = 0;
while (list($name,$array) = each($demos))
{
if ($c % 2 == 0) { $color = "color2"; } else { $color = "color0"; }
echo html_frame_tr(
html_frame_td("<a href=\"$array[0]\">$name</a>").
html_frame_td($array[1]),
$color
);
$c++;
}
echo html_frame_end("&nbsp;");
echo html_p();
echo html_round_frame_end("&nbsp;");
// end of html
sidebar_end();
html_footer();
?>