home *** CD-ROM | disk | FTP | other *** search
/ The Amiga Game Guide / AmigaGameGuide_CD.iso / Amiga / Game-Installer / WHD_Installers / Games_C-D / CurseOfEnchantiaHD / Install < prev    next >
Text File  |  1977-12-31  |  4KB  |  210 lines

  1. ;****************************
  2.  
  3. (set #sub-dir "data")        ;sub directory containing data files
  4. (set #readme-file "CurseOfEnchantia.readme")    ;name of readme file
  5. (set #last-disk 1)          ;amount of disks
  6. (set #disk-size 901120)     ;size of each disk
  7.  
  8. ;****************************
  9.  
  10. ;----------------------------
  11. ; Checks if given program is reachable via the path
  12. ; if not abort install
  13. ; IN:  #program - to check
  14. ; OUT: -
  15.  
  16. (procedure P_chkrun
  17.   (if
  18.     (= 0 (run ("cd SYS:\nWhich %s" #program)))
  19.     ("")
  20.     (abort ("You must install \"%s\" first !\nIt must be accessible via the path.\nYou can find it in the whdload package." #program))
  21.   )
  22. )
  23.  
  24. (procedure P_image
  25.   (message ("\nInsert \"%s\" into drive %s !\n\n(make sure it's the right disk because it will not checked)" #CI_diskname #CI_drive))
  26.   (if
  27.     (= 0 
  28.       (run ("cd \"%s\"\nDIC %s FD=%ld LD=%ld SIZE=%ld >CON:///1000//CLOSE" #dest #CI_drive #CI_diskno #CI_diskno #disk-size))
  29.     )
  30.     ("")
  31.     (abort "\"DIC\" has failed to create a diskimage")
  32.   )
  33. )
  34.  
  35. ;---
  36.  
  37. (if
  38.   (exists #readme-file)
  39.   (if 
  40.     (= 0 (run ("SYS:Utilities/Multiview %s" #readme-file)))
  41.     ("")
  42.     (run ("SYS:Utilities/More %s" #readme-file))
  43.   )
  44. )
  45.  
  46. (set #program "WHDLoad")
  47. (P_chkrun)
  48.  
  49. (set #program "DIC")
  50. (P_chkrun)
  51.  
  52. (set @default-dest
  53.   (askdir
  54.     (prompt ("Where should \"%s\" installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  55.     (help @askdir-help)
  56.     (default @default-dest)
  57.     (disk)
  58.   )
  59. )
  60. (set #dest (tackon @default-dest @app-name))
  61. (if
  62.   (exists #dest)
  63.   (
  64.     (set #choice
  65.       (askbool
  66.         (prompt ("\nDirectory \"%s\" already exists.\n Should it be deleted ?" #dest))
  67.         (default 1)
  68.         (choices "Delete" "Skip")
  69.         (help @askbool-help)
  70.       )
  71.     )
  72.     (if
  73.       (= #choice 1)
  74.       (run ("Delete \"%s\" \"%s.info\" All" #dest #dest))
  75.     )
  76.   )
  77. )
  78. (makedir #dest
  79.   (help @makedir-help)
  80.   (infos)
  81. )
  82.  
  83. ;----------------------------
  84.  
  85. (copyfiles
  86.   (help @copyfiles-help)
  87.   (source ("%s.slave" @app-name))
  88.   (dest #dest)
  89. )
  90.  
  91. (if
  92.   (exists ("%s.newicon" @app-name))
  93.   (set #icon
  94.     (askchoice
  95.       (prompt "\nWhich icon do you like to install ?\n")
  96.       (default 0)
  97.       (choices "Normal" "NewIcon")
  98.       (help @askchoice-help)
  99.     )
  100.   )
  101.   (set #icon 0)
  102. )
  103. (select #icon
  104.   (set #icon ("%s.inf" @app-name))
  105.   (set #icon ("%s.newicon" @app-name))
  106. )
  107. (copyfiles
  108.   (help @copyfiles-help)
  109.   (source #icon)
  110.   (newname ("%s.info" @app-name))
  111.   (dest #dest)
  112. )
  113. (if
  114.   (exists #readme-file)
  115.   (copyfiles
  116.     (help @copyfiles-help)
  117.     (source #readme-file)
  118.     (dest #dest)
  119.   )
  120. )
  121. (if
  122.   (exists ("%s.info" #readme-file))
  123.   (copyfiles
  124.     (help @copyfiles-help)
  125.     (source ("%s.info" #readme-file))
  126.     (dest #dest)
  127.   )
  128. )
  129.  
  130. (if
  131.   (= #sub-dir "")
  132.   ("")
  133.   (
  134.     (set #dest (tackon #dest #sub-dir))
  135.     (makedir #dest
  136.       (help @makedir-help)
  137.     )
  138.   )
  139. )
  140.  
  141. (copyfiles
  142.   (help @copyfiles-help)
  143.   (source "RipDisk1.slave")
  144.   (dest #dest)
  145. )
  146.  
  147. (set #CI_drive "DF0:")
  148.  
  149. (set #CI_diskno 1)
  150. (while
  151.   (<= #CI_diskno #last-disk)
  152.   (
  153.     (set #CI_diskname ("%s Disk %ld" @app-name #CI_diskno))
  154.     (P_image)
  155.     (run ("FileNote Disk.%ld %s Quiet" #CI_diskno @app-name))
  156.     (set #CI_diskno (+ #CI_diskno 1))
  157.   )
  158. )
  159.  
  160. (message "Now I need to rip the files from disk #1. Screen will go black until ripper finished his work. Empty savedisk image will be also created.")
  161.  
  162. (run ("cd \"%s\"\nwhdload RipDisk1.slave WriteDelay=50\nDelete Disk.1 RipDisk1.slave ALL QUIET FORCE" #dest))
  163.  
  164. (message "Please insert Curse of Enchantia disk 2 in DF0:")
  165.  
  166. (copyfiles
  167.   (help @copyfiles-help)
  168.   (source ("df0:"))
  169.   (dest #dest)
  170.   (all)
  171. )
  172.  
  173. (message "Please insert Curse of Enchantia disk 3 in DF0:")
  174.  
  175. (copyfiles
  176.   (help @copyfiles-help)
  177.   (source ("df0:"))
  178.   (dest #dest)
  179.   (all)
  180. )
  181.  
  182. (message "Please insert Curse of Enchantia disk 4 in DF0:")
  183.  
  184. (copyfiles
  185.   (help @copyfiles-help)
  186.   (source ("df0:"))
  187.   (dest #dest)
  188.   (all)
  189. )
  190.  
  191. (message "Please insert Curse of Enchantia disk 5 in DF0:")
  192.  
  193. (copyfiles
  194.   (help @copyfiles-help)
  195.   (source ("df0:"))
  196.   (dest #dest)
  197.   (all)
  198. )
  199.  
  200. (message "Please insert Curse of Enchantia disk 6 in DF0:")
  201.  
  202. (copyfiles
  203.   (help @copyfiles-help)
  204.   (source ("df0:"))
  205.   (dest #dest)
  206.   (all)
  207. )
  208.  
  209. (exit)
  210.