home *** CD-ROM | disk | FTP | other *** search
/ LAUNCH 3 / LAUNCH.BIN / mac / MWARRIOR / MW2DEMO.EXE / SETUP.BAT < prev    next >
DOS Batch File  |  1995-08-08  |  4KB  |  164 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.
  54. choice /c:1234567
  55. echo.
  56. if errorlevel 7 goto mainmenu
  57. if errorlevel 6 goto keyboard
  58. if errorlevel 5 goto mouse
  59. if errorlevel 4 goto standard
  60. if errorlevel 3 goto micro
  61. if errorlevel 2 goto thrust
  62. if errorlevel 1 goto ch
  63. goto mainmenu
  64.  
  65. :keyboard
  66. del \mw2demo\input.map
  67. echo Copying keyboard map
  68. copy keyboard.map input.map
  69. goto mainmenu
  70.  
  71. :mouse
  72. del \mw2demo\input.map
  73. echo Copying mouse map
  74. copy mouse.map input.map
  75. goto mainmenu
  76.  
  77. :standard
  78. del \mw2demo\input.map
  79. echo Copying standard joystick map
  80. copy joystick.map input.map
  81. goto mainmenu
  82.  
  83. :micro
  84. del \mw2demo\input.map
  85. echo Copying Microsoft joystick map
  86. copy msjstick.map input.map
  87. goto mainmenu
  88.  
  89. :thrust
  90. del \mw2demo\input.map
  91. echo Copying Thrustmaster Flight Control System map
  92. copy tmaster.map input.map
  93. goto mainmenu
  94.  
  95. :ch
  96. del \mw2demo\input.map
  97. echo Copying CH Flightstick map
  98. copy fltstck.map input.map
  99. goto mainmenu
  100.  
  101. :sound
  102. cls
  103. echo.
  104. echo.
  105. echo The SETSOUND utility will now run.  Through this utility, you will be
  106. echo able to select your music and digital audio sound cards.
  107. echo.
  108. echo After SETSOUND has successfully run, type "mw2demo"
  109. echo to run the MechWarrior 2 demo.
  110. echo.
  111. pause
  112. CD \MW2DEMO\SND
  113. setsound
  114. cd ..
  115. goto mainmenu
  116.  
  117. :end
  118. cls
  119. echo.
  120. echo ----------- MECHWARRIOR 2 DEMO GAME MENU -----------
  121. echo.
  122. echo What would you like to do?:
  123. echo.
  124. echo         1 = Run the MechWarrior 2 DEMO (Standard VGA)
  125. echo         2 = Run the MechWarrior 2 DEMO (SVGA Mode)
  126. echo         3 = Return To Previous Menu
  127. echo         4 = Exit To DOS
  128. echo.
  129. echo Press a number (1 through 4) to select the option you want:
  130. echo.
  131. choice /c:1234
  132. echo.
  133. if errorlevel 4 goto realend
  134. if errorlevel 3 goto mainmenu
  135. if errorlevel 2 goto playsvga
  136. if errorlevel 1 goto playdemo
  137.  
  138. :playsvga
  139. cls
  140. mw2demo -svga
  141. goto end
  142.  
  143. :playdemo
  144. cls
  145. mw2demo
  146. goto end
  147.  
  148. :realend
  149. cls
  150. echo.
  151. echo Thank you for trying Activision's MechWarrior 2 demo.
  152. echo.
  153. echo In the future, use any of the following commands from 
  154. echo the MechWarrior 2 Demo directory:
  155. echo.
  156. echo     SETUP           Change input and sound devices.
  157. echo     MW2DEMO         To run the demo in standard VGA mode.
  158. echo     MW2DEMO -SVGA   To run the demo in SVGA mode.
  159. echo.
  160. echo We hope you have enjoyed the MechWarrior 2 demo, and
  161. echo remember...................Death is your birthright!
  162. echo.
  163. @echo on
  164.