home *** CD-ROM | disk | FTP | other *** search
- '**************************************************************************
- '* MicroStation Windows Connection Setup
- '**************************************************************************
-
- '$DEFINE DEBUG ''Define for script development/debugging
-
- '$INCLUDE 'setupapi.inc'
- '$INCLUDE 'msdetect.inc'
-
- GLOBAL CUIDLL$, USTNCFG$, USTNBAT$, CFGDAT$, USCONFIG$, REVIEWFLAG%
-
- '$INCLUDE 'wcsetup.inc'
-
- ''Bitmap ID
- CONST NEXUSLOGO = 1
-
- GLOBAL USTNDIR$ ''Default destination directory.
-
- DECLARE SUB Install
- DECLARE SUB ModifyConfigSys
- DECLARE SUB ModifySystemIni
- DECLARE SUB CreateUstationIni
-
- DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
-
-
-
- INIT:
- CUIDLL$ = "wcsetup.dll" ''Custom user interface dll
- HELPPROC$ = "FHelpDlgProc" ''Help dialog procedure
-
- SetBitmap CUIDLL$, NEXUSLOGO
- SetTitle "MicroStation Windows Connection Setup"
-
- szInf$ = GetSymbolValue("STF_SRCINFPATH")
- IF szInf$ = "" THEN
- szInf$ = GetSymbolValue("STF_CWDDIR") + "SETUP.INF"
- END IF
- ReadInfFile szInf$
-
- '$IFDEF DEBUG
- i% = SetSizeCheckMode(scmOnIgnore) '' could use scmOff; def = scmOnFatal
- WinDrive$ = MID$(GetWindowsDir, 1, 1)
- IF IsDriveValid(WinDrive$) = 0 THEN
- i% = DoMsgBox("Windows drive ('"+WinDrive$+"') is not a valid drive.", "DEBUG", MB_TASKMODAL+MB_ICONHAND+MB_OK)
- GOTO QUIT
- END IF
- '$ENDIF ''DEBUG
-
-
- WELCOME:
- sz$ = UIStartDlg(CUIDLL$, WELCOME, "FInfoDlgProc", APPHELP, HELPPROC$)
- IF sz$ = "CONTINUE" THEN
- UIPop 1
- ELSE
- GOSUB ASKQUIT
- GOTO WELCOME
- END IF
-
- OPTLIST$ = "CheckItemsIn"
- AddListItem OPTLIST$, "ON"
- AddListItem OPTLIST$, "ON"
- OPTION:
- sz$ = UIStartDlg(CUIDLL$, OPTIONS, "FCheckDlgProc", OPTIONHELP, HELPPROC$)
-
- IF sz$ = "CONTINUE" THEN
- UIPop(1)
- ELSE
- GOTO OPTION
- END IF
-
- OPTLIST$ = "CheckItemsOut"
-
- IF GetListItem(OPTLIST$, 1) = "OFF" THEN
- IF GetListItem(OPTLIST$, 2) = "OFF" THEN
- GOTO QUIT
- ENDIF
- ENDIF
-
- USTNDIR$ = GetIniKeyString (GetWindowsDir()+"ustation.ini", "Windows Connection", "uStnDir")
- if USTNDIR$ = "" then
- USTNDIR$ = "C:\USTATION"
- endif
-
- GETPATH:
- SetSymbolValue "EditTextIn", USTNDIR$
- SetSymbolValue "EditFocus", "END"
- GETPATHL1:
- sz$ = UIStartDlg(CUIDLL$, DESTPATH, "FEditDlgProc", APPHELP, HELPPROC$)
- USTNDIR$ = GetSymbolValue("EditTextOut")
-
- IF sz$ = "CONTINUE" THEN
- IF DoesDirExist(USTNDIR$) = 0 THEN
- GOSUB BADPATH
- GOTO GETPATHL1
- END IF
- IF IsDirWritable(USTNDIR$) = 0 THEN
- GOSUB BADPATH
- GOTO GETPATHL1
- END IF
- IF IsValidUstnDir (USTNDIR$) = 0 THEN
- i% = DoMsgBox(USTNDIR$ + " is not a valid MicroStation or Review directory.", "Windows Connection Setup", MB_TASKMODAL+MB_OK)
- GOTO GETPATHL1
- END IF
-
- UIPop 1
- ELSEIF sz$ = "REACTIVATE" THEN
- GOTO GETPATHL1
- ELSE
- GOSUB ASKQUIT
- GOTO GETPATH
- END IF
-
- IF GetListItem(OPTLIST$, 1) = "ON" THEN
- Install
- CreateUstationIni
- ModifyConfigSys
- ModifySystemIni
- IF CfgWinC (USTNDIR$) = 1 THEN
- ERR = STFQUIT
- GOTO QUIT
- ENDIF
- ENDIF
-
- IF GetListItem(OPTLIST$, 2) = "ON" THEN
- DOMORE:
- sz$ = UIStartDlg(CUIDLL$, MORENEXUS, "FInfo0DlgProc", 0, "")
- IF sz$ = "REACTIVATE" THEN
- GOTO DOMORE
- ENDIF
- UIPop 1
- Shell GetSymbolValue("STF_SRCDIR")+"USINSTAL.EXE"
- ENDIF
-
- QUIT:
- ON ERROR GOTO ERRQUIT
-
- IF ERR = 0 THEN
- dlg% = EXITSUCCESS
- ELSEIF ERR = STFQUIT THEN
- dlg% = EXITQUIT
- ELSE
- dlg% = EXITFAILURE
- END IF
- QUITL1:
- sz$ = UIStartDlg(CUIDLL$, dlg%, "FInfo0DlgProc", 0, "")
- IF sz$ = "REACTIVATE" THEN
- GOTO QUITL1
- END IF
- UIPop 1
-
- END
-
- ERRQUIT:
- i% = DoMsgBox("Setup source files have been corrupted!", "Setup Message", MB_OK+MB_TASKMODAL+MB_ICONHAND)
- END
-
-
-
- BADPATH:
- sz$ = UIStartDlg(CUIDLL$, BADPATH, "FInfo0DlgProc", 0, "")
- IF sz$ = "REACTIVATE" THEN
- GOTO BADPATH
- END IF
- UIPop 1
- RETURN
-
-
-
- ASKQUIT:
- sz$ = UIStartDlg(CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "")
-
- IF sz$ = "EXIT" THEN
- UIPopAll
- ERROR STFQUIT
- ELSEIF sz$ = "REACTIVATE" THEN
- GOTO ASKQUIT
- ELSE
- UIPop 1
- END IF
- RETURN
-
-
-
-
- '**
- '** Purpose:
- '** Builds the copy list and performs all installation operations.
- '** Arguments:
- '** none.
- '** Returns:
- '** none.
- '*************************************************************************
- SUB Install STATIC
-
- SrcDir$ = GetSymbolValue("STF_SRCDIR")
-
- MDLAPPS$ = USTNDIR$ + "\MDLAPPS"
- WINCONN$ = USTNDIR$ + "\WINCONN"
- DRIVERS$ = USTNDIR$ + "\DRIVERS"
- DOCS$ = USTNDIR$ + "\DOCS"
-
- CreateDir MDLAPPS$, cmoNone
- CreateDir WINCONN$, cmoNone
- CreateDir DRIVERS$, cmoNone
- CreateDir DOCS$, cmoNone
-
- OpenLogFile MakePath(USTNDIR$, "LOGFILE.OUT"), 0
- WriteToLogFile ""
- WriteToLogFile " User chose as destination directory: '" + USTNDIR$ + "'"
- WriteToLogFile ""
- WriteToLogFile "May have had to create the directory: " + USTNDIR$
- WriteToLogFile ""
-
- AddSectionFilesToCopyList "Mdlapps", SrcDir$, MDLAPPS$
- AddSectionFilesToCopyList "Winconn", SrcDir$, WINCONN$
- AddSectionFilesToCopyList "Drivers", SrcDir$, DRIVERS$
- AddSectionFilesToCopyList "Docs", SrcDir$, DOCS$
-
- sz$ = GetDateOfFile (USTNDIR$+"\KEYTAB.EXE")
- if GetYearFromDate(sz$) <= 1992 then
- if GetMonthFromDate(sz$) <= 06 then
- AddSectionFilesToCopyList "Keytab", SrcDir$, USTNDIR$
- endif
- endif
-
- sz$ = GetDateOfFile (DRIVERS$+"\BSITIGA2.MA")
- if GetYearFromDate(sz$) <= 1992 then
- if GetMonthFromDate(sz$) <= 06 then
- AddSectionFilesToCopyList "Bsitiga2", SrcDir$, DRIVERS$
- endif
- endif
-
- CopyFilesInCopyList
-
- SetupPIF WINCONN$+"\USTNWIN.PIF", USTNDIR$+"\USTNWIN.BAT", USTNDIR$
- if REVIEWFLAG% = 1 then
- SetupPIF WINCONN$+"\USTATION.PIF", USTNDIR$+"\REVIEW.BAT", USTNDIR$
- else
- SetupPIF WINCONN$+"\USTATION.PIF", USTNDIR$+"\USTATION.BAT", USTNDIR$
- endif
-
- Open WINCONN$+"\WINBAT.CMD" For Output As #1
- Print #1, "Execmin "+WINCONN$+"\USTNWCB.EXE"
- Print #1, "if WinExist ";chr$(34);"MicroStation";chr$(34);
- Print #1, " goto end"
- Print #1, "Execmin "+WINCONN$+"\USTNGRPH.EXE"
- Print #1, "if WinExist ";chr$(34);"MicroStation Text";chr$(34);
- Print #1, " goto end"
- Print #1, "Execmin "+WINCONN$+"\USTNWIN.PIF %1"
- Print #1, ":end";
- Close #1
-
- Open WINCONN$+"\FULLSCRN.CMD" For Output As #1
- Print #1, "Execmin "+WINCONN$+"\USTNWCB.EXE"
- Print #1, "if WinExist ";chr$(34);"MicroStation Text";chr$(34);
- Print #1, " goto end"
- Print #1, "if WinExist ";chr$(34);"MicroStation";chr$(34);
- Print #1, " goto end"
- Print #1, "Exec "+WINCONN$+"\USTATION.PIF %1"
- Print #1, ":end";
- Close #1
-
- GROUP$ = "uStn Windows Connection"
- CreateProgmanGroup GROUP$, "", cmoNone
- ShowProgmanGroup GROUP$, 1, cmoNone
-
- if REVIEWFLAG% = 1 then
- ICONTITLE$ = "Review"
- else
- ICONTITLE$ = "MicroStation"
- end if
-
- CreateProgmanItem GROUP$, ICONTITLE$, WINCONN$+"\WINBAT.EXE ", "", cmoOverwrite
-
- CreateProgmanItem GROUP$, "Read Me", "write.exe "+DOCS$+"\INTRO.WRI", "", cmoOverwrite
-
- CreateProgmanItem GROUP$, "Configuration Utility", WINCONN$+"\_MSTEST WCCONFIG","",cmoOverwrite
-
- CreateProgmanItem GROUP$, "DOS "+ICONTITLE$, WINCONN$+"\WINBAT.EXE -C"+WINCONN$+"\FULLSCRN.CMD", "", cmoOverwrite
-
-
-
- CloseLogFile
-
- END SUB
-
-
- '**
- '** Purpose:
- '** Adds driver line to config.sys
- '** Arguments:
- '** none.
- '** Returns:
- '** none.
- '*************************************************************************
- SUB ModifyConfigSys STATIC
-
- WINCDVRCMD$ = "device = " + USTNDIR$ + "\WINCONN\MSWINC.SYS"
-
- ASKMODIFY:
- sz$ = UIStartDlg (CUIDLL$, ASKCONFIGSYS, "FQuitDlgProc", 0, "")
-
- IF sz$ = "CONTINUE" THEN
- UIPop 1
- CreateNewConfigSys "MSWINC", WINCDVRCMD$
- CopyFile "C:\CONFIG.SYS", "C:\CONFIG.OLD", cmoOverwrite, 0
- CopyFile "C:\CONFIG.NEW", "C:\CONFIG.SYS", cmoOverwrite, 0
- RemoveFile "C:\CONFIG.NEW", cmoNone
- ELSEIF sz$ = "REACTIVATE" THEN
- GOTO ASKMODIFY
- ELSE
- UIPop 1
- END IF
-
- END SUB
-
- '**
- '** Purpose:
- '** Modifys 386enh settings in Windows system.ini
- '** Arguments:
- '** none.
- '** Returns:
- '** none.
- '*************************************************************************
- SUB ModifySystemIni STATIC
-
- SYSINI$ = GetWindowsDir()+"system.ini"
- CreateIniKeyValue SYSINI$, "386Enh", "MinTimeslice", "20", cmoOverwrite
- CreateIniKeyValue SYSINI$, "386Enh", "WinTimeslice", "100,50", cmoOverwrite
- CreateIniKeyValue SYSINI$, "386Enh", "WinExclusive", "0", cmoOverwrite
-
- END SUB
-
- '**
- '** Purpose:
- '** Modifys 386enh settings in Windows system.ini
- '** Arguments:
- '** none.
- '** Returns:
- '** none.
- '*************************************************************************
- SUB CreateUstationIni STATIC
- USTNINI$ = GetWindowsDir()+"ustation.ini"
- CreateIniKeyValue USTNINI$, "Windows Connection", "uStnDir", USTNDIR$, cmoOverwrite
- END SUB
-
-
-
- '**
- '** Purpose:
- '** Appends a file name to the end of a directory path,
- '** inserting a backslash character as needed.
- '** Arguments:
- '** szDir$ - full directory path (with optional ending "\")
- '** szFile$ - filename to append to directory
- '** Returns:
- '** Resulting fully qualified path name.
- '*************************************************************************
- FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING
- IF szDir$ = "" THEN
- MakePath = szFile$
- ELSEIF szFile$ = "" THEN
- MakePath = szDir$
- ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
- MakePath = szDir$ + szFile$
- ELSE
- MakePath = szDir$ + "\" + szFile$
- END IF
- END FUNCTION
-
-