home *** CD-ROM | disk | FTP | other *** search
/ Fun in Spring 4 / gold.iso / TENDO / TENDO.MST < prev   
Encoding:
Text File  |  1994-11-17  |  14.9 KB  |  521 lines

  1. '' '$DEFINE DEBUG  ''Define for script development/debugging
  2.  
  3. '$INCLUDE 'setupapi.inc'
  4. '$INCLUDE 'msdetect.inc'
  5.  
  6. DECLARE FUNCTION LoadLibrary LIB "KERNEL" (szLibFileName$) AS INTEGER
  7. DECLARE SUB      FreeLibrary LIB "KERNEL" (hInst%)
  8.  
  9. DECLARE FUNCTION BWCCMessageBox LIB "BWCC.DLL" (hwndParent%, szText$, szCaption$, wStyle%) AS INTEGER
  10.  
  11. ''Dialog ID's
  12. CONST ASKQUIT      =  200
  13. CONST DESTPATH     =  300
  14. CONST EXITFAILURE  =  400
  15. CONST EXITQUIT     =  600
  16. CONST EXITSUCCESS  =  700
  17. CONST OPTIONS      =  800
  18. CONST APPHELP      =  900
  19. CONST CUSTINST     = 6200
  20. CONST TOOBIG       = 6300
  21. CONST BADPATH      = 6400
  22.  
  23. ''Bitmap ID
  24. CONST LOGO         =    1
  25.  
  26. ''File Types
  27. CONST    APPFILES  =    1
  28. CONST OPTBMPFILES  =    2
  29. CONST OPTMIDFILES  =    3
  30. CONST OPTWAVFILES  =    4
  31.  
  32. CONST MB_ICONSTOP  = MB_ICONHAND
  33.  
  34. CONST ScreenerySubdirectory$ = "TENDO\BMPS"
  35.  
  36. GLOBAL     DEST$    ''Default destination directory.
  37. GLOBAL WINDRIVE$    ''Windows drive letter.
  38. GLOBAL   APPOPT$
  39.  
  40. ''CustInst list symbol names
  41. GLOBAL    APPNEEDS$  ''Option list costs per drive
  42. GLOBAL OPTBMPNEEDS$
  43. GLOBAL OPTMIDNEEDS$
  44. GLOBAL OPTWAVNEEDS$
  45.  
  46. GLOBAL  EXTRACOSTS$  ''List of extra costs to add per drive
  47. GLOBAL     BIGLIST$  ''List of option files cost calc results (boolean)
  48.  
  49. ''Dialog list symbol names
  50. GLOBAL CHECKSTATES$
  51. GLOBAL  STATUSTEXT$
  52. GLOBAL   DRIVETEXT$
  53.  
  54.  
  55. DECLARE SUB AddOptFilesToCopyList (ftype%)
  56. DECLARE SUB RecalcOptFiles (ftype%)
  57. DECLARE SUB RecalcPath
  58. DECLARE SUB SetDriveStatus
  59. DECLARE FUNCTION appendSlash (szDir$) AS STRING
  60. DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
  61.  
  62.  
  63.  
  64. INIT:
  65.     '' hBWCC% = LoadLibrary("BWCC")
  66.  
  67.     CUIDLL$ = "mscuistf.dll"            ''custom user interface dll
  68.     HELPPROC$ = "FHelpDlgProc"          ''Help dialog procedure
  69.  
  70.     SetBitmap CUIDLL$, LOGO
  71.     SetTitle "T E N D O  Installer"
  72.     SetAbout "Customized for  T E N D O  by", "⌐ The Slim Rum Demon, 22/8/94"
  73.  
  74.     szInf$ = GetSymbolValue("STF_SRCINFPATH")
  75.     IF szInf$ = "" THEN
  76.         szInf$ = GetSymbolValue("STF_CWDDIR") + "TENDO.INF"
  77.     END IF
  78.     ReadInfFile szInf$
  79.  
  80.     WINDRIVE$ = MID$(GetWindowsDir, 1, 1)
  81.     DEST$ = WINDRIVE$ + ":\TENDO"
  82.  
  83.     ''CustInst list symbols
  84.     CHECKSTATES$ = "CheckItemsState"
  85.      STATUSTEXT$ = "StatusItemsText"
  86.       DRIVETEXT$ = "DriveStatusText"
  87.     AddListItem CHECKSTATES$, "ON"
  88.     AddListItem CHECKSTATES$,  ""
  89.     AddListItem CHECKSTATES$, "ON"
  90.     AddListItem CHECKSTATES$, "ON"
  91.     FOR i% = 1 TO 4 STEP 1
  92.         AddListItem  STATUSTEXT$,   ""
  93.     NEXT i%
  94.     FOR i% = 1 TO 7 STEP 1
  95.         AddListItem   DRIVETEXT$,   ""
  96.     NEXT i%
  97.     ReplaceListItem DRIVETEXT$, 7, DEST$
  98.  
  99.     ''Disk cost list symbols
  100.        APPNEEDS$  =    "AppNeeds"
  101.     OPTBMPNEEDS$  = "OptBMPNeeds"
  102.     OPTMIDNEEDS$  = "OptMIDNeeds"
  103.     OPTWAVNEEDS$  = "OptWAVNeeds"
  104.  
  105.     EXTRACOSTS$   = "ExtraCosts"
  106.        BIGLIST$   =    "BigList"
  107.     FOR i% = 1 TO  4 STEP 1
  108.         AddListItem    BIGLIST$,  ""
  109.     NEXT i%
  110.     FOR i% = 1 TO 26 STEP 1
  111.         AddListItem EXTRACOSTS$, "0"
  112.     NEXT i%
  113.  
  114.     APPOPT$ = "1"
  115.  
  116.     RecalcPath
  117.     SetDriveStatus
  118.  
  119. '$IFDEF DEBUG
  120.     i% = SetSizeCheckMode(scmOnIgnore)    '' could use scmOff; def = scmOnFatal
  121. '$ENDIF ''DEBUG
  122.  
  123.     ''Windows 3.11 masquerades as version 3.10. Just thought I'd let me know.
  124.     IF  (GetWindowsMajorVersion() * 256) + GetWindowsMinorVersion() < 778 THEN
  125.       i% = BWCCMessageBox(HwndFrame(), "Sorry. T E N D O  requires Microsoft Windows Version 3.1 or later!", "Unsupported Windows Version", MB_OK + MB_TASKMODAL + MB_ICONSTOP)
  126.       ERROR -1
  127.     END IF
  128.  
  129. CUSTINST:
  130.     sz$ = UIStartDlg(CUIDLL$, CUSTINST, "FCustInstDlgProc", APPHELP, HELPPROC$)
  131.  
  132.     IF sz$ = "CONTINUE" THEN
  133.         ''Install only if it will fit.
  134.         FOR i% = 1 TO 4 STEP 1
  135.             IF GetListItem(BIGLIST$, i%) <> "" THEN
  136.                 GOSUB TOOBIG
  137.                 GOTO CUSTINST
  138.             END IF
  139.         NEXT i%
  140.         UIPop 1
  141.         GOTO INSTALL
  142.     ELSEIF sz$ = "PATH" THEN
  143.         GOTO GETPATH
  144.     ELSEIF sz$ = "CHK1" THEN
  145.         RecalcOptFiles    APPFILES
  146.         SetDriveStatus
  147.         GOTO CUSTINST
  148.     ELSEIF sz$ = "CHK2" THEN
  149.         RecalcOptFiles OPTBMPFILES
  150.         SetDriveStatus
  151.         GOTO CUSTINST
  152.     ELSEIF sz$ = "CHK3" THEN
  153.         RecalcOptFiles OPTMIDFILES
  154.         SetDriveStatus
  155.         GOTO CUSTINST
  156.     ELSEIF sz$ = "CHK4" THEN
  157.         RecalcOptFiles OPTWAVFILES
  158.         SetDriveStatus
  159.         GOTO CUSTINST
  160.     ELSEIF sz$ = "BTN1" THEN
  161.         GOTO APPFILESDLG
  162.     ELSEIF sz$ = "REACTIVATE" THEN
  163.         RecalcPath
  164.         SetDriveStatus
  165.         GOTO CUSTINST
  166.     ELSE
  167.         GOSUB ASKQUIT
  168.         GOTO CUSTINST
  169.     END IF
  170.  
  171.  
  172.  
  173. INSTALL:
  174.     ClearCopyList
  175.     AddOptFilesToCopyList    APPFILES
  176.     AddOptFilesToCopyList OPTBMPFILES
  177.     AddOptFilesToCopyList OPTMIDFILES
  178.     AddOptFilesToCopyList OPTWAVFILES
  179.     CreateDir DEST$, cmoNone
  180.     IF GetListItem(CHECKSTATES$, OPTBMPFILES) = "ON" THEN
  181.         CreateDir MakePath(DEST$, ScreenerySubdirectory$), cmoNone
  182.     END IF
  183.     CopyFilesInCopyList
  184.  
  185.     IF GetListItem(CHECKSTATES$, APPFILES) = "ON" THEN
  186.         szSystemINI$ = MakePath(GetWindowsDir(), "SYSTEM.INI")
  187.         CreateIniKeyValue szSystemINI$, "DDEShares", "TENDO$", MakePath(DEST$, "TENDO") + ",AnyOldBollocks,,31,,0,,0,0,0", cmoNone
  188.         szSystemINI$ = ""
  189.  
  190.         CreateProgmanGroup "T E N D O", "TENDO.GRP", cmoNone
  191.           ShowProgmanGroup "T E N D O",           1, cmoNone
  192.         CreateProgmanItem  "T E N D O", "T E N D O", MakePath(DEST$, "TENDO.EXE"), "", cmoOverwrite
  193.     END IF
  194.  
  195.     szINI$ = MakePath(GetWindowsDir(), "TENDO.INI")
  196.     IF GetListItem(CHECKSTATES$, OPTBMPFILES) = "ON" THEN
  197.         CreateIniKeyValue szINI$, "General", "Path2CD", appendSlash(                       DEST$), cmoOverwrite
  198.     ELSE
  199.         CreateIniKeyValue szINI$, "General", "Path2CD", appendSlash(GetSymbolValue("STF_SRCDIR")), cmoNone
  200.     END IF
  201.     szINI$ = ""
  202.  
  203. QUIT:
  204.     ON ERROR GOTO ERRQUIT
  205.  
  206.     IF ERR = 0 THEN
  207.         dlg% = EXITSUCCESS
  208.     ELSEIF ERR = STFQUIT THEN
  209.         dlg% = EXITQUIT
  210.     ELSE
  211.         dlg% = EXITFAILURE
  212.     END IF
  213. QUITL1:
  214.     sz$ = UIStartDlg(CUIDLL$, dlg%, "FInfo0DlgProc", 0, "")
  215.     IF sz$ = "REACTIVATE" THEN
  216.         GOTO QUITL1
  217.     END IF
  218.     UIPop 1
  219.  
  220.     '' FreeLibrary(hBWCC%)
  221.  
  222.     END
  223.  
  224. ERRQUIT:
  225.     i% = BWCCMessageBox(HwndFrame(), "Setup sources were corrupted!", "Setup Message", MB_OK + MB_TASKMODAL + MB_ICONHAND)
  226.  
  227.     '' FreeLibrary(hBWCC%)
  228.  
  229.     END
  230.  
  231.  
  232.  
  233. GETPATH:
  234.     SetSymbolValue "EditTextIn", DEST$
  235.     SetSymbolValue "EditFocus", "END"
  236. GETPATHL1:
  237.     sz$ = UIStartDlg(CUIDLL$, DESTPATH, "FEditDlgProc", APPHELP, HELPPROC$)
  238.  
  239.     IF sz$ = "CONTINUE" THEN
  240.         olddest$ = DEST$
  241.         DEST$ = GetSymbolValue("EditTextOut")
  242.  
  243.         ''Validate new path.
  244.         IF (IsDirWritable(DEST$) = 0) OR (IsDirWritable(MakePath(DEST$, ScreenerySubdirectory$)) = 0) THEN
  245.             GOSUB BADPATH
  246.             GOTO GETPATHL1
  247.         END IF
  248.         UIPop 1
  249.  
  250.         ''Truncate display if too long.
  251.         IF LEN(DEST$) > 23 THEN
  252.             ReplaceListItem DRIVETEXT$, 7, MID$(DEST$, 1, 23)+"..."
  253.         ELSE
  254.             ReplaceListItem DRIVETEXT$, 7, DEST$
  255.         END IF
  256.  
  257.         ''Recalc if path changed.
  258.         IF (olddest$ <> DEST$) AND (olddest$ <> DEST$+"\") AND (olddest$+"\" <> DEST$) THEN
  259.             RecalcPath
  260.             SetDriveStatus
  261.         END IF
  262.  
  263.         olddest$ = ""
  264.         GOTO CUSTINST
  265.     ELSEIF sz$ = "REACTIVATE" THEN
  266.         RecalcPath
  267.         SetDriveStatus
  268.         GOTO GETPATHL1
  269.     ELSEIF sz$ = "EXIT" THEN
  270.         GOSUB ASKQUIT
  271.         GOTO GETPATHL1
  272.     ELSE
  273.         UIPop 1
  274.         GOTO CUSTINST
  275.     END IF
  276.  
  277.  
  278.  
  279. APPFILESDLG:
  280.     SetSymbolValue "RadioDefault", APPOPT$
  281. APP_L1:
  282.     sz$ = UIStartDlg(CUIDLL$, OPTIONS, "FRadioDlgProc", APPHELP, HELPPROC$)
  283.     newopt$ = GetSymbolValue("ButtonChecked")
  284.  
  285.     IF sz$ = "CONTINUE" THEN
  286.         UIPop 1
  287.         IF newopt$ <> APPOPT$ THEN
  288.             APPOPT$ = newopt$
  289.             RecalcOptFiles APPFILES
  290.             SetDriveStatus
  291.         END IF
  292.         newopt$ = ""
  293.         GOTO CUSTINST
  294.     ELSEIF sz$ = "REACTIVATE" THEN
  295.         RecalcPath
  296.         SetDriveStatus
  297.         GOTO APP_L1
  298.     ELSEIF sz$ = "EXIT" THEN
  299.         GOSUB ASKQUIT
  300.         GOTO APP_L1
  301.     ELSE
  302.         UIPop 1
  303.         newopt$ = ""
  304.         GOTO CUSTINST
  305.     END IF
  306.  
  307.  
  308.  
  309. TOOBIG:
  310.     sz$ = UIStartDlg(CUIDLL$, TOOBIG, "FInfo0DlgProc", 0, "")
  311.     IF sz$ = "REACTIVATE" THEN
  312.         RecalcPath
  313.         SetDriveStatus
  314.         GOTO TOOBIG
  315.     END IF
  316.     UIPop 1
  317.     RETURN
  318.  
  319.  
  320.  
  321. BADPATH:
  322.     sz$ = UIStartDlg(CUIDLL$, BADPATH, "FInfo0DlgProc", 0, "")
  323.     IF sz$ = "REACTIVATE" THEN
  324.         RecalcPath
  325.         SetDriveStatus
  326.         GOTO BADPATH
  327.     END IF
  328.     UIPop 1
  329.     RETURN
  330.  
  331.  
  332.  
  333. ASKQUIT:
  334.     sz$ = UIStartDlg(CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "")
  335.  
  336.     IF sz$ = "EXIT" THEN
  337.         UIPopAll
  338.         ERROR STFQUIT
  339.     ELSEIF sz$ = "REACTIVATE" THEN
  340.         GOTO ASKQUIT
  341.     ELSE
  342.         UIPop 1
  343.     END IF
  344.     RETURN
  345.  
  346.  
  347.  
  348. '**
  349. '** Purpose:
  350. '**     Adds the specified option files to the copy list.
  351. '** Arguments:
  352. '**     ftype%  - type of files to add, one of the following:
  353. '**             APPFILES, OPTFILES1, OPTFILES2
  354. '** Returns:
  355. '**     none.
  356. '*************************************************************************
  357. SUB AddOptFilesToCopyList (ftype%) STATIC
  358.  
  359.     IF GetListItem(CHECKSTATES$, ftype%) = "ON" THEN
  360.         SrcDir$ = GetSymbolValue("STF_SRCDIR")
  361.         IF ftype% = APPFILES THEN
  362.             AddSectionKeyFileToCopyList  "AppLocalisedFiles"            , APPOPT$, SrcDir$, DEST$
  363.             AddSectionFilesToCopyList    "AppInvariantFiles"            ,          SrcDir$, DEST$
  364.             AddSectionFilesToCopyList    "-> Windows Directory"         ,          SrcDir$, GetWindowsDir()
  365.         ELSEIF ftype% = OPTBMPFILES THEN
  366.             AddSectionFilesToCopyList    "Additional Background Bitmaps",          SrcDir$, MakePath(DEST$, ScreenerySubdirectory$)
  367.         ELSEIF ftype% = OPTMIDFILES THEN
  368.             AddSectionFilesToCopyList    "Incidental Music"             ,          SrcDir$, DEST$
  369.         ELSEIF ftype% = OPTWAVFILES THEN
  370.             AddSectionFilesToCopyList    "Sampled Sounds"               ,          SrcDir$, DEST$
  371.         END IF
  372.         SrcDir$ = ""
  373.     END IF
  374. END SUB
  375.  
  376.  
  377. '**
  378. '** Purpose:
  379. '**     Recalculates disk space for the given option files and sets
  380. '**     the status info symbol "StatusItemsText".
  381. '** Arguments:
  382. '**     ftype% - type of files to add, one of the following:
  383. '**             APPFILES, OPTFILES1, OPTFILES2
  384. '** Returns:
  385. '**     none.
  386. '*************************************************************************
  387. SUB RecalcOptFiles (ftype%) STATIC
  388.     CursorSave% = ShowWaitCursor()
  389.     ClearCopyList
  390.     AddOptFilesToCopyList ftype%
  391.  
  392.     fExtra% = 0
  393.     IF ftype% = APPFILES THEN
  394.         ListSym$ = APPNEEDS$
  395.         IF GetListItem(CHECKSTATES$, APPFILES) = "ON" THEN
  396.             ''Add extra cost to Windows drive for .INI, ProgMan .GRP, e.t.c.
  397.             ndrive% = ASC(ucase$(WINDRIVE$)) - ASC("A") + 1
  398.             ReplaceListItem EXTRACOSTS$, ndrive%, "51200"
  399.             fExtra% = 1
  400.         END IF
  401.     ELSEIF ftype% = OPTBMPFILES THEN
  402.         ListSym$ = OPTBMPNEEDS$
  403.     ELSEIF ftype% = OPTMIDFILES THEN
  404.         ListSym$ = OPTMIDNEEDS$
  405.     ELSEIF ftype% = OPTWAVFILES THEN
  406.         ListSym$ = OPTWAVNEEDS$
  407.     END IF
  408.  
  409.     StillNeed& = GetCopyListCost(EXTRACOSTS$, ListSym$, "")
  410.  
  411.     cost& = 0
  412.     FOR i% = 1 TO 26 STEP 1
  413.         cost&  = cost& + VAL(GetListItem(ListSym$, i%))
  414.     NEXT i%
  415.     ReplaceListItem STATUSTEXT$, ftype%, STR$(cost& / 1024) + " K"
  416.  
  417.     IF StillNeed& > 0 THEN
  418.         ReplaceListItem BIGLIST$, ftype%, "YES"
  419.     ELSE
  420.         ReplaceListItem BIGLIST$, ftype%, ""
  421.     END IF
  422.  
  423.     IF fExtra% THEN
  424.         ReplaceListItem EXTRACOSTS$, ndrive%, "0"
  425.     END IF
  426.     RestoreCursor CursorSave%
  427.     ListSym$ = ""
  428. END SUB
  429.  
  430.  
  431. '**
  432. '** Purpose:
  433. '**     Recalculates disk space and sets option status info according
  434. '**     to the current destination path.
  435. '** Arguments:
  436. '**     none.
  437. '** Returns:
  438. '**     none.
  439. '*************************************************************************
  440. SUB RecalcPath STATIC
  441.  
  442.     CursorSave% = ShowWaitCursor()
  443.  
  444.     RecalcOptFiles    APPFILES
  445.     RecalcOptFiles OPTBMPFILES
  446.     RecalcOptFiles OPTMIDFILES
  447.     RecalcOptFiles OPTWAVFILES
  448.  
  449.     RestoreCursor CursorSave%
  450. END SUB
  451.  
  452.  
  453. '**
  454. '** Purpose:
  455. '**     Sets drive status info according to latest disk space calcs.
  456. '** Arguments:
  457. '**     none.
  458. '** Returns:
  459. '**     none.
  460. '*************************************************************************
  461. SUB SetDriveStatus STATIC
  462.  
  463.     drive$ = MID$(DEST$, 1, 1)
  464.     ndrive% = ASC(ucase$(drive$)) - ASC("A") + 1
  465.     cost& = VAL(GetListItem(APPNEEDS$, ndrive%)) + VAL(GetListItem(OPTBMPNEEDS$, ndrive%)) + VAL(GetListItem(OPTMIDNEEDS$, ndrive%)) + VAL(GetListItem(OPTWAVNEEDS$, ndrive%))
  466.     free& = GetFreeSpaceForDrive(drive$)
  467.     ReplaceListItem DRIVETEXT$, 1, drive$ + ":"
  468.     ReplaceListItem DRIVETEXT$, 2, STR$(cost& / 1024) + " K"
  469.     ReplaceListItem DRIVETEXT$, 3, STR$(free& / 1024) + " K"
  470.  
  471.     IF drive$ = WINDRIVE$ THEN
  472.         ReplaceListItem DRIVETEXT$, 4, ""
  473.         ReplaceListItem DRIVETEXT$, 5, ""
  474.         ReplaceListItem DRIVETEXT$, 6, ""
  475.     ELSE
  476.         ndrive% = ASC(ucase$(WINDRIVE$)) - ASC("A") + 1
  477.         cost& = VAL(GetListItem(APPNEEDS$, ndrive%)) + VAL(GetListItem(OPTBMPNEEDS$, ndrive%)) + VAL(GetListItem(OPTMIDNEEDS$, ndrive%)) + VAL(GetListItem(OPTWAVNEEDS$, ndrive%))
  478.         IF cost& = 0 THEN
  479.             ReplaceListItem DRIVETEXT$, 4, ""
  480.             ReplaceListItem DRIVETEXT$, 5, ""
  481.             ReplaceListItem DRIVETEXT$, 6, ""
  482.         ELSE
  483.             free& = GetFreeSpaceForDrive(WINDRIVE$)
  484.             ReplaceListItem DRIVETEXT$, 4, WINDRIVE$ + ":"
  485.             ReplaceListItem DRIVETEXT$, 5, STR$(cost& / 1024) + " K"
  486.             ReplaceListItem DRIVETEXT$, 6, STR$(free& / 1024) + " K"
  487.         END IF
  488.     END IF
  489. END SUB
  490.  
  491. FUNCTION appendSlash (szDir$) STATIC AS STRING
  492.     IF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
  493.         appendSlash = szDir$
  494.     ELSE
  495.         appendSlash = szDir$ + "\"
  496.     END IF
  497. END FUNCTION
  498.  
  499. '**
  500. '** Purpose:
  501. '**     Appends a file name to the end of a directory path,
  502. '**     inserting a backslash character as needed.
  503. '** Arguments:
  504. '**     szDir$  - full directory path (with optional ending "\")
  505. '**     szFile$ - filename to append to directory
  506. '** Returns:
  507. '**     Resulting fully qualified path name.
  508. '*************************************************************************
  509. FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING
  510.     IF szDir$ = "" THEN
  511.         MakePath = szFile$
  512.     ELSEIF szFile$ = "" THEN
  513.         MakePath = szDir$
  514.     ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
  515.         MakePath = szDir$ + szFile$
  516.     ELSE
  517.         MakePath = szDir$ + "\" + szFile$
  518.     END IF
  519. END FUNCTION
  520.  
  521.