home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Disk&HD / EDG-CM14.DMS / in.adf / install < prev    next >
Encoding:
Text File  |  1995-10-24  |  21.7 KB  |  925 lines

  1. ;*******************************************************************
  2. ;Installation script for CrossMAC 
  3. ;********************************************************************
  4.  
  5. ;$VER: Install 0.4 (28/9/95)
  6.  
  7.  
  8. ;Bugs in Installer V1.22:
  9.  
  10. ;1. The "run" command does not accept a relative path.
  11. ;2. The tooltype delete feature is case-sensitive.
  12.  
  13. ;mycopylib is used because of installer limitations. It uses the following global
  14. ;strings as input:
  15. ;mysource - source
  16. ;mydest - destination
  17. ;mynewname - new name
  18.  
  19. (procedure mycopylib
  20.     (
  21.         (set errorflag 0)
  22.         ;form destination file
  23.         (set destfile
  24.             (tackon mydest mynewname)
  25.         )
  26.         (if
  27.             (= 0
  28.                 (exists destfile)
  29.             )
  30.             (
  31.                 (copyfiles
  32.                     (source mysource)
  33.                     (dest mydest)
  34.                     (newname mynewname)
  35.                 )
  36.                 (set errorflag 1)
  37.             )
  38.             (
  39.                 ;the destfile exists, so we must check the versions
  40.                 (if
  41.                     (exists mysource)
  42.                     (
  43.                         (set sourcevernum (getversion mysource))
  44.                         (set sourcever (/ sourcevernum 65536))
  45.                         (set sourcerev (- sourcevernum (* sourcever 65536)))
  46.                         (set destvernum (getversion destfile))
  47.                         (set destver (/ destvernum 65536))
  48.                         (set destrev (- destvernum (* destver 65536)))
  49.                         (if
  50.                             (or
  51.                                 (or
  52.                                     (not ks20)
  53.                                     (> sourcever destver)
  54.                                 )
  55.  
  56.                                 (
  57.                                     (and
  58.                                         (= sourcever destver)
  59.                                         (>= sourcerev destrev)
  60.                                     )
  61.                                 )
  62.                             )
  63.                             (
  64.                                 (if
  65.                                     (= @user-level 2)
  66.                                     (
  67.                                     (set errorflag 1)
  68.                                     (if
  69.                                         (askbool
  70.                                             (prompt (cat "The version of \"" mynewname)
  71.                                                  "\" currently on your system appears to be "
  72.                                                  "older than the CrossMAC version. Select \"Skip\" to "
  73.                                                  "preserve the version currently on your system, "
  74.                                                  "or \"Overwrite\" to install the CrossMAC version "
  75.                                                  "regardless."
  76.                                             )
  77.                                             (choices "Overwrite"
  78.                                                     "Skip"
  79.                                             )
  80.                                             (help "Some features of CrossMAC require the version included "
  81.                                                     "on the disk, even though the version may be lower, it "
  82.                                                     "may be required to copy the lower version. "
  83.                                                     "This message should only appear if you are "
  84.                                                     "running Workbench 2.1 or later. If you are not, "
  85.                                                     "select Overwrite to copy the CrossMAC file anyway."
  86.                                             )
  87.                                         )
  88.                                         (
  89.                                             (copyfiles
  90.                                                 (source mysource)
  91.                                                 (dest mydest)
  92.                                                 (newname mynewname)
  93.                                             )
  94.                                             (set errorflag 1)
  95.                                         )
  96.                                     )
  97.                                     )
  98.                                     (
  99.                                             (copyfiles
  100.                                                 (source mysource)
  101.                                                 (dest mydest)
  102.                                                 (newname mynewname)
  103.                                             )
  104.                                             (set errorflag 1)
  105.                                     )
  106.                                 )
  107.  
  108.                             )
  109.                         )
  110.                     )
  111.                 )
  112.             )
  113.         )
  114.         (if
  115.             (= errorflag 0)
  116.             (
  117.                 ;Handle a version conflict
  118.                 (if
  119.                     (= @user-level 2)
  120.                     (
  121.                         (if
  122.                             (askbool
  123.                                 (prompt (cat "The version of \"" mynewname)
  124.                                          "\" currently on your system appears to be "
  125.                                          "newer than the CrossMAC version. Select \"Skip\" to "
  126.                                          "preserve the version currently on your system, "
  127.                                          "or \"Overwrite\" to install the CrossMAC version "
  128.                                          "regardless."
  129.                                 )
  130.                                 (choices "Overwrite"
  131.                                          "Skip"
  132.                                 )
  133.                                 (help "This message should only appear if you are "
  134.                                       "running Workbench 2.1 or later. If you are not, "
  135.                                       "select Overwrite to copy the CrossMAC file anyway."
  136.                                 )
  137.                             )
  138.                             (
  139.                                 (copyfiles
  140.                                     (source mysource)
  141.                                     (dest mydest)
  142.                                     (newname mynewname)
  143.                                 )
  144.                                 (set errorflag 1)
  145.                             )
  146.                         )
  147.                     )
  148.                 )
  149.             )
  150.         )
  151.     )
  152. )
  153.  
  154. ;********************** CrossMAC UNinstallation **************************
  155.  
  156. ;Enter with "deletedirstr" set to the name of the directory to terminate
  157. ;and deletepat with the amigados wildcards.
  158. (procedure deletedir
  159.     (    (if (= 2 (exists deletedirstr) )
  160.             (    (foreach deletedirstr deletepat
  161.                     (delete (tackon deletedirstr @each-name) )
  162.                 )
  163.                 (delete (tackon deletedirstr ".info") )
  164.                 (delete deletedirstr)
  165.                 (delete ( "%s.info" deletedirstr) )
  166.             )
  167.         )
  168.     )
  169. )
  170.  
  171.  
  172. (procedure UnInstallCrossMAC
  173.     (
  174.         (if
  175.             (askbool
  176.                 (prompt "About to UNinstall CrossMAC: This function will try to "
  177.                         "remove CrossMAC and all the CrossMAC utilities completely from your system. "
  178.                         "Are you sure you want to uninstall CrossMAC?"
  179.                 )
  180.                 (help "This function will try to remove CrossMAC from your system "
  181.                       "to the extent that it is possible to do so safely. Some parts "
  182.                       "of CrossMAC \(such as replacement Mount, Format, and Diskcopy "
  183.                       "commands\) will not be removed, because doing so might "
  184.                       "disrupt the normal functioning of the system. Only in very "
  185.                       "extreme cases should you find it neccessary to revert to the "
  186.                       "to the original \(Commodore-supplied\) commands."
  187.                 )
  188.             )
  189.             (
  190.                 (delete "l:CrossMACFileSystem")
  191.                 ; mfm.device may be used by CrossDOS 
  192.                 (delete "devs:dosdrivers/mac0")
  193.                 (delete "devs:dosdrivers/mac1")
  194.                 (delete "devs:dosdrivers/mac2")
  195.                 (delete "devs:dosdrivers/mac3")
  196.                 (delete "devs:dosdrivers/mac0.info")
  197.                 (delete "devs:dosdrivers/mac1.info")
  198.                 (delete "devs:dosdrivers/mac2.info")
  199.                 (delete "devs:dosdrivers/mac3.info")
  200.                 (delete "env:sys/crossmac_def_disk.info")
  201.                 (delete "envarc:sys/crossmac_def_disk.info")
  202.  
  203.  
  204.                 ; Now the CrossMAC utilities, make sure it is not the disk (boy would I feel dumb)
  205.                 (set dpath (getassign "CrossMAC"))
  206.                 (if (NOT (= dpath ""))
  207.                     (  ; Okay to Delete 
  208.                         (delete (tackon dpath "File_Type_Manager"))
  209.                         (delete (tackon dpath "File_Type_Manager.info"))
  210.                         (delete (tackon dpath "FTypCrtr_db"))
  211.                         (delete (tackon dpath "Mac_File_Salv"))
  212.                         (delete (tackon dpath "Mac_File_Salv.info"))
  213.                         (delete (tackon dpath "Res_Extractor"))
  214.                         (delete (tackon dpath "Res_Extractor.info"))
  215.                         (delete (tackon dpath "VHex"))
  216.                         (delete (tackon dpath "VHex.info"))
  217.                         (delete (tackon dpath "CrossMAC"))
  218.                         (delete (tackon dpath "CrossMAC.info"))
  219.                     )
  220.                 )
  221.  
  222.  
  223.                 ;Comment-out the main mount command from the user-startup
  224.  
  225.                 (if
  226.                     (exists "s:user-startup")
  227.                     (
  228.                         (startup "CrossMAC -- Assign"
  229.                             (prompt "This step will disable the CrossMAC assign in the user-startup"
  230.                             )
  231.                             (help   "This step will disable the CrossMAC assign in the user-startup. "
  232.                                 "The assignment of CrossMAC must be removed before the CrossMAC drawer can be removed."
  233.                             )
  234.                             (command ";Assign CrossMac: \"" (getassign "CrossMac") "\" ")
  235.                         )
  236.  
  237.                         (if (NOT (= (getassign "CrossMAC") ""))  ; Only bother if there is an assignment of CrossMAC
  238.                             (
  239.                                 (set drawername (getassign "CrossMAC"))
  240.                                 (run "assign CrossMac: remove")
  241.                                 (delete drawername)
  242.                             )
  243.                         )
  244.                     )
  245.                 )
  246.                 (message "Finished UnInstalling CrossMAC. If you have manually moved "
  247.                          "parts of CrossMAC from their normal location, those files "
  248.                          "are still on your disk."
  249.                 )
  250.             )
  251.         )
  252.     )
  253. )
  254.  
  255. ;********************** CrossMAC installation **************************
  256.  
  257. (procedure ModifyStartup
  258.     (
  259.         (startup "CrossMAC -- Assign"
  260.             (prompt "About to install a command in s:user-startup to assign "
  261.                     "CrossMAC to the CrossMAC utilities drawer..."
  262.             )
  263.             (help "Without this assign the CrossMAC icons will not be able to "
  264.                     "locate the utilities.  This assignment will not be made until "
  265.                     "the next time you reboot.  Until that time access to any utilities "
  266.                     "will be made from the CrossMAC floppy. "
  267.             )
  268.             (command "failat 21\n"
  269.                 "Assign CrossMAC: \"" utildir "\" \n" 
  270.             )
  271.         )
  272.     )
  273. )
  274.  
  275. (procedure ModifyStartupMount
  276.     (
  277.         (startup "CrossMAC - automatically mount all devices"
  278.             (prompt "About to install a command in s:user-startup to automatically "
  279.                     "start CrossMAC when you boot your system..."
  280.             )
  281.             (help "Normally you want CrossMAC to be automatically invoked every "
  282.                   "time you start your system."
  283.             )
  284.             (command "Mount >nil: devs:DOSDrivers/~(#?.info)")
  285.         )
  286.     )
  287. )
  288.  
  289. (procedure InstallCrossMAC
  290.     (
  291.         (message "About to install CrossMAC...")
  292.  
  293.  
  294.         ;Create certain directories if they don't exist
  295.         (makedir "l:FileSystem_Trans"
  296.             (infos)
  297.         )
  298.         (makedir "sys:system"
  299.             (infos)
  300.         )
  301.  
  302.         ;The purpose of this is to create an icon for the devs: directory
  303.         ;if needed.
  304.         (makedir
  305.             (getassign "devs")
  306.             (infos)
  307.         )
  308.         (makedir "devs:DOSDrivers"
  309.             (infos)
  310.         )
  311.  
  312.  
  313.         ;Install mfm.device
  314.  
  315.         ; test for gary bug 
  316.         
  317.         (if  (run ":diag/garytest")
  318.             (
  319.                 (message "Installing the modified mfm.device based on the results from the Gary Test." 
  320.                         "The screen may blink while using the FileSystem and this mfm.device.")
  321.                 (copyfiles
  322.                     (source ":devs/mfm.device.gary")
  323.                     (dest "devs:")
  324.                     (newname "mfm.device")
  325.                 )
  326.             )
  327.             (
  328.                 (set mysource "devs/mfm.device" )
  329.                 (set mydest "devs:")
  330.                 (set mynewname "mfm.device")
  331.                 (mycopylib)
  332.             )
  333.         )
  334.  
  335.         ;Install CrossMACFileSystem
  336.  
  337.         (set mysource "l/CrossMACFileSystem" )
  338.         (set mydest "l:")
  339.         (set mynewname "CrossMACFileSystem")
  340.         (mycopylib)
  341.  
  342.  
  343.         ;Install Mount command
  344.  
  345.         (set mysource "c/Mount" )
  346.         (set mydest "c:")
  347.         (set mynewname "Mount")
  348.         (mycopylib)
  349.  
  350.  
  351.         ;Copy Floppy Mountfiles to devs:dosdrivers
  352.         (foreach ":" "MAC?"
  353.             (
  354.                 (copyfiles
  355.                     (source
  356.                         (":%s" @each-name)
  357.                     )
  358.                     (dest "devs:DOSDrivers")
  359.                 )
  360.                 (copyfiles
  361.                     (source (":%s.info" @each-name) )
  362.                     (dest "devs:DOSDrivers")
  363.                 )
  364.                 (tooltype
  365.                     (dest ("devs:DOSDrivers/%s" @each-name) )
  366.                     (noposition)
  367.                     (setdefaulttool "c:Mount")
  368.                     ;Delete the "filesystem=" entry
  369.                     ;Case-sensitive!!! (yet another installer bug)
  370.                     (settooltype "FILESYSTEM")
  371.                 )
  372.             )
  373.         )
  374.  
  375.         ;Install Format
  376.         (set mysource ":system/Format" )
  377.         (set mydest "sys:system")
  378.         (set mynewname "Format")
  379.         (mycopylib)
  380.  
  381.  
  382.     ;Install alternate format icons  
  383.     (if (= 0 
  384.             (exists "envarc:sys/crossmac_def_disk.info") )
  385.         (
  386.             (copyfiles (source ":c/crossmac_def_disk.info")
  387.                        (dest   "envarc:sys")
  388.                        (optional "nofail")
  389.             )
  390.         )
  391.     )
  392.     
  393.     (if (= 0 
  394.         (exists "env:sys/crossmac_def_disk.info") )
  395.         (
  396.             (copyfiles (source ":c/crossmac_def_disk.info")
  397.                        (dest   "env:sys")
  398.                        (optional "nofail")
  399.             )
  400.         )
  401.     )
  402.  
  403.     (if 0
  404.         (
  405.         (set deletedirstr "sys:system/alt_formats")
  406.         (set deletepat "#?")
  407.         (deletedir)
  408.  
  409.             (
  410.                 (makedir "sys:system/Alt_Formats"
  411.                     (infos)
  412.                 )
  413.  
  414.                 (foreach ":system/Alt_Formats" "#?.Format.info"
  415.                     (
  416.                         (copyfiles
  417.                             (source (":system/Alt_Formats/%s" @each-name) )
  418.                             (dest "sys:system/Alt_Formats")
  419.                             (optional "nofail")
  420.                         )
  421.  
  422.                         ;Create a version of @each-name without the .info
  423.                         (set infoname
  424.                             (substr @each-name 0
  425.                                 (-
  426.                                     (strlen @each-name)
  427.                                     5
  428.                                 )
  429.                             )
  430.                         )
  431.  
  432.                         (tooltype
  433.                             (dest ("sys:system/Alt_Formats/%s" infoname) )
  434.                             (noposition)
  435.                             (setdefaulttool "sys:system/Format")
  436.                         )
  437.                     )
  438.                 )
  439.             )
  440.         )
  441.     )
  442.  
  443.         ;Install DiskCopy
  444.  
  445.         (set mysource ":system/DiskCopy")
  446.         (set mydest "sys:system")
  447.         (set mynewname "DiskCopy")
  448.         (mycopylib)
  449.  
  450.  
  451.         ;FType.Mac I'm doing some checking so I don't write over their customized ftype
  452.  
  453.         (if (NOT (exists "l:FileSystem_Trans/FTypeDB.mac" (noreq)))
  454.             (copyfiles
  455.                 (source ":l/FileSystem_Trans")
  456.                 (dest "l:FileSystem_Trans")
  457.                 (all)
  458.             )
  459.         )
  460.  
  461.         ;Enter mount command in s:user-startup. Previously we did this whenever
  462.         ;installing on a new CD user's system. Now we don't care whether he has
  463.         ;an old CD, but we do avoid inserting it into the u-s if the user is
  464.         ;running Workbench 2.1 or higher, unless we are in expert mode and
  465.         ;the user overrides our wisdom.
  466.  
  467.         (if
  468.             (and
  469.                 (= @user-level 2)
  470.                 wb21
  471.             )
  472.             (
  473.                 (if
  474.                     (askbool
  475.                         (prompt "If you select \"Install\", a command will be "
  476.                                 "inserted into your s:user-startup file to mount "
  477.                                 "all devices in the DOSDrivers drawer. Since you are "
  478.                                 "running Workbench 2.1 or above, however, this command should "
  479.                                 "already be there, unless you have extensively customized your "
  480.                                 "system. Select \"Skip\" to avoid adding a "
  481.                                 "redundant command \(which won't hurt, but will slow down "
  482.                                 "booting\)."
  483.                         )
  484.                         (choices "Install" "Skip")
  485.                         (help "In most cases you should select \"Skip\".")
  486.                     )
  487.                     (
  488.                         (user 0)
  489.                         (ModifyStartupMount)
  490.                         (user 2)
  491.                     )
  492.                 )
  493.             )
  494.             (
  495.                 (if (NOT nomount)
  496.                     (ModifyStartupMount)
  497.                 )
  498.             )
  499.         )
  500.  
  501.         ;Mount the stuff now so the user can use it immediately
  502.  
  503.         ;This 'run' is safe because c: is an explicit path
  504.         (run "c:Mount >nil: devs:DOSDrivers/~(#?.info)")
  505.  
  506.         (message "CrossMAC is now installed.")
  507.     )
  508. )
  509.  
  510. ;********************** CrossMAC Utilities installation **************************
  511.  
  512. (procedure InstallCrossMACUtils
  513.     (
  514.  
  515.         (message "About to install CrossMAC Utilities...")
  516.  
  517.         (set utildir (pathonly (getassign "CrossMAC")))
  518.         
  519.         (if (= utildir "")
  520.             (set utildir "Sys:")
  521.         )
  522.  
  523.         (set utildir
  524.             (askdir
  525.                 (prompt "Please select a disk where we will create the CrossMAC drawer and "
  526.                         "copy the CrossMAC Utilities to. "
  527.                 )
  528.                 (help "The CrossMAC has a few utilities which increase the functionality of "
  529.                         "accessing Mac disks and files. An assign will be made to use some of "
  530.                         "these utilities with the CrossMACFileSystem.  Choose "
  531.                         "any drive/drawer. Use the \"Make New Drawer\" option "
  532.                         "to create a new drawer, if desired, but remember we do create "
  533.                         "a new drawer called CrossMAC."
  534.                 )
  535.                 (default utildir)
  536.                 (disk)
  537.             )
  538.         )
  539.  
  540.         (set utildir (tackon utildir "CrossMAC"))
  541.  
  542.         (makedir utildir 
  543.                  (infos))
  544.  
  545.         (set def_utils  %00111111)
  546.         (set utils
  547.             (askoptions 
  548.                 (prompt "Please select utilities to install.")
  549.                 (choices ("CrossMAC commodity %ldK" (/ (+ (getsize ":system/CrossMAC") 500) 1000))
  550.                          ("VHex               %ldK" (/ (+ (getsize ":VHex") 500) 1000)) 
  551.                          ("Resource Extractor %ldK" (/ (+ (getsize ":Res_Extractor") 500) 1000))
  552.                          ("Mac File Salv      %ldK" (/ (+ (getsize ":Utils/Mac_File_Salv") 500) 1000))
  553.                          ("File_Type_Manager  %ldK" (/ (+ (getsize ":Utils/File_Type_Manager") 500) 1000))
  554.                          ("DiskChg            %ldK" (/ (+ (getsize ":system/DiskChg") 500) 1000))
  555.                 )
  556.                 (default def_utils)
  557.                 (help " CrossMAC commodity allows global text translation and the ability to eject "
  558.                       "AMax cartridge disks.\n\n"
  559.                       " View Hex views files or memory and displays the information in a "
  560.                       "hexadecimal format.  View Hex is the default viewer for Mac data fork files. "
  561.                       "\n\n The Resource Extractor extracts Mac resources from a resource "
  562.                       "fork file into individual files.  Resource Extractor is the default viewer for "
  563.                       "Mac resource fork files. "
  564.                       "\n\n Mac File Salv recovers files from a damaged CrossMAC disk."
  565.                       "\n\n The File_Type_Manager allows the user to update the filetype database used "
  566.                       "by the FileSystem.  This allows the user to set the FileType and Creator "
  567.                       "information for files.\n\n"
  568.                       " DiskChg allows the user to force a diskchange for those drives which do not "
  569.                       "support automatic disk changes."
  570.                       "\n\n More information may be found in the CrossMAC manual."
  571.                       
  572.                 )
  573.             )
  574.         )
  575.  
  576.  
  577.         (if (in utils 0)
  578.             (
  579.                 (set mysource ":system/CrossMAC" )
  580.                 (set mydest utildir)
  581.                 (set mynewname "CrossMAC")
  582.                 (mycopylib)
  583.  
  584.                 (copyfiles
  585.                     (source ":system/CrossMAC.info")
  586.                     (dest utildir)
  587.                 )
  588.                 (tooltype
  589.                     (dest (tackon utildir "CrossMAC"))
  590.                     (noposition)
  591.                 )
  592.             )
  593.         )
  594.         
  595.         (if (in utils 1)
  596.             (copyfiles
  597.                 (source ":VHex")
  598.                 (dest utildir)
  599.                 (infos)
  600.             )
  601.         )
  602.  
  603.         (if (in utils 2)
  604.             (copyfiles
  605.                 (source ":Res_Extractor")
  606.                 (dest utildir)
  607.                 (infos)
  608.             )
  609.         )
  610.  
  611.             (if (in utils 3)
  612.             (copyfiles
  613.                 (source ":Utils/Mac_File_Salv")
  614.                 (dest utildir)
  615.                 (infos)
  616.             )
  617.         )
  618.  
  619.         (if (in utils 4)
  620.             (
  621.                 (copyfiles
  622.                     (source ":Utils/File_Type_Manager")
  623.                     (dest utildir)
  624.                     (infos)
  625.                 )
  626.                 (copyfiles
  627.                     (source ":Utils/FTypCrtr_db")
  628.                     (dest utildir)
  629.                 )
  630.             )
  631.         )
  632.  
  633.         (if (in utils 5)
  634.             ( 
  635.  
  636.                 (copyfiles
  637.                     (source ":system/DiskChg")
  638.                     (dest "sys:system")
  639.                     (infos)    ;required!!!
  640.                 )
  641.                 (tooltype
  642.                     (dest "sys:system/DiskChg")
  643.                     (noposition)
  644.                 )
  645.             )
  646.         )
  647.         
  648.         ; Add the CrossMAC assign to the drawer 
  649.         (ModifyStartup)
  650.         
  651.         (message "CrossMac Utilities are now installed.")
  652.     )
  653. )
  654.  
  655. ;********************** Configure Hard Disk **************************
  656.  
  657. (procedure ConfigureHardDisk
  658.     (    (if
  659.             (= 0
  660.                 (exists "l:CrossMACFileSystem")
  661.             )
  662.             (
  663.                 (message "CrossMAC is not currently installed. It must "
  664.                          "be installed before you can configure a hard drive. "
  665.                          "Switching to CrossMAC installation..."
  666.                 )
  667.                 (InstallCrossMAC)
  668.             )
  669.         )
  670.  
  671.         (set opt
  672.             (askchoice
  673.                 (choices "Configure on an Amiga Partition"
  674.                          "Configure a 100% Mac Hard Disk"
  675.                          "Configure a Disk File"
  676.                          "Configure a Mac CD-ROM Disk"
  677.                 )
  678.                 (prompt "Please select an option. * Hit HELP for details!!! *")
  679.                 (help "   \"Configure on an Amiga Partition\"\n"
  680.                       "if you want to configure one of your Amiga partitions "
  681.                       "for use as a Mac hard drive image.\n"
  682.                       "   \"Configure a 100% Mac Hard Disk\"\n"
  683.                       "if you want to configure an entire PHYSICAL hard drive "
  684.                       "(such as a SyQuest or Bernoulli etc).\n"
  685.                       "   \"Configure a Disk File\"\n"
  686.                       "if you want to use a file as an Mac disk image (such "
  687.                       "as ShapeShifter, or EMPLANT disk files).\n"
  688.                       "   \"Configure a Mac CD-ROM Disk.\"\n"
  689.                       "if you want to configure a CD-ROM drive to read Mac "
  690.                       "HFS CD-ROMs."
  691.                 )
  692.             )
  693.         )
  694.  
  695.         (set driveprefix "MHD")
  696.  
  697.         ;Create a temporary directory
  698.  
  699.         (makedir "ram:CrossMACTemp")
  700.  
  701.         (set MountListDir "ram:CrossMACTemp")
  702.         (makedir MountListDir)
  703.  
  704.         ;Run the ConfigDev program
  705.         (if (= opt 0) (set drivetype "PARTITION") )
  706.         (if (= opt 1) (set drivetype "DISK") )
  707.         (if (= opt 2)
  708.             (    (set drivetype "FILE") 
  709.                     ;Install filedisk.device
  710.                 (set mysource "devs/filedisk.device")
  711.                 (set mydest "devs:")
  712.                 (set mynewname "filedisk.device")
  713.                 (mycopylib)
  714.             )
  715.         )
  716.         ; CD-ROM Drive 
  717.         (if (= opt 3)
  718.             (    (set driveprefix "MCD")
  719.                 (set drivetype "DISK") 
  720.                 (set addopts "SCSI_DIRECT ANYBLOCKSIZE BLOCKSIZE=2048 BUFFERS=60")
  721.             )
  722.         )
  723.  
  724.         (run ("%sc/ConfigDisk MAC %s PREFIX=%s %s" @execute-dir drivetype driveprefix addopts))
  725.     )
  726. )
  727.  
  728.  
  729. ;********************** Product Registration **************************
  730.  
  731. (procedure Register
  732.     (    (run ("%sc/Registration %sRegistrationInfo" @execute-dir @execute-dir)))
  733. )
  734.  
  735. ;***************************************************************************
  736. ;***************************** MAIN ****************************************
  737. ;***************************************************************************
  738.  
  739.  
  740. ;Force user level to 1 or 2. This is unfortuntely required because otherwise
  741. ;we can't present a menu of choices to the user.
  742. (if
  743.     (= @user-level 0)
  744.     (
  745.         (user 1)
  746.         (set @user-level 0)
  747.     )
  748. )
  749.  
  750.  
  751. ; We can install anywhere as long as it looks like the original CrossMAC disk
  752.  
  753. (if
  754.     (not
  755.         (exists "l/CrossMACFileSystem")
  756.     )
  757.     (
  758.         (message "Unable to locate CrossMACFileSystem. "
  759.                  "Exiting..."
  760.         )
  761.         (exit
  762.             (quiet)
  763.         )
  764.     )
  765. )
  766.  
  767. ;Initialize certain variables
  768. (set pcdir "")
  769. (set harddisk "")
  770.  
  771. ;(set disklabel
  772. ;    (expandpath ":")
  773. ;)
  774. ;(set @execute-dir disklabel)
  775.  
  776. ;get Kickstart version number
  777. (set ksver
  778.     (/
  779.         (getversion "exec.library"
  780.             (resident)
  781.         )
  782.         65536
  783.     )
  784. )
  785.  
  786. ;set ks20 variable to 1 if running Kickstart 2.04 or above
  787. (set ks20
  788.     (> ksver 36)
  789. )
  790.  
  791. ;get Workbench version number
  792. (set wbver
  793.     (/
  794.         (getversion "version.library"
  795.             (resident)
  796.         )
  797.         65536
  798.     )
  799. )
  800.  
  801. ;set wb21 variable to 1 if running Workbench 2.1 or above
  802. (set wb21
  803.     (> wbver 37)
  804. )
  805.  
  806. ; if mount command IS GREATER than 37 than has CrossDos or WB2.1 or Greater
  807. (set nomount 
  808.  (> (/  (getversion "c:mount") 65536) 37)
  809.  )
  810.  
  811. ; Check whether 2.04 or above if not quit 
  812. (if (NOT ks20 )
  813.     (    (message "CrossMAC only works on machines with Kickstarts above 2.04. "
  814.                 "Exiting.."
  815.         )
  816.  
  817.         (exit (quiet) )
  818.     )
  819. )
  820.  
  821.  
  822. (while 1
  823.     (
  824.  
  825.         ;Attempt to determine what the default menu options should be
  826.         (set defmenu 0)
  827.         (if
  828.             (not
  829.                 (exists "l:CrossMACFileSystem")
  830.             )
  831.             (set defmenu
  832.                 (bitor defmenu %00000011)  ; Set Install and Fill out  --> right to left
  833.             )
  834.         )
  835.  
  836.         (if
  837.             (not
  838.                 (exists "s:Registration.data")
  839.             )
  840.             (set defmenu
  841.                 (bitor defmenu %00001000)  ; Set Install and Fill out  --> right to left
  842.             )
  843.         )
  844.  
  845.  
  846.         ;Ask the user what he wants to install or do.
  847.  
  848.         (set mainopt
  849.             (askoptions
  850.                 (prompt "Please select all functions that you wish to perform")
  851.                 (choices "Install CrossMAC FileSystem" 
  852.                          "Install CrossMAC Utilities"
  853.                          "Configure Hard Disk or CD-ROM"
  854.                          "Fill out Product Registration"
  855.                          "Uninstall CrossMAC"
  856.                 )
  857.                 (default defmenu)
  858.                 (help " The \"Install CrossMAC FileSystem\" option installs the "
  859.                         "filesystem. \n\nThe \"Install CrossMAC Utilities\" installs utilities "
  860.                         "that accompany the CrossMAC FileSystem.\n\n The \"Configure Hard Disk or CD-ROM\" " 
  861.                         "option will run ConfigDisk, which allows you to set up a drive, "
  862.                         "partition or CD-ROM for CrossMAC. \n\n The \"Fill out Product Registration\" option will "
  863.                         "prompt you for your name and address, and print it to PRT: (the "
  864.                         "default printer). Using the registration software eliminates "
  865.                         "the difficulties we sometimes have reading hand-written registration cards. "
  866.                         " \n\n Use the \"Uninstall CrossMAC\" option to remove CrossMAC."
  867.                 )
  868.             )
  869.         )
  870.  
  871.         (if
  872.             (= mainopt 0)
  873.             (
  874.                 (message "You didn\'t select anything. Exiting...")
  875.                 (exit
  876.                     (quiet)
  877.                 )
  878.             )
  879.         )
  880.  
  881.         (if
  882.             (NOT (and 
  883.                     (in mainopt 4)
  884.                     (BITAND mainopt %00001111)
  885.                 )
  886.             )
  887.             (
  888.                 (if
  889.                     (in mainopt 0)
  890.                     (
  891.                         (InstallCrossMAC)
  892.                     )
  893.                 )
  894.  
  895.                 (if
  896.                     (in mainopt 1)
  897.                     (InstallCrossMACUtils)
  898.                 )
  899.  
  900.                 (if
  901.                     (in mainopt 2)
  902.                     (ConfigureHardDisk)
  903.                 )
  904.                 (if
  905.                     (in mainopt 3)
  906.                     (Register)
  907.                 )
  908.                 (if
  909.                     (in mainopt 4)
  910.                     (UninstallCrossMAC)
  911.                 )
  912.                 (exit
  913.                     (quiet)
  914.                 )
  915.             )
  916.             (
  917.                 (message "The uninstall option cannot be selected in conjunction "
  918.                          "with any other options. Perhaps you accidentally "
  919.                          "selected it."
  920.                 )
  921.             )
  922.         )
  923.     )
  924. )
  925.