home *** CD-ROM | disk | FTP | other *** search
/ The Pink Panther Screensaver / PINK.iso / disk1 / setup.mst < prev    next >
Encoding:
Text File  |  1994-10-11  |  8.0 KB  |  260 lines

  1. '**************************************************************************
  2. '*                  VfW 1.1 Runtime Setup
  3. '**************************************************************************
  4. '$INCLUDE 'setupapi.inc'
  5. '$INCLUDE 'mscpydis.inc'    ''System
  6. '$INCLUDE 'msdetect.inc'    ''Detects Avalilable Disk Space
  7.  
  8. ''Dialog ID's
  9. CONST WELCOME       = 100
  10. CONST ASKQUIT       = 200
  11. CONST EXITFAILURE   = 400
  12. CONST EXITQUIT      = 600
  13. CONST EXITSUCCESS   = 700
  14. CONST APPHELP       = 900
  15. CONST CHECK         = 2500
  16. CONST SMALLWIN      = 2200
  17. CONST RESTART       = 2600
  18. CONST RESTARTII     = 2700
  19.  
  20. ''Bitmap ID
  21. CONST LOGO = 1
  22.  
  23. '' *** This installation program launched by another install then 1 otherwise 0
  24. const CHILDINSTALL = 1
  25.  
  26.  
  27. GLOBAL SizeReq&  '' Total Disk Size required for installation
  28.  
  29. ''File Types
  30. GLOBAL WinDir$
  31. GLOBAL WinSysDir$
  32. GLOBAL WINDRIVE$    ''Windows Drive Letter.
  33. GLOBAL CHECKSTATES$
  34.  
  35. DECLARE SUB Install
  36. DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
  37. DECLARE FUNCTION OnWindowsNT LIB "INIUPD.DLL" AS INTEGER
  38. DECLARE FUNCTION VflatdPresent LIB "iniupd.DLL" AS INTEGER
  39. DECLARE SUB Reboot LIB "iniupd.dll"
  40. DECLARE fUNCTION ExitWindowsExec  LIB "User" (Exec$, Param$) AS INTEGER
  41.  
  42. INIT:
  43.   
  44.     CUIDLL$ = "mscuistf.dll"            ''Custom user interface dll
  45.     HELPPROC$ = "FHelpDlgProc"          ''Help dialog procedure
  46.     
  47.     WIN32ENABLED% = 0
  48.     MajorVer% = GetWindowsMajorVersion()
  49.     MinorVer% = GetWindowsMinorVersion()
  50.  
  51.     IF MajorVer% < 3 OR (MajorVer% = 3 AND MinorVer% < 10) THEN
  52.     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)
  53.     END
  54.     END IF
  55.  
  56.     IF OnWindowsNT() THEN
  57.       i% = DoMsgBox("This version of Video for Windows does not run on Windows NT.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  58.       END
  59.     END IF
  60.  
  61.     SetBitmap CUIDLL$, LOGO
  62.     SetTitle "Video for Windows 1.1 Runtime"
  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$(GetWindowsDir, 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. ''Prepare Copy list and check size
  82.  
  83.     ClearCopyList
  84.     SrcDir$ = GetSymbolValue("STF_SRCDIR")
  85.     WinDir$ = GetWindowsDir()
  86.     DEST$ = GetWindowsDir()
  87.     WinSysDir$ = GetWindowsSysDir()
  88.  
  89. ''  Runtime files (on Windows disk)
  90.  
  91.     AddSectionFilesToCopyList "VfW Runtime", SrcDir$, WinSysDir$
  92.     AddSectionFilesToCopyList "OLE2", SrcDir$, WinSysDir$
  93.     AddSectionFilesToCopyList "ACM Drivers", SrcDir$, WinSysDir$
  94.     AddSectionFilesToCopyList "MPlayer", SrcDir$, WinDir$
  95.     AddSectionFilesToCopyList "AVICodecs", SrcDir$, WinSysDir$
  96.  
  97. ''  Check windrive diskspace
  98.     SizeReq& = GetCopyListCost ("","", "")
  99.     IF SizeReq& <> 0 THEN
  100.     GOSUB SMALLWIN
  101.     END
  102.     END IF
  103.  
  104. Install
  105.  
  106.     '' *** Running from another Install, terminate install
  107.     IF CHILDINSTALL = 1 THEN    
  108.        END
  109.     END IF    
  110.  
  111. '' Restart Windows: if it has to updates ACM from DOS, it restarts Windows automatically
  112. '' else, it gives the user the choice
  113.     RESTRT% = RestartListEmpty ()
  114.     Exe$ = DEST$ + "\_msrstrt.exe"
  115.     Batch$ = DEST$ + "\_mssetup.bat"
  116.     empty$ = ""
  117. RESTART:
  118.     IF RESTRT% = 0 THEN
  119.        sz$ = UIStartDlg(cuidll$, RESTART, "FInfo0DlgProc", 0, "")
  120.        IF sz$ = "REACTIVATE" THEN
  121.       GOTO RESTART
  122.        ENDIF
  123.        I% = ExitExecRestart ()
  124.        RemoveFile Exe$, cmoForce
  125.        RemoveFile Batch$, cmoForce
  126.        END
  127.     ELSE
  128.        sz$ = UIStartDlg(CUIDLL$, RESTARTII, "FQuitDlgProc", 0, "")
  129.        IF sz$ = "CONTINUE" THEN
  130.       I% = ExitWindowsExec (Exe$, empty$)
  131.       IF I% = 0 THEN
  132.          GOTO RESTART
  133.       ELSE
  134.          END
  135.      ENDIF
  136.        ELSEIF sz$ = "EXIT" THEN
  137.       UIPopAll
  138.       END
  139.        ELSEIF sz$ = "REACTIVATE" THEN
  140.       GOTO RESTART
  141.        ELSE
  142.       UIPop 1
  143.        END IF
  144.     END IF
  145.  
  146.  
  147. QUIT:
  148.     ON ERROR GOTO ERRQUIT
  149.  
  150.     IF ERR = 0 THEN
  151.     dlg% = EXITSUCCESS
  152.     ELSEIF ERR = STFQUIT THEN
  153.     dlg% = EXITQUIT
  154.     ELSE
  155.     dlg% = EXITFAILURE
  156.     END IF
  157. QUITL1:
  158.     sz$ = UIStartDlg(CUIDLL$, dlg%, "FInfo0DlgProc", 0, "")
  159.     IF sz$ = "REACTIVATE" THEN
  160.     GOTO QUITL1
  161.     END IF
  162.     UIPop 1
  163.     END
  164.  
  165. ERRQUIT:
  166.     i% = DoMsgBox("An installation problem occured, call the product support service", "Setup Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  167.     END
  168.  
  169.  
  170. ASKQUIT:
  171.     sz$ = UIStartDlg(CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "")
  172.  
  173.     IF sz$ = "EXIT" THEN
  174.     UIPopAll
  175. ''        ERROR STFQUIT
  176.     END
  177.     ELSEIF sz$ = "REACTIVATE" THEN
  178.     GOTO ASKQUIT
  179.     ELSE
  180.     UIPop 1
  181.     END IF
  182.     RETURN
  183.  
  184. SMALLWIN:
  185.     sz$ = UIStartDlg(CUIDLL$, SMALLWIN, "FInfo0DlgProc", 0, "")
  186.     IF sz$ = "REACTIVATE" THEN
  187.     GOTO SMALLWIN
  188.     END IF
  189.     UIPop 1
  190.     RETURN
  191.  
  192. '**
  193. '** Purpose:
  194. '**     Performs all installation operations.
  195. '** Arguments:
  196. '**     none.
  197. '** Returns:
  198. '**     none.
  199. '*************************************************************************
  200. SUB Install STATIC
  201.  
  202.     SetRestartDir WinDir$
  203.     CopyFilesInCopyList
  204.  
  205. ''Updating WIN.INI and SYSTEM.INI
  206.     IF VflatdPresent() = 0 THEN
  207.        CreateSysIniKeyValue WinDir$ + "system.ini", "386Enh", "device", "dva.386", cmoOverwrite
  208.     END IF
  209.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.CVID", "iccvid.drv", cmoOverwrite
  210.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.MSVC", "msvidc.drv", cmoOverwrite   
  211.  
  212.     '' setup references to Indeo 3.2 drivers.    
  213.       CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.MRLE", "msrle.drv", cmoOverwrite 
  214.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.IV31", "ir32.dll", cmoOverwrite
  215.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.IV32", "ir32.dll", cmoOverwrite
  216.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.RT21", "ir21.dll", cmoOverwrite
  217.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.YVU9", "iyvu9.dll", cmoOverwrite
  218.  
  219.     CreateIniKeyValue WinDir$ + "WIN.INI", "mci extensions", "avi", "AVIVideo", cmoOverwrite
  220.     CreateIniKeyValue WinDir$ + "system.ini", "mci", "AVIVideo", "mciavi.drv", cmoOverwrite
  221.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "WaveMapper", "msacm.drv", cmoOverwrite
  222.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "MSACM.msadpcm", "msadpcm.acm", cmoOverwrite
  223.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "MSACM.imaadpcm", "imaadpcm.acm", cmoOverwrite
  224.     CreateIniKeyValue WinDir$ + "control.ini", "drivers.desc", "msacm.drv", "Microsoft Sound Mapper V2.00", cmoOverwrite
  225.     CreateIniKeyValue WinDir$ + "control.ini", "drivers.desc", "msadpcm.acm", "Microsoft ADPCM Codec V2.00", cmoOverwrite
  226.     CreateIniKeyValue WinDir$ + "control.ini", "drivers.desc", "imaadpcm.acm", "Microsoft IMA ADPCM Codec V2.00", cmoOverwrite
  227.     Run ("regedit.exe /s " + MakePath(WinDir$, "mplayer.reg"))  
  228.     Run ("regedit.exe /s " + MakePath(WinDir$, "dvp.reg"))
  229.     Run ("regedit.exe /s " + MakePath(WinSysDir$, "OLE2.reg"))
  230.     Run ("regedit.exe /s " + MakePath(WinSysDir$, "cleanup.reg"))
  231.  
  232. '' Mplayer
  233.     CreateProgmanItem "Accessories", "Media Player", MakePath(WinDir$, "mplayer.exe"), "", cmoOverwrite
  234.  
  235.     Run ("profdisp.exe")   
  236. END SUB
  237.  
  238. '**
  239. '** Purpose:
  240. '**     Appends a file name to the end of a directory path,
  241. '**     inserting a backslash character as needed.
  242. '** Arguments:
  243. '**     szDir$  - full directory path (with optional ending "\")
  244. '**     szFile$ - filename to append to directory
  245. '** Returns:
  246. '**     Resulting fully qualified path name.
  247. '*************************************************************************
  248. FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING
  249.     IF szDir$ = "" THEN
  250.     MakePath = szFile$
  251.     ELSEIF szFile$ = "" THEN
  252.     MakePath = szDir$
  253.     ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
  254.     MakePath = szDir$ + szFile$
  255.     ELSE
  256.     MakePath = szDir$ + "\" + szFile$
  257.     END IF
  258. END FUNCTION
  259.  
  260.