home *** CD-ROM | disk | FTP | other *** search
/ Tech-ROM Library / Tech-Rom Library - The Technical Library on CD-ROM 1993.iso / hw / gateway2 / menu / title.mst < prev    next >
Encoding:
Text File  |  1993-06-09  |  15.0 KB  |  484 lines

  1. '**************************************************************************
  2. '*
  3. '* TITLE.MST - Viewer Runtime Setup Script
  4. '*
  5. '* CUSTOMIZING TITLE.MST
  6. '*
  7. '* For a simple Setup routine, you just need to assign values to the 
  8. '* series of variables following the heading "Setup Variables". This
  9. '* script also provides for the following more-advanced options, which
  10. '* are supported by subroutines located later in this script:
  11. '*
  12. '* Option                                         See Subroutine
  13. '* ------------------------------------------     ---------------------
  14. '* Install more than one .MVB file                ModifyViewerIni
  15. '* Install Help title                             ModifyViewerIni
  16. '* Install custom DLLs                            ModifyViewerIni
  17. '* Install multiple Program Manager items         ModifyProgramManager
  18. '* Display a custom icon with the ProgMan item    ModifyProgramManager
  19. '* Install custom fonts                           RegisterCustomFonts
  20. '* Install Video for Windows runtime files        RegisterDrivers
  21. '*
  22. '* Each customization note starts with the heading CUSTOMIZATION.
  23. '*
  24. '**************************************************************************
  25.     
  26.     '' Global variables
  27.  
  28.     GLOBAL TitleShortName$
  29.     GLOBAL TitleLongName$
  30.     GLOBAL MVBFileName$
  31.     GLOBAL PromptForPath%
  32.     GLOBAL DefaultPath$
  33.     GLOBAL ProgManGroup$
  34.     GLOBAL ProgManItem$
  35.  
  36.     '' ****************************************************************
  37.     '' ** Setup Variables
  38.     '' ****************************************************************
  39.  
  40.     '' Set the following string to a short form of the title name
  41.     '' (for example, "Gallery")
  42.     
  43.     TitleShortName$ = "Gateway"
  44.     
  45.     '' Set the following string to a long form of the title name
  46.     '' (for example, "Viewer 2.0 Gallery")
  47.     
  48.     TitleLongName$ = "the Gateway Mall"
  49.         
  50.     '' Set the following variable to the name of the MVB file, without 
  51.     '' the filename extension (for example, "GALLERY")
  52.         
  53.     MVBFileName$ = "Gatemall"
  54.         
  55.     '' The following variable determines whether Setup prompts the user
  56.     '' to specify a directory in which to install title files. (Files
  57.     '' to be installed on the hard disk must be listed in the TITLE.INF 
  58.     '' file under the [Installed Title Files] section.) Specify one of
  59.     '' the following values:
  60.     ''
  61.     '' 0    Install title files in the Windows directory (default setting).
  62.     ''      This is an appropriate setting if you have a limited number
  63.     ''      of files to copy (for example, a single custom icon or DLL).
  64.     ''
  65.     '' 1    Display a dialog box to prompt the user for a directory in 
  66.     ''      which to install files
  67.         
  68.     PromptForPath% = 0
  69.         
  70.     '' If you have specified 1 in PromptForPath%, set the following 
  71.     '' variable to the default path that will be displayed in the dialog
  72.     '' box (for example, "C:\Mall").
  73.         
  74.     DefaultPath$ = ""
  75.     
  76.     '' Set the following variable to the name of the program manager 
  77.     '' group you would like to create (for example, "Viewer 2.0 Gallery")
  78.         
  79.     ProgManGroup$ = "The Gateway Mall"
  80.     
  81.     '' Set the following variable to the caption of the program manager 
  82.     '' item for your title (for example, "Gallery")
  83.         
  84.     ProgManItem$ = "The Gateway Mall"
  85.     
  86.     '***********************************************************************
  87.     '** Mainline
  88.     '***********************************************************************
  89.  
  90.     GLOBAL CUIDLL$
  91.  
  92.     '' Include files
  93.     '$INCLUDE 'setupapi.inc'
  94.     
  95.     '' Custom UI dll
  96.     CUIDLL$ = "mscuistf.dll"
  97.     
  98.     '' Dialog ID's
  99.     CONST DESTPATH      = 1000
  100.     CONST APPHELP       = 2000
  101.     CONST TOOBIG        = 3000
  102.     CONST BADPATH       = 4000
  103.     CONST SUCCESS       = 5000
  104.     
  105.     '' Bitmap ID
  106.     CONST LOGO = 1
  107.     
  108.     '' Functions and subroutines
  109.     DECLARE FUNCTION AddFont LIB "mscuistf.dll" (szFont$, szName$) AS INTEGER
  110.     DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
  111.     DECLARE FUNCTION GetTitleDir (szDefault$) AS STRING
  112.     DECLARE FUNCTION CopyFiles(szTitleDir$) AS INTEGER
  113.     DECLARE SUB RegisterFont(fontfile$, fontname$)
  114.     DECLARE SUB ModifyViewerIni(szTitleDir$)
  115.     DECLARE SUB RegisterCustomFonts
  116.     DECLARE SUB ModifyProgramManager
  117.     DECLARE SUB ShowSuccess
  118.     DECLARE SUB RegisterDrivers
  119.     
  120.     
  121.     '' The following statement turns size checking off. Set it to scmOnFatal 
  122.     '' to enable size checking, where Setup will compare the disk file size 
  123.     '' with the INF file size and report an error if they are not the same.
  124.     
  125.     i% = SetSizeCheckMode(scmOff)
  126.     
  127.     '' Set the title and banner bitmap. You must rebuild MSCUISTF.DLL to 
  128.     '' alter the banner bitmap.
  129.     
  130.     SetTitle "Viewer Title Setup"
  131.     SetBitmap CUIDLL$, LOGO 
  132.     
  133.     '' Read in the INF file.
  134.     
  135.     ReadInfFile GetSymbolValue("STF_CWDDIR") + "TITLE.INF"
  136.     
  137.     '' Decide where to put title files
  138.     IF PromptForPath% = 1 THEN
  139.         szTitleDir$ = GetTitleDir(DefaultPath$)
  140.         IF szTitleDir$ = "" THEN
  141.             GOTO QUIT
  142.         ENDIF
  143.     ELSE
  144.         szTitleDir$ = GetWindowsDir()
  145.     ENDIF   
  146.     
  147.     '' Copy files
  148.     IF CopyFiles(szTitleDir$) = 0 THEN
  149.         GOTO QUIT
  150.     ENDIF
  151.  
  152.     '' Create the MVIEWER2.EXE MVB association 
  153.     CreateIniKeyValue "WIN.INI", "Extensions", "MVB", "mviewer2.exe", cmoNone
  154.  
  155.     '' Register in VIEWER.INI
  156.     ModifyViewerIni szTitleDir$
  157.  
  158.     '' Register custom fonts
  159.     RegisterCustomFonts
  160.  
  161.     '' Register drivers
  162.     RegisterDrivers
  163.     
  164.     '' Modify Program Manager
  165.     ModifyProgramManager    
  166.     
  167.     '' Success dialog
  168.     ShowSuccess
  169.     
  170.     
  171.     '' Now start the title
  172.  
  173.     RUN "mviewer2.exe " + MVBFileName$ + ".MVB", NOWAIT
  174.  
  175. QUIT:
  176.     
  177.     END
  178.     
  179.  
  180. '*************************************************************************
  181. '** Purpose:
  182. '**     Prompts the user for a path for the title files
  183. '** Arguments:
  184. '**     szDefault$ - default path
  185. '** Returns:
  186. '**     New valid path name, or "" if the user quit.
  187. '*************************************************************************
  188.  
  189. FUNCTION GetTitleDir (szDefault$) STATIC AS STRING
  190.  
  191.     SetSymbolValue "String", TitleShortName$
  192.     SetSymbolValue "EditTextIn", szDefault$
  193.     SetSymbolValue "EditFocus", "ALL"
  194.  
  195.     GETPATH:
  196.  
  197.     sz$ = UIStartDlg(CUIDLL$, DESTPATH, "FEditDlgProc", APPHELP, "FHelpDlgProc")
  198.  
  199.     IF sz$ = "CONTINUE" THEN
  200.         szTitleDir$ = GetSymbolValue("EditTextOut")
  201.         IF IsDirWritable(szTitleDir$) = 0 THEN
  202.  
  203.             BADPATH:
  204.  
  205.             sz$ = UIStartDlg(CUIDLL$, BADPATH, "FInfoDlgProc", 0, "")
  206.             IF sz$ = "REACTIVATE" THEN
  207.                 GOTO BADPATH
  208.             END IF
  209.             UIPop 1
  210.             GOTO GETPATH
  211.         END IF
  212.         UIPop 1
  213.         CreateDir szTitleDir$, cmoNone
  214.  
  215.     ELSEIF sz$ = "REACTIVATE" THEN
  216.         GOTO GETPATH
  217.  
  218.     ELSE
  219.         szTitleDir$ = ""
  220.  
  221.     END IF
  222.  
  223.     GetTitleDir = szTitleDir$
  224.  
  225. END FUNCTION
  226.  
  227.  
  228. '*************************************************************************
  229. '** Purpose:
  230. '**     Copies the files in the INF file
  231. '** Arguments:
  232. '**     szTitleDir$ - destination directory for the title files
  233. '** Returns
  234. '**     1 if files were copied, 0 otherwise
  235. '*************************************************************************
  236.  
  237. FUNCTION CopyFiles(szTitleDir$) STATIC AS INTEGER
  238.  
  239.     '' Add all system files to the copy list
  240.     AddSectionFilesToCopyList "System Files", GetSymbolValue("STF_SRCDIR"), GetWindowsSysDir()
  241.     
  242.     '' Add all of the title files to the copy list
  243.     AddSectionFilesToCopyList "Installed Title Files", GetSymbolValue("STF_SRCDIR"), szTitleDir$
  244.     
  245.     '' Check size
  246.     szExtras$ = "Extra"
  247.     szCosts$ = "Costs"
  248.     szNeededs$ = "Neededs"
  249.     FOR i% = 1 TO 26 STEP 1
  250.         AddListItem szExtras$, "0"
  251.     NEXT i%
  252.     
  253.     '' We assume that VIEWER.INI will take another 4K
  254.     ReplaceListItem szExtras$, ASC(MID$(GetWindowsDir(), 1, 1)) - ASC("A") + 1, STR$(4096)
  255.     
  256.     '' Get amount of space required
  257.     StillNeed& = GetCopyListCost(szExtras$, szCosts$, szNeededs$)
  258.     
  259.     '' Put up a message if there is not enough space
  260.     FOR i% = 1 TO 26 STEP 1
  261.         IF VAL(GetListItem(szNeededs$, i%)) > 0 THEN
  262.     
  263.             SetSymbolValue "String1", LTRIM$(STR$(VAL(GetListItem(szCosts$, i%)) / 1024))
  264.             SetSymbolValue "String2", CHR$(i% - 1 + ASC("A"))
  265.     
  266.             TOOBIG:
  267.     
  268.             sz$ = UIStartDlg(CUIDLL$, TOOBIG, "FInfoDlgProc", 0, "")
  269.             IF sz$ = "REACTIVATE" THEN
  270.                 GOTO TOOBIG
  271.             END IF
  272.             UIPop 1
  273.             CopyFiles = 0
  274.             GOTO DONTCOPY
  275.         END IF
  276.     NEXT i%
  277.     
  278.     '' Copy the files
  279.     CopyFilesInCopyList
  280.     
  281.     CopyFiles = 1
  282.  
  283. DONTCOPY:
  284.  
  285. END FUNCTION
  286.  
  287.  
  288. '*************************************************************************
  289. '** Purpose:
  290. '**     Puts up a success dialog
  291. '*************************************************************************
  292.  
  293. SUB ShowSuccess STATIC
  294.  
  295.     SUCCESS:
  296.     
  297.     SetSymbolValue "String1", TitleShortName$
  298.     sz$ = UIStartDlg(CUIDLL$, SUCCESS, "FInfoDlgProc", 0, "")
  299.     IF sz$ = "REACTIVATE" THEN
  300.         GOTO SUCCESS
  301.     END IF
  302.     UIPop 1
  303.     
  304. END SUB
  305.  
  306.  
  307. '*************************************************************************
  308. '** Purpose:
  309. '**     Appends a file name to the end of a directory path,
  310. '**     inserting a backslash character as needed.
  311. '** Arguments:
  312. '**     szDir$  - full directory path (with optional ending "\")
  313. '**     szFile$ - filename to append to directory
  314. '** Returns:
  315. '**     Resulting fully qualified path name.
  316. '*************************************************************************
  317.  
  318. FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING
  319.     IF szDir$ = "" THEN
  320.         MakePath = szFile$
  321.     ELSEIF szFile$ = "" THEN
  322.         MakePath = szDir$
  323.     ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
  324.         MakePath = szDir$ + szFile$
  325.     ELSE
  326.         MakePath = szDir$ + "\" + szFile$
  327.     END IF
  328. END FUNCTION
  329.  
  330.  
  331. '*************************************************************************
  332. '** Purpose:
  333. '**     Registers a font.
  334. '** Arguments:
  335. '**     fontfile$ - font filename
  336. '**     fontname$ - font name.
  337. '*************************************************************************
  338.  
  339. SUB RegisterFont(fontfile$, fontname$) STATIC
  340.  
  341.     '' A simple error catching wrapper around AddFont, which is a 'C' routine in MSCUISTF.DLL
  342.  
  343.     IF AddFont(fontfile$, fontname$) = -1 THEN
  344.         j% = DoMsgBox("Could not install " + fontfile$ + " font.", "Viewer Font Installation", 0)
  345.     ENDIF
  346.  
  347. END SUB
  348.  
  349.  
  350. '*************************************************************************
  351. '** Purpose:
  352. '**     Registers title in VIEWER.INI
  353. '*************************************************************************
  354.  
  355. SUB ModifyViewerIni (szTitleDir$) STATIC
  356.  
  357.     '' Get the VIEWER.INI file
  358.     
  359.     szIni$ = MakePath(GetWindowsDir(), "VIEWER.INI")
  360.  
  361.     '' First register the title file, setting the Name and Path entries. 
  362.     '' We assume that the MVB file is the same directory as SETUP.EXE.
  363.     ''
  364.     '' CUSTOMIZATION: If you're installing multiple MVB files, copy the
  365.     '' following two statements for each additional file, substituting
  366.     '' the appropriate long name and MVB filename for the TitleLongName$
  367.     '' and MVBFileName$ variables.
  368.     
  369.     CreateIniKeyValue szIni$, MVBFileName$, "Name", TitleLongName$, cmoOverwrite
  370.     CreateIniKeyValue szIni$, MVBFileName$, "Path", GetSymbolValue("STF_SRCDIR"), cmoOverwrite
  371.     
  372.     '' Now we have to register the MVB file in the [FILES] section, so 
  373.     '' Viewer can find files that are not on the path and display a 
  374.     '' special message when a file is not found.
  375.  
  376.     CreateIniKeyValue szIni$, "FILES", MVBFileName$ + ".MVB", GetSymbolValue("STF_SRCDIR") + "," + "Please insert the " + TitleLongName$ + " disk.", cmoOverwrite
  377.  
  378.     '' CUSTOMIZATION: If you're installing a Help title or any custom DLLs,
  379.     '' you should copy the preceding statement for each extra title or DLL.
  380.     ''
  381.     '' Example for installing an extra title:
  382.     ''
  383.     ''    CreateIniKeyValue szIni$, "FILES", "GALHELP.MVB", GetSymbolValue("STF_SRCDIR") + "," + "Please insert the Viewer 2.0 Gallery disk.", cmoOverwrite
  384.     ''
  385.     '' Example for installing a custom DLL:
  386.     ''
  387.     ''    CreateIniKeyValue szIni$, "FILES", "GALLERY.DLL", szTitleDir$ + "\," + "A required file is missing. Please reinstall Gallery.", cmoOverwrite
  388.  
  389. END SUB
  390.  
  391.  
  392. '*************************************************************************
  393. '** Purpose:
  394. '**     Creates program manager entries for the title
  395. '*************************************************************************
  396.  
  397. SUB ModifyProgramManager STATIC
  398.  
  399.     '' Create the program manager group
  400.  
  401.     CreateProgmanGroup ProgmanGroup$, "", cmoNone
  402.     ShowProgmanGroup ProgmanGroup$, 1, cmoNone
  403.     
  404.     '' Create an entry for the title
  405.      
  406.     CreateProgmanItem ProgmanGroup$, ProgmanItem$, "mviewer2.exe " + MakePath(GetSymbolValue("STF_SRCDIR"), MVBFileName$ + ".MVB"), MakePath(GetSymbolValue("STF_SRCDIR"), "olg.ICO"), cmoOverwrite
  407.     
  408.     '' CUSTOMIZATION: 
  409.     ''
  410.     '' To create additional Program Manager items, copy the preceding 
  411.     '' statement for each additional item, substituting the appropriate
  412.     '' Program Manager item name for ProgmanItem$ and filename for 
  413.     '' MVBFileName$.
  414.     ''
  415.     '' To display a custom icon with the Program Manager item, specify
  416.     '' the icon filename with the fourth parameter (this parameter is 
  417.     '' currently an empty string, ""). The following example specifies 
  418.     '' an icon with the same filename as the .MVB file:
  419.     ''
  420.     ''       CreateProgmanItem ProgmanGroup$, ProgmanItem$, "mviewer2.exe " + MakePath(GetSymbolValue("STF_SRCDIR"), MVBFileName$ + ".MVB"), MakePath(GetSymbolValue("STF_SRCDIR"), "olg.ICO"), cmoOverwrite
  421.  
  422. END SUB
  423.  
  424.  
  425. '*************************************************************************
  426. '** Purpose:
  427. '**     Registers custom fonts with Windows.
  428. '*************************************************************************
  429.  
  430. SUB RegisterCustomFonts STATIC
  431.  
  432.     '' CUSTOMIZATION: If you install custom fonts, then add statements
  433.     '' in this routine to register the fonts with the current Windows 
  434.     '' session and to add them to the WIN.INI [Fonts] section. 
  435.     ''
  436.     '' Note that TrueType fonts can only be installed in Windows 3.1.
  437.     '' RegisterFont automatically creates the required .FOT file for 
  438.     '' TrueType fonts.
  439.     ''    
  440.     '' The following example registers a font residing in MISTRAL.TTF
  441.     '' and installs the font with the name Mistral (True Type):
  442.     '' 
  443.     ''     RegisterFont "mistral.ttf", "Mistral (TrueType)"
  444.     ''
  445.  
  446. END SUB
  447.  
  448.  
  449. '*************************************************************************
  450. '** Purpose:
  451. '**     Registers Windows drivers
  452. '*************************************************************************
  453.  
  454. SUB RegisterDrivers STATIC
  455.  
  456. '' CUSTOMIZATION: Video for Windows is not a standard component of
  457. '' Windows 3.1. If your title uses video, proceed as follows.
  458. ''
  459. '' 1) Add the following files to the [System Files] section of the INF file:
  460. ''
  461. ''    dispdib.dll
  462. ''    msvideo.dll
  463. ''    indeo.drv
  464. ''    mciavi.drv
  465. ''    msvidc.drv
  466. ''
  467. '' 2) Add the above files to your release directory. US versions can be 
  468. ''    found in the \SYSTEM subdirectory of your Viewer disc. French and
  469. ''    German versions were not available at ship time. Please contact 
  470. ''    Microsoft or check the Multimedia Viewer section on the Microsoft
  471. ''    Compuserve Forum for further details.
  472. ''
  473. '' 3) Uncomment the following lines:
  474. ''
  475.  CreateIniKeyValue "WIN.INI", "mci extensions", "AVI", "AVIVIDEO", cmoNone
  476.  CreateIniKeyValue MakePath(GetWindowsDir(), "SYSTEM.INI"), "mci", "AVIVIDEO", "MCIAVI.DRV", cmoNone
  477.  CreateIniKeyValue MakePath(GetWindowsDir(), "SYSTEM.INI"), "drivers", "vidc.msvc", "msvidc.drv", cmoNone
  478.  CreateIniKeyValue MakePath(GetWindowsDir(), "SYSTEM.INI"), "drivers", "vidc.rt21", "indeo.drv", cmoNone
  479.  
  480. END SUB
  481.  
  482.  
  483.  
  484.