home *** CD-ROM | disk | FTP | other *** search
/ Excalibur 50 / Excalibur_50_cd.bin / mw2demo / mw2demo.exe / SETUP.BAT < prev    next >
DOS Batch File  |  1995-08-22  |  4KB  |  167 lines

  1. @echo off
  2. :mainmenu
  3. cls
  4. rem  **** INPUT SELECTION
  5.  
  6. echo.
  7. echo ----------- MECHWARRIOR 2 DEMO SETUP MAIN MENU -----------
  8. echo.
  9. echo What would you like to do?:
  10. echo.
  11. echo         1 = Change Input Device (Joystick/Mouse/Keyboard)
  12. echo         2 = Select Sound Card
  13. echo         3 = View MechWarrior 2 Demo Technical Information
  14. echo         4 = Print MechWarrior 2 Demo Technical Information
  15. echo         5 = Start Game or Exit
  16. echo.
  17. echo NOTE: A printer must be connected if you select option 4.
  18. echo.
  19. echo Press a number (1 through 5) to select the option you want:
  20. echo.
  21. choice /c:12345
  22. echo.
  23. if errorlevel 5 goto end
  24. if errorlevel 4 goto printit
  25. if errorlevel 3 goto readit
  26. if errorlevel 2 goto sound
  27. if errorlevel 1 goto controls
  28.  
  29. :printit
  30. type mw2info.txt >prn
  31. goto mainmenu
  32.  
  33. :readit
  34. edit mw2info.txt
  35. goto mainmenu
  36.  
  37. :controls
  38. cls
  39. echo.
  40. echo ----------- MECHWARRIOR 2 DEMO INPUT DEVICE MENU -----------
  41. echo.
  42. echo Please choose an input device:
  43. echo.
  44. echo         1 = CH Flightstick
  45. echo         2 = Thrustmaster Flight Control System
  46. echo         3 = Microsoft Sidewinder
  47. echo         4 = Standard joystick
  48. echo         5 = Microsoft compatible mouse
  49. echo         6 = Keyboard
  50. echo         7 = No Change
  51. echo.
  52. echo Press a number (1 through 7) to select the option you want:
  53. echo (Please note that for this demo, you cannot use a joystick
  54. echo for modem play.  Only mouse and keyboard are supported.
  55. echo Joystick play will be supported in the full modem version.)
  56. echo.
  57. choice /c:1234567
  58. echo.
  59. if errorlevel 7 goto mainmenu
  60. if errorlevel 6 goto keyboard
  61. if errorlevel 5 goto mouse
  62. if errorlevel 4 goto standard
  63. if errorlevel 3 goto micro
  64. if errorlevel 2 goto thrust
  65. if errorlevel 1 goto ch
  66. goto mainmenu
  67.  
  68. :keyboard
  69. del \mw2demo\input.map
  70. echo Copying keyboard map
  71. copy keyboard.map input.map
  72. goto mainmenu
  73.  
  74. :mouse
  75. del \mw2demo\input.map
  76. echo Copying mouse map
  77. copy mouse.map input.map
  78. goto mainmenu
  79.  
  80. :standard
  81. del \mw2demo\input.map
  82. echo Copying standard joystick map
  83. copy joystick.map input.map
  84. goto mainmenu
  85.  
  86. :micro
  87. del \mw2demo\input.map
  88. echo Copying Microsoft joystick map
  89. copy msjstick.map input.map
  90. goto mainmenu
  91.  
  92. :thrust
  93. del \mw2demo\input.map
  94. echo Copying Thrustmaster Flight Control System map
  95. copy tmaster.map input.map
  96. goto mainmenu
  97.  
  98. :ch
  99. del \mw2demo\input.map
  100. echo Copying CH Flightstick map
  101. copy fltstck.map input.map
  102. goto mainmenu
  103.  
  104. :sound
  105. cls
  106. echo.
  107. echo.
  108. echo The SETSOUND utility will now run.  Through this utility, you will be
  109. echo able to select your music and digital audio sound cards.
  110. echo.
  111. echo After SETSOUND has successfully run, type "mw2demo"
  112. echo to run the MechWarrior 2 demo.
  113. echo.
  114. pause
  115. CD \MW2DEMO\SND
  116. setsound
  117. cd ..
  118. goto mainmenu
  119.  
  120. :end
  121. cls
  122. echo.
  123. echo ----------- MECHWARRIOR 2 DEMO GAME MENU -----------
  124. echo.
  125. echo What would you like to do?:
  126. echo.
  127. echo         1 = Run the MechWarrior 2 DEMO (Standard VGA)
  128. echo         2 = Run the MechWarrior 2 DEMO (SVGA Mode)
  129. echo         3 = Return To Previous Menu
  130. echo         4 = Exit To DOS
  131. echo.
  132. echo Press a number (1 through 4) to select the option you want:
  133. echo.
  134. choice /c:1234
  135. echo.
  136. if errorlevel 4 goto realend
  137. if errorlevel 3 goto mainmenu
  138. if errorlevel 2 goto playsvga
  139. if errorlevel 1 goto playdemo
  140.  
  141. :playsvga
  142. cls
  143. mw2demo -svga
  144. goto end
  145.  
  146. :playdemo
  147. cls
  148. mw2demo
  149. goto end
  150.  
  151. :realend
  152. cls
  153. echo.
  154. echo Thank you for trying Activision's MechWarrior 2 demo.
  155. echo.
  156. echo In the future, use any of the following commands from 
  157. echo the MechWarrior 2 Demo directory:
  158. echo.
  159. echo     SETUP           Change input and sound devices.
  160. echo     MW2DEMO         To run the demo in standard VGA mode.
  161. echo     MW2DEMO -SVGA   To run the demo in SVGA mode.
  162. echo.
  163. echo We hope you have enjoyed the MechWarrior 2 demo, and
  164. echo remember...................Death is your birthright!
  165. echo.
  166. @echo on
  167.