home *** CD-ROM | disk | FTP | other *** search
/ Compton's Interactive Encyclopedia 1.01VW / CIE.ISO / setup.mst < prev    next >
Text File  |  1992-10-27  |  5KB  |  176 lines

  1. '**************************************************************************
  2. '*                       VfW 1.0 Runtime Setup
  3. '**************************************************************************
  4.  
  5. '$INCLUDE 'setupapi.inc'
  6. '$INCLUDE 'mscpydis.inc'    ''System
  7. '$INCLUDE 'msdetect.inc'    ''Detects Avalilable Disk Space
  8.  
  9. ''Dialog ID's
  10. CONST WELCOME       = 100
  11. CONST ASKQUIT       = 200
  12. CONST DESTPATH      = 300
  13. CONST EXITFAILURE   = 400
  14. CONST EXITQUIT      = 600
  15. CONST EXITSUCCESS   = 700
  16. CONST OPTIONS       = 800
  17. CONST APPHELP       = 900
  18. CONST APPHELP2      = 1500
  19. CONST APPHELP3      = 1700
  20. CONST CHECK         = 2500
  21. CONST TOOBIG        = 6300
  22. CONST BADPATH       = 6400
  23.  
  24. ''Bitmap ID
  25. CONST LOGO = 1
  26.  
  27. ''Disk Sizes
  28.  
  29. GLOBAL File1
  30. GLOBAL File2
  31. GLOBAL WantedDiskSize&
  32.  
  33. ''File Types
  34. GLOBAL DEST$        ''Default destination directory.
  35. GLOBAL WINDRIVE$    ''Windows Drive Letter.
  36. GLOBAL OPTCUR$      ''Option selection from option dialog.
  37. GLOBAL CHECKSTATES$
  38. GLOBAL RUNTIME$
  39. GLOBAL AVITOOLS$
  40. GLOBAL MDKTOOLS$
  41. GLOBAL TOOLS$
  42.  
  43. SrcDir$ = GetSymbolValue("STF_SRCDIR")
  44. WinDir$ = GetWindowsDir()
  45. WinSysDir$ = GetWindowsSysDir()
  46.  
  47. DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
  48.  
  49. INIT:
  50.     CUIDLL$ = "mscuistf.dll"            ''Custom user interface dll
  51.     HELPPROC$ = "FHelpDlgProc"          ''Help dialog procedure
  52.  
  53.     MajorVer% = GetWindowsMajorVersion()
  54.     MinorVer% = GetWindowsMinorVersion()
  55.  
  56.     IF  MajorVer% < 3 OR (MajorVer% = 3 AND MinorVer% < 10) THEN
  57.     i% = DoMsgBox("Microsoft Windows version 3.10 or greater is required for this software.  Please upgrade your version of Windows.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  58.         END
  59.     END IF
  60.  
  61.     SetBitmap CUIDLL$, LOGO
  62.     SetTitle "Video for Windows 1.0"
  63.  
  64.     szInf$ = GetSymbolValue("STF_SRCINFPATH")
  65.     IF szInf$ = "" THEN
  66.         szInf$ = GetSymbolValue("STF_CWDDIR") + "SETUP.INF"
  67.     END IF
  68.     ReadInfFile szInf$
  69.  
  70.     WINDRIVE$ = MID$(WinDir$, 1, 1)
  71.  
  72. WELCOME:
  73.     sz$ = UIStartDlg(CUIDLL$, WELCOME, "FInfoDlgProc", APPHELP, HELPPROC$)
  74.     IF sz$ = "CONTINUE" THEN
  75.         UIPop 1
  76.     ELSE
  77.         GOSUB ASKQUIT
  78.         GOTO WELCOME
  79.     END IF
  80.  
  81. ClearCopyList
  82.  
  83.         WantedDiskSize&=1024000
  84.  
  85.         DiskSize&=GetFreeSpaceForDrive(WINDRIVE$)
  86.  
  87.         If WantedDiskSize& > DiskSize& then
  88.             GOSUB TOOBIG
  89.             ERROR STFQUIT
  90.         EndIf
  91.  
  92. '' Setting RUNTIME files to be copied
  93.         AddSectionFilesToCopyList "MPlayer", SrcDir$, WinDir$
  94.         AddSectionFilesToCopyList "VfW Runtime", SrcDir$, WinSysDir$
  95.         AddSectionFilesToCopyList "AVICodecs", SrcDir$, WinSysDir$
  96.  
  97. CopyFilesInCopyList
  98.  
  99. ''Updating WIN.INI and SYSTEM.INI
  100.         CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.MSVC", "msvidc.drv", cmoOverwrite
  101.         CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.RT21", "indeo.drv", cmoOverwrite
  102.         CreateIniKeyValue "WIN.INI", "mci extensions", "avi", "AVIVideo", cmoOverwrite
  103.         CreateIniKeyValue WinDir$ + "system.ini", "mci", "AVIVideo", "mciavi.drv", cmoOverwrite
  104.  
  105. Run ("regedit.exe /s " + MakePath(WinDir$, "mplayer.reg"))
  106.  
  107. Run ("profdisp")
  108.  
  109. QUIT:
  110.     ON ERROR GOTO ERRQUIT
  111.  
  112.     IF ERR = 0 THEN
  113.         dlg% = EXITSUCCESS
  114.     ELSEIF ERR = STFQUIT THEN
  115.         dlg% = EXITQUIT
  116.     ELSE
  117.         dlg% = EXITFAILURE
  118.     END IF
  119. QUITL1:
  120.     sz$ = UIStartDlg(CUIDLL$, dlg%, "FInfo0DlgProc", 0, "")
  121.     IF sz$ = "REACTIVATE" THEN
  122.         GOTO QUITL1
  123.     END IF
  124.     UIPop 1
  125.  
  126.     END
  127.  
  128. ERRQUIT:
  129.     i% = DoMsgBox("Setup sources were corrupted, call the included support number", "Setup Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  130.     END
  131.  
  132. ASKQUIT:
  133.     sz$ = UIStartDlg(CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "")
  134.  
  135.     IF sz$ = "EXIT" THEN
  136.         UIPopAll
  137. ''        ERROR STFQUIT
  138.         END
  139.     ELSEIF sz$ = "REACTIVATE" THEN
  140.         GOTO ASKQUIT
  141.     ELSE
  142.         UIPop 1
  143.     END IF
  144.     RETURN
  145.  
  146. TOOBIG:
  147.     sz$ = UIStartDlg(CUIDLL$, TOOBIG, "FInfo0DlgProc", 0, "")
  148.     IF sz$ = "REACTIVATE" THEN
  149.         GOTO TOOBIG
  150.     END IF
  151.     UIPop 1
  152.     RETURN
  153.  
  154. '**
  155. '** Purpose:
  156. '**     Appends a file name to the end of a directory path,
  157. '**     inserting a backslash character as needed.
  158. '** Arguments:
  159. '**     szDir$  - full directory path (with optional ending "\")
  160. '**     szFile$ - filename to append to directory
  161. '** Returns:
  162. '**     Resulting fully qualified path name.
  163. '*************************************************************************
  164. FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING
  165.     IF szDir$ = "" THEN
  166.         MakePath = szFile$
  167.     ELSEIF szFile$ = "" THEN
  168.         MakePath = szDir$
  169.     ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
  170.         MakePath = szDir$ + szFile$
  171.     ELSE
  172.         MakePath = szDir$ + "\" + szFile$
  173.     END IF
  174. END FUNCTION
  175.  
  176.