A DOSBox frontend for the Internet Archive MS-DOS games collection
IA Launcher is a graphical games launcher for all those georgeous MS-DOS games from yestermillenium. It uses the Internet Archive to download games on-the-fly and DOSBox to play them offline. Visit the IA Launcher website to see a list of all the included games.
Hurrah! IA Launcher now has its own Windows installer! You can download it here.
You can also install IA Launcher using pip3 install ialauncher
on
any operating system. Continue reading for detailed instructions.
First of all, get yourself a snazzy retro looking PC. Or just use your current computer running your operating system of choice. Start by installing the following dependencies:
Now you can install IA Launcher using pip
. Open a command-line
window and type the following command:
pip install ialauncher
Depending on your system, you might have to use sudo
and/or the
pip3
command instead of pip
. If the previous command didn't work,
try this one:
sudo pip3 install ialauncher
You can now launch the interface using the ialauncher
command. To
see the available options, type ialauncher --help
.
A useful option is --slideshow X
which turns IA Launcher into an
awesome screensaver, displaying a new DOS game title screen every X
seconds!
During gameplay, you should also be familiar with the DOSBox Special
Keys. The most important
one is probably Ctrl-F9
, which immediately exits DOSBox and
returns to the games menu.
Welcome to the world of MS-DOS where you are constantly fighting with
IRQ values, memory managers and setup programs. Thankfully, the
default DOSBox configuration runs nearly all DOS games perfectly out
of the box. Also, all the games in the games
directory have custom
DOSBox configurations (where needed) and startup commands in their
metadata.ini
files. However, you will certainly end up in situations
where you have to reconfigure a game. Try the following:
C:
drive.dir
command to see which files are presentcd
command to change to the game subdirectory, if neededinstall.{bat,exe,com}
,
setsound.{bat,exe,com}
or setup.{bat,exe,com}
and execute itHopefully, the setup utility will allow you to change the sound card parameters. DOSBox emulates all kinds of sounds cards, so try the following and it will probably work:
Sound card: Soundblaster or AdLib\ Address/port: 220\ IRQ: 7\ DMA: 1
Each game's metadata, including the command that starts the game, is
stored in a file called metadata.ini
. In many cases IA Launcher
provides the needed commands to install and setup the game when run
for the first time. However, in other cases the commands listed in
metadata.ini
simply assume the installation was already done with
default settings. In these cases, try the following:
C:
drive.mount a .
to mount the game's directory as the floppy drive
(many games assume they are being installed from a floppy disk)a:
to switch to the mounted floppy driveinstall
and follow the installation procedure, accepting all
the default valuesAfter the installation has finished, try launching the game again and hopefully the default startup command will now work. If not, keep reading...
Here is how you can easily change the command(s) that launch a game:
C:
drive.echo cd [directoryname] > dosbox.bat
to put the
cd
command in the file named dosbox.bat
echo [command that launches the game] >> dosbox.bat
to append
the command that launches the game to the file dosbox.bat
dosbox.bat
and verify that your game now launches correctlyWhen you exit the emulator, IA Launcher will save the contents of
dosbox.bat
to the emulator_start
variable inside the game's
metadata.ini
. The next time you launch the game, the dosbox.bat
file will be run automatically.
More advanced logic can be created with batch file syntax. As an
example, here is the contents of emulator_start
for the game SimCity
2000:
if exist sc2000 goto run
mount a .
a:
install
:run
cd sc2000
sc2000
You can also mount CD images and get CD audio while playing:
imgmount d Quake.cue -t iso
if exist quake goto run
d:
install
:run
cd quake
quake
Did you get a previously not-working game running by changing the
emulator_start
variable? Or did you add a new game and captured a
nice title screen? Please send me a pull request!