home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Paint / alpha1.dms / in.adf / Install-Alpha < prev    next >
Encoding:
Text File  |  1994-10-22  |  10.8 KB  |  344 lines

  1. ; Alpha Paint Installer Utility
  2. ;
  3. ; For Alpha Paint from InnoVision Technology
  4. ;
  5. ; (Last updated: Vincent Law 10/5/94)
  6.  
  7. (set @user-level 2)
  8.  
  9. (
  10.    ; Which OS are we under?
  11.    (set osver (/ (getversion) 65536))
  12.  
  13.    ; Ask where to install it...
  14.    (makedir "RAM:ENV")
  15.    (makeassign "ENV" "RAM:ENV")
  16.    (run "Alpha1:CHECK_CPU")
  17.    (if (= (exists "RAM:ENV/MATH") 0)
  18.       (message
  19.          "WARNING: To run Alpha Paint, Math coprocessor\n"
  20.          "         68882 or above is required!         \n"
  21.          (help "\n\n   Click PROCEED to continue.\n   Click CANCEL to abort.\n")
  22.       )
  23.    )
  24.    (run "Alpha1:inquire")
  25.    (set default_dir (getenv "TOASTER_DIR"))
  26.    (if (<> @ioerr 0)
  27.       (abort "ERROR: Please install Video Toaster Software\n"
  28.              "       before installing Alpha Paint!       \n")
  29.    )
  30.  
  31.    (set Error_code 127)
  32.  
  33.    (while (<> Error_code 0)
  34.       (
  35.          (set default_dest_dir
  36.             (askdir
  37.                (prompt "Video Toaster installation has been found on \n"
  38.                        default_dir "\n"
  39.                        "Click PROCEED to install Alpha Paint onto\n"
  40.                        default_dir "/AlphaPaint\n")
  41.                (help "   This is the default directory where\n"
  42.                      "   Alpha Paint will be installed. \n")
  43.                (default default_dir)
  44.             )
  45.          )
  46.          (set @default-dest default_dest_dir)
  47.          (message
  48.             "Alpha Paint will be installed onto\n"
  49.             (tackon @default-dest "AlphaPaint") "\n"
  50.             (help "\n\n   Click PROCEED to continue.\n   Click CANCEL to abort.\n")
  51.          )
  52.          (set Error_code 0)
  53.       )
  54.    )
  55.  
  56.    (if (= (exists (tackon @default-dest "AlphaPaint")) 0)
  57.       (makedir (tackon @default-dest "AlphaPaint"))
  58.    )
  59.  
  60.    (if (= (exists (tackon @default-dest "AlphaPaint/ALPHAPIX")) 0)
  61.       (makedir (tackon @default-dest "AlphaPaint/ALPHAPIX"))
  62.    )
  63.  
  64.    (if (= (exists (tackon @default-dest "AlphaPaint/ALPHA_SETUP")) 0)
  65.       (makedir (tackon @default-dest "AlphaPaint/ALPHA_SETUP"))
  66.    )
  67.  
  68.    (if (= (exists (tackon @default-dest "AlphaPaint/Brushes")) 0)
  69.       (makedir (tackon @default-dest "AlphaPaint/Brushes"))
  70.    )
  71.  
  72.    (if (= (exists (tackon @default-dest "AlphaPaint/Data")) 0)
  73.       (makedir (tackon @default-dest "AlphaPaint/Data"))
  74.    )
  75.  
  76.    (set iff_dir
  77.       (askdir
  78.          (prompt "Enter the name of your preferred directory\n"
  79.                  "for loading 24-bit IFF picture files:     \n")
  80.          (help "   This is the default directory where   \n"
  81.                "   IFF pictures will be loaded and saved.\n")
  82.          (default (tackon @default-dest "AlphaPaint"))
  83.       )
  84.    )
  85.  
  86.    (set framestore_dir
  87.       (askdir
  88.          (prompt "Enter the name of default FRAMESTORE directory:\n")
  89.          (help "This is the directory where the framestore files will be saved.\n")
  90.          (default (getenv "FS_DIR"))
  91.       )
  92.    )
  93.  
  94.    (set jpeg_dir
  95.       (askdir
  96.          (prompt "Enter the name of default JPEG directory:\n")
  97.          (help "This is the directory where the JPEG files will be used.\n")
  98.          (default (tackon @default-dest "AlphaPaint"))
  99.       )
  100.    )
  101.  
  102.    (set default_fonts_dir (tackon @default-dest "ToasterFonts"))
  103.  
  104.    (set toasterfonts_dir
  105.       (askdir
  106.          (prompt "Enter the name of default TOASTER FONTS directory:\n")
  107.          (help "This is the directory where the toaster fonts will be\n"
  108.                "looked for during the execution of Alpha Paint.      \n")
  109.          (default default_fonts_dir)
  110.       )
  111.    )
  112.  
  113.    (set chromafonts_dir
  114.       (askdir
  115.          (prompt "Enter the name of default CHROMA FONTS directory:\n")
  116.          (help "This is the directory where the chroma fonts will be\n"
  117.                "looked for during the execution of Alpha Paint.     \n")
  118.          (default default_fonts_dir)
  119.       )
  120.    )
  121.  
  122.    (set psfonts_dir
  123.       (askdir
  124.          (prompt "Enter the name of default POSTSCRIPT FONTS directory:\n")
  125.          (help "This is the directory where the postscript fonts will\n"
  126.                "be looked for during the execution of Alpha Paint.   \n")
  127.          (default default_fonts_dir)
  128.       )
  129.    )
  130.  
  131.    ;----------------------------------------------------------
  132.    ; Prompt for Disk 1.
  133.  
  134.    (if (= (exists "Alpha1:") 2)
  135.       (askdisk
  136.          (prompt "Please insert Alpha Paint Program Disk 1:")
  137.          (help "")
  138.          (dest "Alpha1")
  139.       )
  140.    )
  141.  
  142.    (if (= (exists "Alpha1:Alpha.setup") 1)
  143.       (copyfiles
  144.          (prompt "Creating Alpha Paint Startup file")
  145.          (help @copyfiles-help)
  146.          (source "Alpha1:Alpha.setup")
  147.          (dest (tackon @default-dest "AlphaPaint/Data"))
  148.       )
  149.    )
  150.  
  151.    (if (= (exists "Alpha1:make_alpha_startup_file") 1)
  152.       (run "Alpha1:make_alpha_startup_file " @default-dest " " iff_dir " " framestore_dir " " jpeg_dir " " toasterfonts_dir " " chromafonts_dir " " psfonts_dir)
  153.    )
  154.  
  155.    (onerror
  156.       (message
  157.          "Alpha Paint installation is not complete.\n"
  158.          "Do you want to quit?\n"
  159.       )
  160.    )
  161.  
  162.    (if (= (exists "Alpha1:make_alpha_call_script") 1)
  163.       (run "Alpha1:make_alpha_call_script " @default-dest " 0")
  164.    )
  165.  
  166.    (onerror
  167.       (message
  168.          "Alpha Paint installation is not complete.\n"
  169.          "Do you want to quit?\n"
  170.       )
  171.    )
  172.  
  173.    (if (= (exists "Alpha1:AMenu") 2)
  174.       (
  175.          (makedir "fonts:AMenu")
  176.          (copyfiles
  177.             (prompt "")
  178.             (help @copyfiles-help)
  179.             (source "Alpha1:AMenu")
  180.             (dest "fonts:AMenu")
  181.             (all)
  182.          )
  183.       )
  184.    )
  185.  
  186.    (if (= (exists "Alpha1:AMenu.font") 1)
  187.       (copyfiles
  188.          (prompt "")
  189.          (help @copyfiles-help)
  190.          (source "Alpha1:AMenu.font")
  191.          (dest "fonts:")
  192.       )
  193.    )
  194.  
  195.    (working "Installing Alpha Paint Utility Files...")
  196.  
  197.    (if (= (exists "Alpha1:LHEX") 1)
  198.       (
  199.          (if (= (exists "C:LHEX") 0)
  200.             (copyfiles
  201.                (prompt "")
  202.                (help @copyfiles-help)
  203.                (source "Alpha1:LHEX")
  204.                (dest "C:")
  205.             )
  206.          )
  207.          (set LHEX_string ("LHEX -qfw=%s x Alpha1:Alpha.lha" (tackon @default-dest "AlphaPaint")))
  208.          (run LHEX_string)
  209.          (set LHEX_string ("LHEX -qfw=%s x Alpha1:Icons.lha" @default-dest))
  210.          (run LHEX_string)
  211. ;         (set LHEX_string ("LHEX -qfw=%s x Alpha1:AlphaLaunch.lha" (tackon @default-dest "AlphaPaint")))
  212. ;         (run LHEX_string)
  213.          (set LHEX_string ("LHEX -qfw=%s x Alpha1:Data.lha" (tackon @default-dest "AlphaPaint/Data")))
  214.          (run LHEX_string)
  215.          (set LHEX_string ("LHEX -qfw=%s x Alpha1:Tutorial1.lha" (tackon @default-dest "AlphaPaint/ALPHAPIX")))
  216.          (run LHEX_string)
  217. ;         (if (= (exists "Alpha1:COPY_ALPHA_PS_LIBRARY") 1)
  218. ;            (run "Alpha1:COPY_ALPHA_PS_LIBRARY")
  219. ;         )
  220.          (if (= (exists "LIBS:post.library") 1)
  221.             (
  222.                (set psver (/ (getversion "LIBS:post.library") 65536))
  223.                (set psver_ext (- (getversion "LIBS:post.library") 65536))
  224.                (if (OR (< psver 1) (AND (= psver 1) (< psver_ext 7)))
  225.                   (
  226.                      (set install_ps_library_flag
  227.                         (askbool
  228.                            (prompt "The currently installed PostScript Library is\n"
  229.                                    "version " psver "." psver_ext "                                  \n\n"
  230.                                    "Do you want to overwrite it with version 1.7?\n")
  231.                            (choices "Yes" "No")
  232.                            (help "Click YES to install PostScript version 1.7 library.\n"
  233.                                  "Click NO to keep your own PostScript library.       \n")
  234.                            (default 1)
  235.                         )
  236.                      )
  237.                      (if (= install_ps_library_flag 1)
  238.                         (
  239.                            (working "Installing PostScript Library....")
  240.                            (run "LHEX -qfw=LIBS: x Alpha1:LIBS.lha")
  241.                         )
  242.                      )
  243.                   )
  244.                )
  245.             )
  246.             (
  247.                (working "Installing PostScript Library....")
  248.                (run "LHEX -qfw=LIBS: x Alpha1:LIBS.lha")
  249.             )
  250.          )
  251.       )
  252.    )
  253.  
  254.    (tooltype
  255.       (prompt "Creating Alpha Paint icon....")
  256.       (help "Setting default tool for Alpha Paint icons...")
  257.       (dest (tackon @default-dest "Alpha"))
  258.       (setdefaulttool (tackon @default-dest "AlphaPaint/Alpha"))
  259.       (setstack 30000)
  260.       (noposition)
  261.    )
  262.  
  263. ;   (tooltype
  264. ;      (prompt "")
  265. ;      (help "Setting default tool for Alpha Paint icons...")
  266. ;      (dest (tackon @default-dest "Alpha-S"))
  267. ;      (setdefaulttool (tackon @default-dest "AlphaPaint/Alpha"))
  268. ;      (setstack 30000)
  269. ;      (noposition)
  270. ;   )
  271.  
  272.    (if (= (exists "Alpha1:InstallManager") 1)
  273.       (
  274.          (copyfiles
  275.             (prompt "")
  276.             (help @copyfiles-help)
  277.             (source "Alpha1:InstallManager")
  278.             (dest (tackon @default-dest "AlphaPaint"))
  279.          )
  280.          (if (= (exists "Alpha1:Data/aaaa.0") 1)
  281.             (
  282.                (set install_command ("Alpha1:InstallManager 0 %s" (tackon @default-dest "AlphaPaint")))
  283.                (run install_command)
  284. ;               (set aaaa (getenv "AAAA"))
  285. ;               (if (<> aaaa "0")
  286. ;                  (abort "ERROR: Cannot validate Alpha Paint installation!\n")
  287. ;               )
  288.             )
  289.          )
  290.       )
  291.    )
  292.  
  293.    ;----------------------------------------------------------
  294.    ; Prompt for Disk 2.
  295.  
  296.    (askdisk
  297.       (prompt "Please insert Alpha Paint Program Disk 2:")
  298.       (help "")
  299.       (dest "Alpha2")
  300.    )
  301.  
  302.    (working "Installing Tutorial files....")
  303.  
  304.    (if (= (exists "C:LHEX") 1)
  305.       (
  306.          (set LHEX_string ("LHEX -qfw=%s x Alpha2:JPEG1.lha" (tackon @default-dest "AlphaPaint/Data")))
  307.          (run LHEX_string)
  308.          (set LHEX_string ("LHEX -qfw=%s x Alpha2:Tutorial2.lha" (tackon @default-dest "AlphaPaint/ALPHAPIX")))
  309.          (run LHEX_string)
  310.          (set LHEX_string ("LHEX -qfw=%s x Alpha2:Tutorial_IFF1.lha" (tackon @default-dest "AlphaPaint/ALPHAPIX")))
  311.          (run LHEX_string)
  312.       )
  313.    )
  314.  
  315.    ;----------------------------------------------------------
  316.    ; Prompt for Disk 3.
  317.  
  318.    (askdisk
  319.       (prompt "Please insert Alpha Paint Program Disk 3:")
  320.       (help "")
  321.       (dest "Alpha3")
  322.    )
  323.  
  324.    (working "Installing Tutorial files....")
  325.  
  326.    (if (= (exists "C:LHEX") 1)
  327.       (
  328.          (set LHEX_string ("LHEX -qfw=%s x Alpha3:JPEG2.lha" (tackon @default-dest "AlphaPaint/Data")))
  329.          (run LHEX_string)
  330.          (set LHEX_string ("LHEX -qfw=%s x Alpha3:Tutorial_IFF2.lha" (tackon @default-dest "AlphaPaint/ALPHAPIX")))
  331.          (run LHEX_string)
  332.       )
  333.    )
  334.  
  335.    (set @default-dest (tackon @default-dest "AlphaPaint"))
  336.  
  337.    (message
  338.       "Remember to remove the last Alpha Paint disk\n"
  339.       "from the floppy drive after the installation\n"
  340.       "and store it in a safe place.               \n"
  341.       (help "\n\n   Click PROCEED to continue.\n   Click CANCEL to abort.\n")
  342.    )
  343. )
  344.