home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM User 1995 September / cdrom-user-14-1995-09.iso / reddrag / dotmania / dotmania.exe / DOT2DOT.BAT < prev    next >
DOS Batch File  |  1995-01-21  |  1KB  |  54 lines

  1. @echo off
  2. rem If you have a Sound Blaster and want to hear background music in
  3. rem Dot-Mania, you must first load the SBFMDRV driver.  Use this batch
  4. rem file to load and unload this driver.  You may have to modify the
  5. rem path to SBFMDRV.COM if you don't have it in the SB directory.
  6. rem For Dot-Mania to work properly with a Sound Blaster, ensure you've
  7. rem got the SOUND and BLASTER environment variables setup correctly
  8. rem (see your Sound Blaster manuals for more info).
  9.  
  10. if "%SOUND%" == "" goto check2
  11. if exist %SOUND%\sbfmdrv.com goto sound1
  12. goto sound4
  13.  
  14. :check2
  15. if exist \sb\sbfmdrv.com goto sound2
  16. if exist \sb16\sbfmdrv.com goto sound3
  17.  
  18. :nosound
  19. dotprog
  20. goto exit
  21.  
  22. :sound1
  23. rem Run SBFMDRV from the directory pointed to by the SOUND variable
  24. %SOUND%\sbfmdrv
  25. dotprog       
  26. %SOUND%\sbfmdrv /u
  27. goto exit
  28.  
  29. :sound2
  30. rem Run SBFMDRV from the SB directory
  31. \sb\sbfmdrv
  32. dotprog       
  33. \sb\sbfmdrv /u
  34. goto exit
  35.  
  36. :sound3
  37. rem Run SBFMDRV from the SB16 directory
  38. \sb16\sbfmdrv
  39. dotprog
  40. \sb16\sbmdrv /u
  41. goto exit
  42.  
  43. :sound4
  44. rem We've tried looking everywhere but can't find SBFMDRV, however because
  45. rem the SOUND variable exists, there's probably a non-Sound Blaster sound
  46. rem card present.  Try loading the SBFMDRV supplied with Dot-Mania (this
  47. rem may or may not work, depending on the sound card).
  48. sbfmdrv
  49. dotprog
  50. sbfmdrv /u
  51. goto exit
  52.  
  53. :exit
  54.