home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2.4 / 1996-05_-_Disc_2.4.bin / movie / d2demo.bat next >
DOS Batch File  |  1995-10-23  |  2KB  |  77 lines

  1. rem DESCENT 2 self-playing Movie/Trailer
  2. rem NOTE: more soundcard support is provided.
  3. rem Type "trailer ?" for all soundcard options.
  4.  
  5. @echo off
  6. cls
  7. echo             ╔═══════════════════════╗
  8. echo             ║   DESCENT 2 TRAILER   ║
  9. echo             ║  (non-playable demo)  ║
  10. echo             ╚═══════════════════════╝
  11. echo        D2 trailer requires 486/33 or better
  12. echo      ───────────────────────────────────────
  13. echo         Select Digital Sound device
  14. echo             0 - exit
  15. echo             1 - no sound card
  16. echo             2 - Sound Blaster compatible
  17. echo             3 - Sound Blaster 16/AWE32
  18. echo             4 - ProAudio Spectrum
  19. echo             5 - Gravis Ultrasound
  20. echo      ───────────────────────────────────────
  21.  
  22. :sound
  23. choice /C012345 "Enter choice "
  24. if errorlevel 6 goto :gus
  25. if errorlevel 5 goto :spectrum
  26. if errorlevel 4 goto :blast16
  27. if errorlevel 3 goto :blast
  28. if errorlevel 2 goto :nosound
  29. if errorlevel 1 goto :done
  30. goto :sound
  31.  
  32. :nosound
  33. choice "Continuously loop trailer "
  34. if errorlevel 1 goto :no2
  35. trailer
  36. goto :done
  37. :no2
  38. trailer loop
  39. goto :done
  40.  
  41. :blast
  42. choice "Continuously loop trailer "
  43. if errorlevel 2 goto :blast2
  44. trailer loop SB
  45. goto :done
  46. :blast2
  47. trailer SB
  48. goto :done
  49.  
  50. :blast16
  51. choice "Continuously loop trailer "
  52. if errorlevel 2 goto :bl162
  53. trailer loop SB16
  54. goto :done
  55. :bl162
  56. trailer SB16
  57. goto :done
  58.  
  59. :spectrum
  60. choice "Continuously loop trailer "
  61. if errorlevel 2 goto :spec2
  62. trailer loop PAS
  63. goto :done
  64. :spec2
  65. trailer PAS
  66. goto :done
  67.  
  68. :gus
  69. choice "Continuously loop trailer "
  70. if errorlevel 2 goto :gus2
  71. trailer loop GUS
  72. goto :done
  73. :gus2
  74. trailer GUS
  75.  
  76. :done
  77.