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