home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo Bioforge (R) UltraSound Support Installation
- echo.
- echo Designed, Coded, and Tested by:
- echo J. Allen Brack, Todd Wachhaus, and Marshall Andrews
- echo.
- echo Special thanks to John Smith of Advanced Gravis for additional testing.
-
- if [%1] == [] goto usage
- if [%2] == [] goto usage
-
- md c:\biogus
- biogus c:\biogus
- echo.
- echo We are going to run the INSTALL in the Bioforge directory.
- echo Set 'Sound Configuration' for 'no sound card'
- echo Set 'Music Configuration' for 'Sound Blaster'
- pause
- %1:
- cd\%2
- install.exe
- echo.
- cls
- copy c:\biogus\guspat.dll %1:\%2\ailxmi.dll > nul
- copy c:\biogus\loadpats.exe %1:\%2\loadpats.exe > nul
- copy c:\biogus\biogus.ini %1:\%2\biogus.ini > nul
- copy c:\biogus\bio.bat %1:\%2\bio.bat > nul
- echo.
- echo.
- echo Running LOADPATS:
- loadpats -Ibiogus.ini
- echo.
- echo.
- echo.
- echo You will now need to edit the INSTALL.OPT
- echo file and change the 'MusicPort' from
- echo "0x388" to "0x'enter your Ultrasnd port'"
- echo The default would be "0x220". Save the file.
- pause
- cd\
- edit %1:\%2\install.opt
- echo You will now hear Bioforge's General MIDI music.
- echo.
- c:
- cd\biogus
- del biogus.ini
- del guspat.dll
- del loadpats.exe
- del bio.bat
- cd..
- rd biogus
- %1:
- cd\%2
- echo.
- echo From now on, run the program BIO in the directory
- echo in which you installed BIOFORGE to.
- echo.
- goto :end
-
- :usage
- echo Usage:
- echo.
- echo GUS drive_letter bioforge_directory [ENTER]
- echo.
- echo where drive_letter is the drive where BIOFORGE is installed
- echo.
- echo and bioforge_directory is the directory where BIOFORGE is installed.
- echo.
- echo e.g. GUS C BIOFORGE
- echo.
- goto :end
-
- :end
-