home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 10 / 1995-09_Disc_10.iso / delphine / install.bat < prev    next >
DOS Batch File  |  1995-06-27  |  2KB  |  101 lines

  1. @echo off
  2. echo.
  3. echo FADE TO BLACK - (c) DELPHINE SOFTWARE 1995
  4. rem Version of 27 june 1995
  5.  
  6. if "%1==" goto SYNTAXE
  7. if "%2==" goto SYNTAXE
  8. if "%3==" goto SYNTAXE
  9.  
  10. set SRCDRV=%1\delphine
  11. set DSTDRV=%2
  12. set DSTDIR=%3
  13.  
  14.  
  15.  
  16. echo.
  17. echo Minimum installation of game FADE TO BLACK.
  18. echo.
  19. echo You need 12 Mb free on your hard disk drive to install the game.
  20. echo.
  21.  
  22. if not exist %DSTDRV%\%DSTDIR%\nul goto NOT_ALREADY_EXIST
  23.  
  24. echo WARNING : Destination directory %DSTDRV%\%DSTDIR% already exist !
  25. echo.
  26.  
  27. :NOT_ALREADY_EXIST
  28.  
  29. echo Press any key to install the game on drive %DSTDRV% in directory \%DSTDIR%
  30. echo or Ctrl-C to abort installation now ...
  31. echo.
  32. pause
  33. echo Copying files to disk ...
  34.  
  35. md %DSTDRV%\%DSTDIR%
  36. if not exist %DSTDRV%\%DSTDIR%\nul goto ERR_NOT_EXIST
  37.  
  38. cd %DSTDRV%\%DSTDIR%
  39. md %DSTDRV%data
  40. cd %DSTDRV%data
  41. md %DSTDRV%sound
  42. md %DSTDRV%drivers
  43. cd %DSTDRV%\%DSTDIR%
  44. copy %SRCDRV%\data\level1.spr %DSTDRV%\%DSTDIR%\data > NUL
  45. copy %SRCDRV%\data\level1.f3d %DSTDRV%\%DSTDIR%\data > NUL
  46. copy %SRCDRV%\data\level1.p3d %DSTDRV%\%DSTDIR%\data > NUL
  47. copy %SRCDRV%\data\level0.dem %DSTDRV%\%DSTDIR%\data > NUL
  48.  
  49. copy %SRCDRV%\data\sound\*.sng %DSTDRV%\%DSTDIR%\data\sound > NUL
  50. copy %SRCDRV%\data\sound\*.snd %DSTDRV%\%DSTDIR%\data\sound > NUL
  51. copy %SRCDRV%\data\drivers %DSTDRV%\%DSTDIR%\data\drivers > NUL
  52.  
  53. copy %SRCDRV%\delphine.ex_ %DSTDRV%\%DSTDIR% > NUL
  54. copy %SRCDRV%\delphine.ini %DSTDRV%\%DSTDIR% > NUL
  55. copy %SRCDRV%\dos4gw.exe %DSTDRV%\%DSTDIR% > NUL
  56. copy %SRCDRV%\trigo.dat %DSTDRV%\%DSTDIR% > NUL
  57. copy %SRCDRV%\*.bat %DSTDRV%\%DSTDIR% > NUL
  58. copy %SRCDRV%\read.me %DSTDRV%\%DSTDIR% > NUL
  59.  
  60.  
  61. %DSTDRV%
  62. cd \%DSTDIR%
  63. ren delphine.ex_ delphine.exe
  64. del install.bat > NUL
  65. del inst_ful.bat > NUL
  66.  
  67. echo.
  68. echo You should read the READ.ME file.
  69. echo.
  70. echo Run SETSOUND if you have a sound card.
  71. echo.
  72. echo Type F2B and press ENTER key to start the game.
  73. echo. 
  74.  
  75. goto END
  76.  
  77. :ERR_NOT_EXIST
  78.  
  79. echo.
  80. echo Cannot create destination directory !
  81. echo Aborting installation, game not installed
  82. echo.
  83. goto END
  84.  
  85. :END_ERR
  86.  
  87. goto END
  88.  
  89. :SYNTAXE
  90.  
  91. echo.
  92. echo Syntax :
  93. echo "%0 <src drive> <dest drive> <dest directory>"
  94. echo.
  95. echo Example :
  96. echo To install the game in the C:\F2B path with the CDROM in the D: drive.
  97. echo "%0 D: C: F2B"
  98. echo.
  99.  
  100. :END
  101.