home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Faire & BEXA 1995
/
cfaire95.iso
/
title.mst
< prev
next >
Wrap
Text File
|
1995-04-07
|
16KB
|
488 lines
'**************************************************************************
'*
'* TITLE.MST - Viewer Runtime Setup Script
'*
'* CUSTOMIZING TITLE.MST
'*
'* For a simple Setup routine, you just need to assign values to the
'* series of variables following the heading "Setup Variables". This
'* script also provides for the following more-advanced options, which
'* are supported by subroutines located later in this script:
'*
'* Option See Subroutine
'* ------------------------------------------ ---------------------
'* Install more than one .MVB file ModifyViewerIni
'* Install Help title ModifyViewerIni
'* Install custom DLLs ModifyViewerIni
'* Install multiple Program Manager items ModifyProgramManager
'* Display a custom icon with the ProgMan item ModifyProgramManager
'* Install custom fonts RegisterCustomFonts
'* Install Video for Windows runtime files RegisterDrivers
'*
'* Each customization note starts with the heading CUSTOMIZATION.
'*
'**************************************************************************
'' Global variables
GLOBAL TitleShortName$
GLOBAL TitleLongName$
GLOBAL MVBFileName$
GLOBAL PromptForPath%
GLOBAL DefaultPath$
GLOBAL ProgManGroup$
GLOBAL ProgManItem$
'' ****************************************************************
'' ** Setup Variables
'' ****************************************************************
'' Set the following string to a short form of the title name
'' (for example, "Gallery")
TitleShortName$ = "Faire95"
'' Set the following string to a long form of the title name
'' (for example, "Viewer 2.0 Gallery")
TitleLongName$ = "Computer Faire and BEXA '95"
'' Set the following variable to the name of the MVB file, without
'' the filename extension (for example, "GALLERY")
MVBFileName$ = "FAIRE95"
'' The following variable determines whether Setup prompts the user
'' to specify a directory in which to install title files. (Files
'' to be installed on the hard disk must be listed in the TITLE.INF
'' file under the [Installed Title Files] section.) Specify one of
'' the following values:
''
'' 0 Install title files in the Windows directory (default setting).
'' This is an appropriate setting if you have a limited number
'' of files to copy (for example, a single custom icon or DLL).
''
'' 1 Display a dialog box to prompt the user for a directory in
'' which to install files
PromptForPath% = 0
'' If you have specified 1 in PromptForPath%, set the following
'' variable to the default path that will be displayed in the dialog
'' box (for example, "C:\GALLERY").
DefaultPath$ = ""
'' Set the following variable to the name of the program manager
'' group you would like to create (for example, "Viewer 2.0 Gallery")
ProgManGroup$ = "Computer Faire and BEXA '95"
'' Set the following variable to the caption of the program manager
'' item for your title (for example, "Gallery")
ProgManItem$ = "Computer Faire and BEXA '95"
'***********************************************************************
'** Mainline
'***********************************************************************
GLOBAL CUIDLL$
'' Include files
'$INCLUDE 'setupapi.inc'
'' Custom UI dll
CUIDLL$ = "mscuistf.dll"
'' Dialog ID's
CONST DESTPATH = 1000
CONST APPHELP = 2000
CONST TOOBIG = 3000
CONST BADPATH = 4000
CONST SUCCESS = 5000
'' Bitmap ID
CONST LOGO = 1
'' Functions and subroutines
DECLARE FUNCTION AddFont LIB "mscuistf.dll" (szFont$, szName$) AS INTEGER
DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
DECLARE FUNCTION GetTitleDir (szDefault$) AS STRING
DECLARE FUNCTION CopyFiles(szTitleDir$) AS INTEGER
DECLARE SUB RegisterFont(fontfile$, fontname$)
DECLARE SUB ModifyViewerIni
DECLARE SUB RegisterCustomFonts
DECLARE SUB ModifyProgramManager
DECLARE SUB ShowSuccess
DECLARE SUB RegisterDrivers
'' The following statement turns size checking off. Set it to scmOnFatal
'' to enable size checking, where Setup will compare the disk file size
'' with the INF file size and report an error if they are not the same.
i% = SetSizeCheckMode(scmOff)
'' Set the title and banner bitmap. You must rebuild MSCUISTF.DLL to
'' alter the banner bitmap.
SetTitle "Computer Faire and BEXA '95 Setup"
SetBitmap CUIDLL$, LOGO
'' Read in the INF file.
ReadInfFile GetSymbolValue("STF_CWDDIR") + "TITLE.INF"
'' Decide where to put title files
IF PromptForPath% = 1 THEN
szTitleDir$ = GetTitleDir(DefaultPath$)
IF szTitleDir$ = "" THEN
GOTO QUIT
ENDIF
ELSE
szTitleDir$ = GetWindowsDir()
ENDIF
'' Copy files
IF CopyFiles(szTitleDir$) = 0 THEN
GOTO QUIT
ENDIF
'' Create the MVIEWER2.EXE MVB association
CreateIniKeyValue "WIN.INI", "Extensions", "MVB", "mviewer2.exe", cmoNone
'' Register in VIEWER.INI
ModifyViewerIni
'' Register custom fonts
RegisterCustomFonts
'' Register drivers
RegisterDrivers
'' Modify Program Manager
ModifyProgramManager
'' Success dialog
''ShowSuccess
'' Now start the title
''RUN "mviewer2.exe " + MVBFileName$ + ".MVB", NOWAIT
''RUN MakePath(GetSymbolValue("STF_SRCDIR"),"mviewer2.exe " + MVBFileName$ + ".MVB"), NOWAIT
RUN MakePath(GetSymbolValue("STF_SRCDIR"),"instvfw.exe "), NOWAIT
QUIT:
END
'*************************************************************************
'** Purpose:
'** Prompts the user for a path for the title files
'** Arguments:
'** szDefault$ - default path
'** Returns:
'** New valid path name, or "" if the user quit.
'*************************************************************************
FUNCTION GetTitleDir (szDefault$) STATIC AS STRING
SetSymbolValue "String", TitleShortName$
SetSymbolValue "EditTextIn", szDefault$
SetSymbolValue "EditFocus", "ALL"
GETPATH:
sz$ = UIStartDlg(CUIDLL$, DESTPATH, "FEditDlgProc", APPHELP, "FHelpDlgProc")
IF sz$ = "CONTINUE" THEN
szTitleDir$ = GetSymbolValue("EditTextOut")
IF IsDirWritable(szTitleDir$) = 0 THEN
BADPATH:
sz$ = UIStartDlg(CUIDLL$, BADPATH, "FInfoDlgProc", 0, "")
IF sz$ = "REACTIVATE" THEN
GOTO BADPATH
END IF
UIPop 1
GOTO GETPATH
END IF
UIPop 1
CreateDir szTitleDir$, cmoNone
ELSEIF sz$ = "REACTIVATE" THEN
GOTO GETPATH
ELSE
szTitleDir$ = ""
END IF
GetTitleDir = szTitleDir$
END FUNCTION
'*************************************************************************
'** Purpose:
'** Copies the files in the INF file
'** Arguments:
'** szTitleDir$ - destination directory for the title files
'** Returns
'** 1 if files were copied, 0 otherwise
'*************************************************************************
FUNCTION CopyFiles(szTitleDir$) STATIC AS INTEGER
'' Add all system files to the copy list
AddSectionFilesToCopyList "System Files", GetSymbolValue("STF_SRCDIR"), GetWindowsSysDir()
'' Add all of the title files to the copy list
AddSectionFilesToCopyList "Installed Title Files", GetSymbolValue("STF_SRCDIR"), szTitleDir$
'' Check size
szExtras$ = "Extra"
szCosts$ = "Costs"
szNeededs$ = "Neededs"
FOR i% = 1 TO 26 STEP 1
AddListItem szExtras$, "0"
NEXT i%
'' We assume that VIEWER.INI will take another 4K
ReplaceListItem szExtras$, ASC(MID$(GetWindowsDir(), 1, 1)) - ASC("A") + 1, STR$(4096)
'' Get amount of space required
StillNeed& = GetCopyListCost(szExtras$, szCosts$, szNeededs$)
'' Put up a message if there is not enough space
FOR i% = 1 TO 26 STEP 1
IF VAL(GetListItem(szNeededs$, i%)) > 0 THEN
SetSymbolValue "String1", LTRIM$(STR$(VAL(GetListItem(szCosts$, i%)) / 1024))
SetSymbolValue "String2", CHR$(i% - 1 + ASC("A"))
TOOBIG:
sz$ = UIStartDlg(CUIDLL$, TOOBIG, "FInfoDlgProc", 0, "")