home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / PROCONTROL1'0.DMS / in.adf / Install-ProCONTROL < prev    next >
Encoding:
Text File  |  1993-04-10  |  11.6 KB  |  482 lines

  1. ; ************************************************
  2. ; *
  3. ; * $VER: Install-ProCONTROL v1.0.0 (02.04.93)
  4. ; *
  5. ; * This is the installation script for Doug Crane's ProCONTROL,
  6. ; * a Batch Processing Front-End for ASDG's Art Department Professional and MorphPlus.
  7. ; *
  8. ; * Software is Copyright © 1992-1993 Doug Crane  All Rights Reserved
  9. ; * Manual is Copyright © 1993 Doug Crane and ASDG, Incorporated  All Rights Reserved
  10. ; * Published by ASDG, Incorporated
  11. ; *
  12. ; ************************************************
  13.  
  14.  
  15. ; ****************************
  16. ; * Set up some global variables.
  17. ; ****************************
  18. ;
  19. (set ProductName        "ProCONTROL")        ; product name
  20. (set ProductBaseName        "ProCONTROL")        ; product base name
  21. (set VersionNum            "1.0")            ; product version number
  22.  
  23. (set OSVersion            (/ (getversion) 65536))
  24. (set TotalFiles            0)
  25. (set AccumFiles            0)
  26. (set PctDone            0)
  27. (set DisplayReadMe        0)
  28.  
  29. (set Disk1Name            "ProCONTROL")        ; actual name of disk 1
  30.  
  31. (set DiskInstall        Disk1Name)        ; installation (main) disk
  32.  
  33.  
  34. (procedure setDirPath
  35. ;
  36. ; ****************************
  37. ; * Ask the user for a directory name.
  38. ; ****************************
  39. ;
  40. ; these variables must be defined before calling this procedure:
  41. ;    setDirPathWhy
  42. ;    setDirPathHelp
  43. ;    DirPath
  44. ;
  45. ; this procedure returns the selected directory in DirPath
  46. ;
  47.     (
  48.     (set moveon    FALSE)
  49.     (while (NOT moveon)
  50.         (
  51.         (set DirPath
  52.             (askdir
  53.                 (prompt    ("Please select the directory %s" setDirPathWhy)
  54.                 )
  55.                 (help    setDirPathHelp
  56.                     "\n"
  57.                     @askdir-help
  58.                 )
  59.                 (default DirPath)
  60.             )
  61.         )
  62.  
  63.         (if (= (exists DirPath) 0)
  64.             (makedir DirPath)
  65.             (set moveon    TRUE)
  66.         )
  67.         )
  68.     )
  69.     )
  70. )
  71.  
  72.  
  73. (procedure copyLibFile
  74. ;
  75. ; ****************************
  76. ; * Copy the specific library file to the LIBS: directory.
  77. ; ****************************
  78. ;
  79. ; these variables must be defined before calling this procedure:
  80. ;
  81. ;    copyLibFileName
  82. ;    copyLibFileHelp
  83. ;    DirPath
  84. ;
  85.     (
  86.     (if (= (exists (tackon DirPath copyLibFileName)) 1)
  87.         (
  88.         (protect (tackon DirPath copyLibFileName) "+rwed")
  89.         )
  90.     )
  91.     (copylib
  92.         (prompt    ("Copying %s to %s" copyLibFileName copyLibFileSize DirPath))
  93.         (help    copyLibFileHelp
  94.             "\n"
  95.             "If you already have a copy of this library in the selected destination directory, the library "
  96.             "included on the distribution disk will be compared to the one you "
  97.             "already have.  If your current library is an old version, the newer "
  98.             "version will be installed.\n"
  99.             "\n"
  100.             @copylib-help
  101.         )
  102.         (source copyLibFileName)
  103.         (dest DirPath)
  104.         (confirm)
  105.     )
  106.     )
  107. )
  108.  
  109.  
  110. (procedure deleteIfExists
  111. ;
  112. ; ****************************
  113. ; * Delete the given file, if it exists.
  114. ; ****************************
  115. ;
  116. ; these variables must be defined before calling this procedure:
  117. ;
  118. ;    deleteFileName
  119. ;
  120.     (
  121.     (if (= (exists deleteFileName) 1)
  122.         (
  123.         (protect deleteFileName "+rwed")
  124.         (delete deleteFileName)
  125.         )
  126.     )
  127.     )
  128. )
  129.  
  130.  
  131. (procedure dumpLZFile2Dir
  132. ;
  133. ; ****************************
  134. ; * Extract (dump) all files from an LZ-extractable archive file.
  135. ; ****************************
  136. ;
  137. ;    workingMsg
  138. ;    arcFileName
  139. ;    destDirName
  140. ;
  141.     (
  142.     (working workingMsg)
  143.     (set lzrc    (run ("RAM:lz -N -wRAM: x %s \"%s\"" arcFileName destDirName)))
  144.     (if (<> lzrc 0)
  145.         (message
  146.             ("Error decompressing %s's files into the %s directory." arcFileName destDirName)
  147.             "\n"
  148.             "Be sure that the directory you have specified as the "
  149.             "destination exists and has enough free space in it "
  150.             "to accept new files.  Also be sure that if the file "
  151.             "to be copied already exists, that the existing file "
  152.             "isn't protected from being overwritten or deleted.")
  153.     )
  154.     )
  155. )
  156.  
  157.  
  158. (procedure incrementMeter
  159. ;
  160. ; ****************************
  161. ; * Increment the progress meter indicator.
  162. ; ****************************
  163. ;
  164. ;    addToMeter
  165. ;
  166.     (
  167.     (set PctDone    (/ (* AccumFiles 100) TotalFiles))
  168.     (set AccumFiles    (+ AccumFiles addToMeter))
  169.     (complete PctDone)
  170.     )
  171. )
  172.  
  173.  
  174. (procedure addToUserStartup
  175. ;
  176. ; ****************************
  177. ; * Assigns a name to a particular directory.  Optionally adds it to the
  178. ; * S:user-startup file, if requested.
  179. ; ****************************
  180. ;
  181. ;    userStartupAppName
  182. ;    userStartupAssignName
  183. ;    userStartupAssignToName
  184. ;    userStartupHelp
  185. ;
  186.     (
  187.     (startup
  188.         (userStartupAppName)
  189.         (prompt ("Add %s: assignment to \"S:user-startup\"?" userStartupAssignName))
  190.         (help    userStartupHelp
  191.             "\n"
  192.             ("Select the Proceed button to add an %s: assignment to the S:user-startup file.\n" userStartupAssignName)
  193.             "\n"
  194.             @startup-help)
  195.         (command ("assign %s: \"%s\"" userStartupAssignName userStartupAssignToName))
  196.     )
  197.     (makeassign userStartupAssignName userStartupAssignToName)
  198.     )
  199. )
  200.  
  201.  
  202. ; ****************************
  203. ; * ProCONTROL Installation routine
  204. ; ****************************
  205. ;
  206. (procedure ProCONTROLInstall
  207.     (
  208.     ; ****************************
  209.     ; * Install the Program
  210.     ; ****************************
  211.     ;
  212.     (makeassign "PROCONTROLINSTALL" ProCONTROLDir)
  213.  
  214.     (set addToMeter    2)
  215.     (incrementMeter)
  216.  
  217.     (copyfiles
  218.         (prompt    ("Installing %s..." ProductName))
  219.         (help    "")
  220.         (source    ("%s:%s/%s" DiskInstall ProductBaseName ProductBaseName))
  221.         (dest    "PROCONTROLINSTALL:")
  222.         (infos)
  223.     )
  224.     )
  225. )
  226.  
  227.  
  228. ; ****************************
  229. ; * CONTROLfiles Installation routine
  230. ; ****************************
  231. ;
  232. (procedure CONTROLfilesInstall
  233.     (
  234.     ; ****************************
  235.     ; * Install the CONTROL files
  236.     ; ****************************
  237.     ;
  238.     (set CONTROLfilesDir    (tackon ADProDir "CONTROLfiles"))
  239.  
  240.     (onerror
  241.         (abort    ("The directory %s could not be created. " CONTROLfilesDir)
  242.             "This might be because your destination disk or drawer "
  243.             "has no room or is write protected. This installation "
  244.             "cannot continue."
  245.         )
  246.     )
  247.     (if (= (exists CONTROLfilesDir) 0)
  248.         (makedir CONTROLfilesDir)
  249.     )
  250.     (makeassign "PROCONTROLINSTALL" CONTROLfilesDir)
  251.     (onerror
  252.         (cleanUp)
  253.     )
  254.  
  255.     (set addToMeter    1)                    ; CONTROLfiles files
  256.     (incrementMeter)
  257.  
  258.     (set workingMsg        ("Unarchiving %s support files..." ProductName))
  259.     (set arcFileName    ("%s:CONTROLfiles.lha" DiskInstall))
  260.     (set destDirName    "PROCONTROLINSTALL:")
  261.     (dumpLZFile2Dir)
  262.     )
  263. )
  264.  
  265.  
  266. ; ****************************
  267. ; * Tutorials Installation routine
  268. ; ****************************
  269. ;
  270. (procedure TutorialsInstall
  271.     (
  272.     ; ****************************
  273.     ; * Install the tutorial files
  274.     ; ****************************
  275.     ;
  276.     (makeassign "PROCONTROLINSTALL" ProCONTROLDir)
  277.  
  278.     (set addToMeter    1)                    ; tutorial files
  279.     (incrementMeter)
  280.  
  281.     (set workingMsg        "Unarchiving tutorial files...")
  282.     (set arcFileName    ("%s:Tutorials.lha" DiskInstall))
  283.     (set destDirName    "PROCONTROLINSTALL:")
  284.     (dumpLZFile2Dir)
  285.     )
  286. )
  287.  
  288.  
  289. ; ****************************
  290. ; * Sentry Support Installation routine
  291. ; ****************************
  292. ;
  293. (procedure SentrySupportInstall
  294.     (
  295.     ; ****************************
  296.     ; * Install the Sentry support files
  297.     ; ****************************
  298.     ;
  299.     (makeassign "PROCONTROLINSTALL" ProCONTROLDir)
  300.  
  301.     (set addToMeter    1)                    ; Sentry files
  302.     (incrementMeter)
  303.  
  304.     (set workingMsg        "Unarchiving Sentry support files...")
  305.     (set arcFileName    ("%s:SentrySupport.lha" DiskInstall))
  306.     (set destDirName    "PROCONTROLINSTALL:")
  307.     (dumpLZFile2Dir)
  308.     )
  309. )
  310.  
  311.  
  312. ; ****************************
  313. ; * General CleanUp routine
  314. ; ****************************
  315. ;
  316. (procedure cleanUp
  317.     (
  318.     ; ****************************
  319.     ; * remove temporary assignment
  320.     ; ****************************
  321.     ;
  322.     (makeassign "PROCONTROLINSTALL")
  323.  
  324.  
  325.     ; ****************************
  326.     ; * delete temporary files.
  327.     ; ****************************
  328.     ;
  329.     (set deleteFileName    "RAM:lz")
  330.     (deleteIfExists)
  331.  
  332.  
  333.     ; ****************************
  334.     ; * exit the program.
  335.     ; ****************************
  336.     ;
  337.     (complete 100)
  338.  
  339.     (if (= DisplayReadMe 1)
  340.         (
  341.         (if (< OSVersion 37)
  342.             (run ("c:run %s:C/More %s:ReadMe" DiskInstall DiskInstall))
  343.             (run ("run %s:C/More %s:ReadMe" DiskInstall DiskInstall))
  344.         )
  345.         )
  346.     )
  347.  
  348.     (exit)
  349.     )
  350. )
  351.  
  352.  
  353. ; *************************************************************************
  354. ; *                         ACTUAL START OF SCRIPT
  355. ; *
  356. ; * Ask all questions for the user now, do all of the work later.
  357. ; *************************************************************************
  358. ;
  359. (onerror
  360.     (cleanUp)
  361. )
  362.  
  363. ; ****************************
  364. ; * set the default destination to ADPRO: (this needs to be available).
  365. ; ****************************
  366. ;
  367. (set @default-dest    "SYS:ADPro")
  368.  
  369. (set continueOn 0)
  370. (while (<> continueOn 1)
  371.     (
  372.     (if (= (getassign "ADPRO" "a") "")
  373.         (
  374.         (set setDirPathWhy    "where the ADPro or MorphPlus program is located.")
  375.         (set setDirPathHelp     ("You must specify the location of the ADPro or MorphPlus program so that %s can find the modules necessary for operation.\n" ProductName))
  376.         (set DirPath        @default-dest)
  377.         (setDirPath)
  378.  
  379.         (set ADProDir        DirPath)
  380.         (set @default-dest    ADProDir)
  381.  
  382.         (set userStartupAppName        "ADPro/MorphPlus")
  383.         (set userStartupAssignName    "ADPRO")
  384.         (set userStartupAssignToName    ADProDir)
  385.         (set userStartupHelp        "When the Installer program asks if you want to place this assignment into your S:user-startup file, you should select the Proceed button; otherwise, the next time you boot up your machine, the program won't be able to find the necessary files it needs to run.\n")
  386.         (addToUserStartup)
  387.         )
  388.         (
  389.         (set ADProDir        (getassign "ADPRO" "a"))
  390.         (set @default-dest    ADProDir)
  391.         (set continueOn 1)
  392.         )
  393.     )
  394.     )
  395. )
  396.  
  397. (set TotalFiles        (+ TotalFiles 1))            ; CONTROLfiles files
  398.  
  399. (set continueOn 0)
  400. (while (<> continueOn 1)
  401.     (
  402.     (set setDirPathWhy    ("where you want to install the %s program, tutorial files, and Sentry support files." ProductName))
  403.     (set setDirPathHelp     ("The %s program, tutorial files, and Sentry support files can be installed anywhere, as long as they're in the same directory.  If you are unsure where to place it, simply press the Proceed button to accept the default directory of %s.\n" ProductName @default-dest))
  404.     (set DirPath        @default-dest)
  405.     (setDirPath)
  406.  
  407.     (set ProCONTROLDir    DirPath)
  408.     (set @default-dest    ProCONTROLDir)
  409.  
  410.     (if (= 1 (askbool
  411.         (prompt    ("\nThe %s program, tutorial files, and Sentry support files will be installed in the following directory:\n\n%s\n\n\nIs this correct?" ProductBaseName DirPath))
  412.         (help    ("This panel displays what you have told the Installer is the directory where %s, the tutorial files, and the Sentry files will be installed. " ProductBaseName)
  413.             "It is so that you know exactly where the program will be placed.\n"
  414.             "\n"
  415.             "To select a different directory, press the No button.  Otherwise, press the "
  416.             "Yes button to proceed with the installation process.\n")))
  417.         (set continueOn        1)
  418.     )
  419.     )
  420. )
  421.  
  422. (set TotalFiles        (+ TotalFiles 2))            ; ProCONTROL + icon
  423. (set TotalFiles        (+ TotalFiles 1))            ; Tutorial files
  424. (set TotalFiles        (+ TotalFiles 1))            ; Sentry files
  425.  
  426. (set TotalFiles        (+ TotalFiles 1))            ; lz
  427.  
  428. (if (= (exists "LIBS:arp.library") 0)                ; arp.library
  429.     (set TotalFiles    (+ TotalFiles 1))
  430. )
  431.  
  432.  
  433. (complete 0)
  434.  
  435. (message "\nShall I proceed with the installation?"
  436.     (help    "Once you press the Proceed button, the selected items will be installed.  This is your last chance "
  437.         "to abort this procedure without partially installing the selected files.\n"
  438.         "\n"
  439.         "After you press Proceed, you can use the Esc key to abort the installation procedure.\n")
  440. )
  441.  
  442.  
  443. ; ****************************
  444. ; * copy arp.library to the LIBS: directory so that the lz unarchiver
  445. ; * can do its thing.
  446. ; ****************************
  447. ;
  448. (set addToMeter    1)
  449. (incrementMeter)
  450.  
  451. (set copyLibFileName    ("%s:Libs/arp.library" DiskInstall))
  452. (set copyLibFileHelp    ("This library is required to install %s, but not to run it.\n" ProductName))
  453. (set DirPath        "LIBS:")
  454. (copyLibFile)
  455.  
  456.  
  457. ; ****************************
  458. ; * copy lz to the RAM: directory.
  459. ; ****************************
  460. ;
  461. (set addToMeter    1)
  462. (incrementMeter)
  463.  
  464. (copyfiles
  465.     (prompt "")
  466.     (help "")
  467.     (source ("%s:C/lz" DiskInstall))
  468.     (dest "RAM:")
  469. )
  470. (onerror
  471.     (cleanUp)
  472. )
  473.  
  474.  
  475. (ProCONTROLInstall)
  476. (CONTROLfilesInstall)
  477. (TutorialsInstall)
  478. (SentrySupportInstall)
  479.  
  480. (set DisplayReadMe    1)
  481. (cleanUp)
  482.