mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
841 lines
32 KiB
Text
841 lines
32 KiB
Text
|
; Panda3D installation script for the Nullsoft Installation System (NSIS).
|
||
|
; Jon Parise <jparise@cmu.edu>
|
||
|
; with Ben Johnson <bkj@andrew.cmu.edu>
|
||
|
; with Jason Pratt <pratt@andrew.cmu.edu>
|
||
|
; mangled by Josh Yelon <jyelon@andrew.cmu.edu>
|
||
|
|
||
|
; Caller needs to define these variables:
|
||
|
;
|
||
|
; COMPRESSOR - either zlib or lzma
|
||
|
; NAME - name of what we're building (ie, "Panda3D" or "Airblade")
|
||
|
; SMDIRECTORY - where to put this in the start menu (ie, "Panda3D 1.1.0" or "Airblade 1.1.0")
|
||
|
; INSTALLDIR - where to install the program (ie, "C:\Program Files\Panda3D-1.1.0")
|
||
|
; OUTFILE - where to put the output file (ie, "..\nsis-output.exe")
|
||
|
; LICENSE - location of the license file (ie, "C:\Airblade\LICENSE.TXT")
|
||
|
; LANGUAGE - name of the Language file to use (ie, "English" or "Panda3DEnglish")
|
||
|
; RUNTEXT - text for run-box at end of installation (ie, "Run the Panda Greeting Card")
|
||
|
; IBITMAP - name of installer bitmap (ie, "C:\Airblade\Airblade.bmp")
|
||
|
; UBITMAP - name of uninstaller bitmap (ie, "C:\Airblade\Airblade.bmp")
|
||
|
;
|
||
|
; PANDA - location of panda install tree.
|
||
|
; PYVER - version of Python that Panda was built with (ie, "2.7")
|
||
|
; PANDACONF - name of panda config directory - usually $PANDA\etc
|
||
|
; PSOURCE - location of the panda source-tree if available, OR location of panda install tree.
|
||
|
; PYEXTRAS - directory containing python extras, if any.
|
||
|
; REGVIEW - either 32 or 64, depending on the build architecture.
|
||
|
;
|
||
|
; PPGAME - directory containing prepagaged game, if any (ie, "C:\My Games\Airblade")
|
||
|
; PPMAIN - python program containing prepackaged game, if any (ie, "Airblade.py")
|
||
|
; PPICON - file containing icon of prepackaged game.
|
||
|
;
|
||
|
|
||
|
!include "MUI.nsh"
|
||
|
!include "WinMessages.nsh"
|
||
|
Name "${NAME}"
|
||
|
InstallDir "${INSTALLDIR}"
|
||
|
OutFile "${OUTFILE}"
|
||
|
|
||
|
SetCompress auto
|
||
|
SetCompressor ${COMPRESSOR}
|
||
|
|
||
|
!define MUI_WELCOMEFINISHPAGE_BITMAP "${IBITMAP}"
|
||
|
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "${UBITMAP}"
|
||
|
|
||
|
!define MUI_ABORTWARNING
|
||
|
!define MUI_FINISHPAGE_NOREBOOTSUPPORT
|
||
|
!define MUI_FINISHPAGE_RUN
|
||
|
!define MUI_FINISHPAGE_RUN_FUNCTION runFunction
|
||
|
!define MUI_FINISHPAGE_RUN_TEXT "${RUNTEXT}"
|
||
|
|
||
|
!insertmacro MUI_PAGE_WELCOME
|
||
|
!insertmacro MUI_PAGE_LICENSE "${LICENSE}"
|
||
|
!insertmacro MUI_PAGE_DIRECTORY
|
||
|
!insertmacro MUI_PAGE_INSTFILES
|
||
|
!insertmacro MUI_PAGE_FINISH
|
||
|
|
||
|
!insertmacro MUI_UNPAGE_WELCOME
|
||
|
!insertmacro MUI_UNPAGE_CONFIRM
|
||
|
!insertmacro MUI_UNPAGE_INSTFILES
|
||
|
!insertmacro MUI_UNPAGE_FINISH
|
||
|
|
||
|
!insertmacro MUI_LANGUAGE "${LANGUAGE}"
|
||
|
|
||
|
ShowInstDetails nevershow
|
||
|
ShowUninstDetails nevershow
|
||
|
|
||
|
LicenseData "${LICENSE}"
|
||
|
|
||
|
InstType "Typical"
|
||
|
|
||
|
!insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
|
||
|
|
||
|
var READABLE
|
||
|
var MANPAGE
|
||
|
var TUTNAME
|
||
|
|
||
|
Function runFunction
|
||
|
!ifdef PPGAME
|
||
|
ExecShell "open" "$SMPROGRAMS\${SMDIRECTORY}\Play ${NAME}.lnk"
|
||
|
!else
|
||
|
ExecShell "open" "$SMPROGRAMS\${SMDIRECTORY}\Panda Manual.lnk"
|
||
|
!endif
|
||
|
FunctionEnd
|
||
|
|
||
|
Section "${SMDIRECTORY}" SecCore
|
||
|
SectionIn 1 2 3 RO
|
||
|
|
||
|
SetDetailsPrint none
|
||
|
SetOutPath $INSTDIR
|
||
|
SetOverwrite try
|
||
|
|
||
|
SetOutPath $INSTDIR
|
||
|
File "${PANDA}\LICENSE"
|
||
|
SetOutPath $INSTDIR\bin
|
||
|
File /r "${PANDA}\bin\*.dll"
|
||
|
File /nonfatal /r "${PANDA}\bin\*.pyd"
|
||
|
File /nonfatal /r "${PANDA}\bin\Microsoft.*.manifest"
|
||
|
SetOutPath $INSTDIR\etc
|
||
|
File /r "${PANDACONF}\*"
|
||
|
SetOutPath $INSTDIR\direct\directscripts
|
||
|
!ifdef PPGAME
|
||
|
File /r /x CVS /x Opt?-Win32 "${PSOURCE}\direct\directscripts\*"
|
||
|
SetOutPath $INSTDIR\direct\filter
|
||
|
File /r /x CVS /x Opt?-Win32 "${PSOURCE}\direct\filter\*.sha"
|
||
|
SetOutPath $INSTDIR\direct
|
||
|
File /r /x CVS /x Opt?-Win32 "${PSOURCE}\direct\*.py"
|
||
|
!else
|
||
|
File /r /x CVS /x Opt?-Win32 "${PSOURCE}\direct\src\directscripts\*"
|
||
|
SetOutPath $INSTDIR\direct\filter
|
||
|
File /r /x CVS /x Opt?-Win32 "${PSOURCE}\direct\src\filter\*.sha"
|
||
|
SetOutPath $INSTDIR\direct
|
||
|
File /r /x CVS /x Opt?-Win32 "${PSOURCE}\direct\src\*.py"
|
||
|
File "${PANDA}\tmp\__init__.py"
|
||
|
!endif
|
||
|
Delete "$INSTDIR\panda3d.py"
|
||
|
Delete "$INSTDIR\panda3d.pyc"
|
||
|
Delete "$INSTDIR\panda3d.pyo"
|
||
|
SetOutPath $INSTDIR\pandac
|
||
|
File /r "${PANDA}\pandac\*.py"
|
||
|
SetOutPath $INSTDIR\panda3d
|
||
|
File /r "${PANDA}\panda3d\*.py"
|
||
|
File /r "${PANDA}\panda3d\*.pyd"
|
||
|
SetOutPath $INSTDIR\python
|
||
|
File /r "${PANDA}\python\*"
|
||
|
RMDir /r "$SMPROGRAMS\${SMDIRECTORY}"
|
||
|
CreateDirectory "$SMPROGRAMS\${SMDIRECTORY}"
|
||
|
|
||
|
!ifdef PPGAME
|
||
|
|
||
|
SetOutPath $INSTDIR\models
|
||
|
File /r /x CVS "${PANDA}\models\*"
|
||
|
SetOutPath $INSTDIR\bin
|
||
|
File /r "${PANDA}\bin\eggcacher.exe"
|
||
|
SetOutpath $INSTDIR\game
|
||
|
File /r "${PPGAME}\*"
|
||
|
CreateShortCut "$SMPROGRAMS\${SMDIRECTORY}\Play ${NAME}.lnk" "$INSTDIR\python\ppython.exe" "-E ${PPMAIN}" "$INSTDIR\${PPICON}" 0 SW_SHOWMINIMIZED "" "Play ${NAME}"
|
||
|
# Preload all EGG files into the model-cache
|
||
|
SetOutPath $INSTDIR
|
||
|
SetDetailsPrint textonly
|
||
|
SetDetailsView show
|
||
|
nsExec::ExecToLog '"$INSTDIR\bin\eggcacher.exe" --concise game'
|
||
|
SetDetailsPrint none
|
||
|
SetDetailsView hide
|
||
|
|
||
|
!else
|
||
|
|
||
|
SetOutPath $INSTDIR\plugins
|
||
|
File /nonfatal /r "${PANDA}\plugins\*.dle"
|
||
|
File /nonfatal /r "${PANDA}\plugins\*.dlo"
|
||
|
File /nonfatal /r "${PANDA}\plugins\*.mll"
|
||
|
File /nonfatal /r "${PANDA}\plugins\*.mel"
|
||
|
File /nonfatal /r "${PANDA}\plugins\*.ms"
|
||
|
File "${PSOURCE}\doc\INSTALLING-PLUGINS.TXT"
|
||
|
SetOutPath $INSTDIR\pandac\input
|
||
|
File /r "${PANDA}\pandac\input\*"
|
||
|
SetOutPath $INSTDIR\bin
|
||
|
File /r "${PANDA}\bin\*.exe"
|
||
|
File /nonfatal /r "${PANDA}\bin\*.p3d"
|
||
|
SetOutPath $INSTDIR\lib
|
||
|
File /r /x *.exp "${PANDA}\lib\*"
|
||
|
SetOutPath $INSTDIR\include
|
||
|
File /r /x *.exp "${PANDA}\include\*"
|
||
|
SetOutPath $INSTDIR\Pmw
|
||
|
File /r /x CVS "${PANDA}\Pmw\*"
|
||
|
SetOutPath $INSTDIR\NSIS
|
||
|
File /r /x CVS "${NSISDIR}\*"
|
||
|
SetOutPath $INSTDIR
|
||
|
File /r /x CVS "${PANDA}\ReleaseNotes"
|
||
|
!ifdef PYEXTRAS
|
||
|
SetOutPath $INSTDIR\python\lib
|
||
|
File /nonfatal /r "${PYEXTRAS}\*"
|
||
|
!endif
|
||
|
SetOutPath $INSTDIR\models
|
||
|
File /r /x CVS "${PANDA}\models\*"
|
||
|
SetOutPath $INSTDIR\samples
|
||
|
File /nonfatal /r /x CVS "${PSOURCE}\samples\*"
|
||
|
MessageBox MB_YESNO|MB_ICONQUESTION \
|
||
|
"EGG caching is about to begin.$\nThis process may take a couple minute and approximately 270 MB of RAM.$\nWARNING : It might stuck if your computer resources are low.$\n$\nDo you really want to do this optional step ?" \
|
||
|
IDNO SkipCaching
|
||
|
# Preload all EGG files into the model-cache
|
||
|
SetOutPath $INSTDIR
|
||
|
SetDetailsPrint both
|
||
|
SetDetailsView show
|
||
|
nsExec::ExecToLog '"$INSTDIR\bin\eggcacher.exe" --concise models samples'
|
||
|
SetDetailsPrint none
|
||
|
SetDetailsView hide
|
||
|
SkipCaching:
|
||
|
|
||
|
SetOutPath $INSTDIR
|
||
|
WriteINIStr $INSTDIR\Website.url "InternetShortcut" "URL" "http://panda3d.org/"
|
||
|
WriteINIStr $INSTDIR\Manual.url "InternetShortcut" "URL" "http://panda3d.org/wiki/index.php"
|
||
|
WriteINIStr $INSTDIR\Samples.url "InternetShortcut" "URL" "http://panda3d.org/wiki/index.php/Sample_Programs_in_the_Distribution"
|
||
|
SetOutPath $INSTDIR
|
||
|
CreateShortCut "$SMPROGRAMS\${SMDIRECTORY}\Panda Manual.lnk" "$INSTDIR\Manual.url" "" "$INSTDIR\bin\eggcacher.exe" 0 "" "" "Panda Manual"
|
||
|
CreateShortCut "$SMPROGRAMS\${SMDIRECTORY}\Panda Website.lnk" "$INSTDIR\Website.url" "" "$INSTDIR\bin\eggcacher.exe" 0 "" "" "Panda Website"
|
||
|
CreateShortCut "$SMPROGRAMS\${SMDIRECTORY}\Sample Program Manual.lnk" "$INSTDIR\Samples.url" "" "$INSTDIR\bin\eggcacher.exe" 0 "" "" "Sample Program Manual"
|
||
|
|
||
|
FindFirst $0 $1 $INSTDIR\samples\*
|
||
|
loop:
|
||
|
StrCmp $1 "" done
|
||
|
StrCmp $1 "." next
|
||
|
StrCmp $1 ".." next
|
||
|
Push $1
|
||
|
Push "-"
|
||
|
Push " "
|
||
|
Call StrRep
|
||
|
Pop $R0
|
||
|
StrCpy $READABLE $R0
|
||
|
Push $1
|
||
|
Push "-"
|
||
|
Push "_"
|
||
|
Call StrRep
|
||
|
Pop $R0
|
||
|
StrCpy $MANPAGE $R0
|
||
|
CreateDirectory "$SMPROGRAMS\${SMDIRECTORY}\Sample Programs\$READABLE"
|
||
|
SetOutPath $INSTDIR\samples\$1
|
||
|
WriteINIStr $INSTDIR\samples\$1\ManualPage.url "InternetShortcut" "URL" "http://panda3d.org/wiki/index.php/Sample_Programs:_$MANPAGE"
|
||
|
CreateShortCut "$SMPROGRAMS\${SMDIRECTORY}\Sample Programs\$READABLE\Manual Page.lnk" "$INSTDIR\samples\$1\ManualPage.url" "" "$INSTDIR\bin\eggcacher.exe" 0 "" "" "Manual Entry on this Sample Program"
|
||
|
CreateShortCut "$SMPROGRAMS\${SMDIRECTORY}\Sample Programs\$READABLE\View Source Code.lnk" "$INSTDIR\samples\$1"
|
||
|
FindFirst $2 $3 $INSTDIR\samples\$1\Tut-*.py
|
||
|
iloop:
|
||
|
StrCmp $3 "" idone
|
||
|
StrCpy $TUTNAME $3 -3 4
|
||
|
Push $TUTNAME
|
||
|
Push "-"
|
||
|
Push " "
|
||
|
Call StrRep
|
||
|
Pop $R0
|
||
|
StrCpy $TUTNAME $R0
|
||
|
CreateShortCut "$SMPROGRAMS\${SMDIRECTORY}\Sample Programs\$READABLE\Run $TUTNAME.lnk" "$INSTDIR\python\python.exe" "-E $3" "$INSTDIR\bin\eggcacher.exe" 0 SW_SHOWMINIMIZED "" "Run $TUTNAME"
|
||
|
CreateShortCut "$INSTDIR\samples\$1\Run $TUTNAME.lnk" "$INSTDIR\python\python.exe" "-E $3" "$INSTDIR\bin\eggcacher.exe" 0 SW_SHOWMINIMIZED "" "Run $TUTNAME"
|
||
|
FindNext $2 $3
|
||
|
goto iloop
|
||
|
idone:
|
||
|
next:
|
||
|
FindNext $0 $1
|
||
|
Goto loop
|
||
|
done:
|
||
|
|
||
|
!endif
|
||
|
|
||
|
SectionEnd
|
||
|
|
||
|
|
||
|
Section -post
|
||
|
|
||
|
!ifdef REGVIEW
|
||
|
SetRegView ${REGVIEW}
|
||
|
!endif
|
||
|
|
||
|
!ifndef PPGAME
|
||
|
|
||
|
# Add the "bin" directory to the PATH.
|
||
|
Push "$INSTDIR\python"
|
||
|
Call RemoveFromPath
|
||
|
Push "$INSTDIR\python\Scripts"
|
||
|
Call RemoveFromPath
|
||
|
Push "$INSTDIR\bin"
|
||
|
Call RemoveFromPath
|
||
|
Push "$INSTDIR\python"
|
||
|
Call AddToPath
|
||
|
Push "$INSTDIR\python\Scripts"
|
||
|
Call AddToPath
|
||
|
Push "$INSTDIR\bin"
|
||
|
Call AddToPath
|
||
|
|
||
|
ReadRegStr $0 HKLM "Software\Python\PythonCore\${PYVER}\InstallPath" ""
|
||
|
StrCmp $0 "$INSTDIR\python" RegPath 0
|
||
|
StrCmp $0 "" RegPath 0
|
||
|
|
||
|
MessageBox MB_YESNO|MB_ICONQUESTION \
|
||
|
"Your system already has a copy of Python installed. Panda3D installs its own copy of Python ${PYVER}, which will install alongside your existing copy. Would you like to make Panda's copy the default Python? If you choose 'No', you will have to configure your existing copy of Python to use the Panda3D libraries, keeping in mind that this version of Panda3D can only run with Python ${PYVER}." \
|
||
|
IDNO SkipRegPath
|
||
|
|
||
|
RegPath:
|
||
|
DetailPrint "Adding registry keys for python..."
|
||
|
WriteRegStr HKLM "Software\Python\PythonCore\${PYVER}\InstallPath" "" "$INSTDIR\python"
|
||
|
SkipRegPath:
|
||
|
!endif
|
||
|
|
||
|
DetailPrint "Adding the uninstaller ..."
|
||
|
Delete "$INSTDIR\uninst.exe"
|
||
|
WriteUninstaller "$INSTDIR\uninst.exe"
|
||
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${SMDIRECTORY}" "DisplayName" "${SMDIRECTORY}"
|
||
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${SMDIRECTORY}" "UninstallString" '"$INSTDIR\uninst.exe"'
|
||
|
SetOutPath $INSTDIR
|
||
|
CreateShortcut "$SMPROGRAMS\${SMDIRECTORY}\Uninstall ${NAME}.lnk" "$INSTDIR\uninst.exe" ""
|
||
|
|
||
|
SectionEnd
|
||
|
|
||
|
Section Uninstall
|
||
|
|
||
|
!ifdef REGVIEW
|
||
|
SetRegView ${REGVIEW}
|
||
|
!endif
|
||
|
|
||
|
!ifndef PPGAME
|
||
|
Push "$INSTDIR\python"
|
||
|
Call un.RemoveFromPath
|
||
|
Push "$INSTDIR\python\Scripts"
|
||
|
Call un.RemoveFromPath
|
||
|
Push "$INSTDIR\bin"
|
||
|
Call un.RemoveFromPath
|
||
|
|
||
|
ReadRegStr $0 HKLM "Software\Python\PythonCore\${PYVER}\InstallPath" ""
|
||
|
StrCmp $0 "$INSTDIR\python" 0 SkipUnReg
|
||
|
DeleteRegKey HKLM "Software\Python\PythonCore\${PYVER}"
|
||
|
SkipUnReg:
|
||
|
!endif
|
||
|
|
||
|
Delete "$INSTDIR\uninst.exe"
|
||
|
RMDir /r "$SMPROGRAMS\${SMDIRECTORY}"
|
||
|
RMDir /r "$INSTDIR"
|
||
|
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${SMDIRECTORY}"
|
||
|
|
||
|
SectionEnd
|
||
|
|
||
|
# --[ Utility Functions ]------------------------------------------------------
|
||
|
|
||
|
; From: http://nsis.sourceforge.net/archive/viewpage.php?pageid=91
|
||
|
Function IsNT
|
||
|
Push $0
|
||
|
ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
|
||
|
StrCmp $0 "" 0 IsNT_yes
|
||
|
; we are not NT.
|
||
|
Pop $0
|
||
|
Push 0
|
||
|
Return
|
||
|
IsNT_yes:
|
||
|
; NT!!!
|
||
|
Pop $0
|
||
|
Push 1
|
||
|
FunctionEnd
|
||
|
|
||
|
; From: http://nsis.sourceforge.net/archive/viewpage.php?pageid=91
|
||
|
Function un.IsNT
|
||
|
Push $0
|
||
|
ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
|
||
|
StrCmp $0 "" 0 unIsNT_yes
|
||
|
; we are not NT.
|
||
|
Pop $0
|
||
|
Push 0
|
||
|
Return
|
||
|
unIsNT_yes:
|
||
|
; NT!!!
|
||
|
Pop $0
|
||
|
Push 1
|
||
|
FunctionEnd
|
||
|
|
||
|
; From: http://nsis.sourceforge.net/archive/viewpage.php?pageid=91
|
||
|
Function StrStr
|
||
|
Push $0
|
||
|
Exch
|
||
|
Pop $0 ; $0 now have the string to find
|
||
|
Push $1
|
||
|
Exch 2
|
||
|
Pop $1 ; $1 now have the string to find in
|
||
|
Exch
|
||
|
Push $2
|
||
|
Push $3
|
||
|
Push $4
|
||
|
Push $5
|
||
|
StrCpy $2 -1
|
||
|
StrLen $3 $0
|
||
|
StrLen $4 $1
|
||
|
IntOp $4 $4 - $3
|
||
|
unStrStr_loop:
|
||
|
IntOp $2 $2 + 1
|
||
|
IntCmp $2 $4 0 0 unStrStrReturn_notFound
|
||
|
StrCpy $5 $1 $3 $2
|
||
|
StrCmp $5 $0 unStrStr_done unStrStr_loop
|
||
|
unStrStrReturn_notFound:
|
||
|
StrCpy $2 -1
|
||
|
unStrStr_done:
|
||
|
Pop $5
|
||
|
Pop $4
|
||
|
Pop $3
|
||
|
Exch $2
|
||
|
Exch 2
|
||
|
Pop $0
|
||
|
Pop $1
|
||
|
FunctionEnd
|
||
|
|
||
|
; From: http://nsis.sourceforge.net/archive/viewpage.php?pageid=91
|
||
|
Function un.StrStr
|
||
|
Push $0
|
||
|
Exch
|
||
|
Pop $0 ; $0 now have the string to find
|
||
|
Push $1
|
||
|
Exch 2
|
||
|
Pop $1 ; $1 now have the string to find in
|
||
|
Exch
|
||
|
Push $2
|
||
|
Push $3
|
||
|
Push $4
|
||
|
Push $5
|
||
|
StrCpy $2 -1
|
||
|
StrLen $3 $0
|
||
|
StrLen $4 $1
|
||
|
IntOp $4 $4 - $3
|
||
|
unStrStr_loop:
|
||
|
IntOp $2 $2 + 1
|
||
|
IntCmp $2 $4 0 0 unStrStrReturn_notFound
|
||
|
StrCpy $5 $1 $3 $2
|
||
|
StrCmp $5 $0 unStrStr_done unStrStr_loop
|
||
|
unStrStrReturn_notFound:
|
||
|
StrCpy $2 -1
|
||
|
unStrStr_done:
|
||
|
Pop $5
|
||
|
Pop $4
|
||
|
Pop $3
|
||
|
Exch $2
|
||
|
Exch 2
|
||
|
Pop $0
|
||
|
Pop $1
|
||
|
FunctionEnd
|
||
|
|
||
|
; From: http://nsis.sourceforge.net/archive/viewpage.php?pageid=91
|
||
|
; Commentary and smarter ';' checking by Jon Parise <jparise@cmu.edu>
|
||
|
Function AddToPath
|
||
|
Exch $0
|
||
|
Push $1
|
||
|
Push $2
|
||
|
Push $3
|
||
|
Call IsNT
|
||
|
Pop $1
|
||
|
|
||
|
StrCmp $1 1 AddToPath_NT
|
||
|
; We're not on NT, so modify the AUTOEXEC.BAT file.
|
||
|
StrCpy $1 $WINDIR 2
|
||
|
FileOpen $1 "$1\autoexec.bat" a
|
||
|
FileSeek $1 0 END
|
||
|
GetFullPathName /SHORT $0 $0
|
||
|
FileWrite $1 "$\r$\nSET PATH=%PATH%;$0$\r$\n"
|
||
|
FileClose $1
|
||
|
Goto AddToPath_done
|
||
|
|
||
|
AddToPath_NT:
|
||
|
ReadRegStr $1 HKCU "Environment" "PATH"
|
||
|
Call IsUserAdmin
|
||
|
Pop $3
|
||
|
; If this is an Admin user, use the System env. variable instead of the user's env. variable
|
||
|
StrCmp $3 1 0 +2
|
||
|
ReadRegStr $1 HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH"
|
||
|
|
||
|
; If the PATH string is empty, jump over the mangling routines.
|
||
|
StrCmp $1 "" AddToPath_NTdoIt
|
||
|
|
||
|
; Pull off the last character of the PATH string. If it's a semicolon,
|
||
|
; we don't need to add another one, so jump to the section where we
|
||
|
; append the new PATH component(s).
|
||
|
StrCpy $2 $1 1 -1
|
||
|
StrCmp $2 ";" AddToPath_NTAddPath AddToPath_NTAddSemi
|
||
|
|
||
|
AddToPath_NTAddSemi:
|
||
|
StrCpy $1 "$1;"
|
||
|
Goto AddToPath_NTAddPath
|
||
|
AddToPath_NTAddPath:
|
||
|
StrCpy $0 "$1$0"
|
||
|
Goto AddToPath_NTdoIt
|
||
|
AddToPath_NTdoIt:
|
||
|
Call IsUserAdmin
|
||
|
Pop $3
|
||
|
StrCmp $3 1 0 NotAdmin
|
||
|
WriteRegExpandStr HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH" $0
|
||
|
Goto AddToPath_done
|
||
|
|
||
|
NotAdmin:
|
||
|
WriteRegExpandStr HKCU "Environment" "PATH" $0
|
||
|
AddToPath_done:
|
||
|
SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
|
||
|
Pop $3
|
||
|
Pop $2
|
||
|
Pop $1
|
||
|
Pop $0
|
||
|
FunctionEnd
|
||
|
|
||
|
; From: http://nsis.sourceforge.net/archive/viewpage.php?pageid=91
|
||
|
Function RemoveFromPath
|
||
|
Exch $0
|
||
|
Push $1
|
||
|
Push $2
|
||
|
Push $3
|
||
|
Push $4
|
||
|
Push $5
|
||
|
Call IsNT
|
||
|
Pop $1
|
||
|
StrCmp $1 1 unRemoveFromPath_NT
|
||
|
; Not on NT
|
||
|
StrCpy $1 $WINDIR 2
|
||
|
FileOpen $1 "$1\autoexec.bat" r
|
||
|
GetTempFileName $4
|
||
|
FileOpen $2 $4 w
|
||
|
GetFullPathName /SHORT $0 $0
|
||
|
StrCpy $0 "SET PATH=%PATH%;$0"
|
||
|
SetRebootFlag true
|
||
|
Goto unRemoveFromPath_dosLoop
|
||
|
|
||
|
unRemoveFromPath_dosLoop:
|
||
|
FileRead $1 $3
|
||
|
StrCmp $3 "$0$\r$\n" unRemoveFromPath_dosLoop
|
||
|
StrCmp $3 "$0$\n" unRemoveFromPath_dosLoop
|
||
|
StrCmp $3 "$0" unRemoveFromPath_dosLoop
|
||
|
StrCmp $3 "" unRemoveFromPath_dosLoopEnd
|
||
|
FileWrite $2 $3
|
||
|
Goto unRemoveFromPath_dosLoop
|
||
|
|
||
|
unRemoveFromPath_dosLoopEnd:
|
||
|
FileClose $2
|
||
|
FileClose $1
|
||
|
StrCpy $1 $WINDIR 2
|
||
|
Delete "$1\autoexec.bat"
|
||
|
CopyFiles /SILENT $4 "$1\autoexec.bat"
|
||
|
Delete $4
|
||
|
Goto unRemoveFromPath_done
|
||
|
|
||
|
unRemoveFromPath_NT:
|
||
|
StrLen $2 $0
|
||
|
Call IsUserAdmin
|
||
|
Pop $5
|
||
|
StrCmp $5 1 0 NotAdmin
|
||
|
ReadRegStr $1 HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH"
|
||
|
Push $1
|
||
|
Push $0
|
||
|
Call StrStr ; Find $0 in $1
|
||
|
Pop $0 ; pos of our dir
|
||
|
IntCmp $0 -1 unRemoveFromPath_done
|
||
|
; else, it is in path
|
||
|
StrCpy $3 $1 $0 ; $3 now has the part of the path before our dir
|
||
|
IntOp $2 $2 + $0 ; $2 now contains the pos after our dir in the path (';')
|
||
|
IntOp $2 $2 + 1 ; $2 now containts the pos after our dir and the semicolon.
|
||
|
StrLen $0 $1
|
||
|
StrCpy $1 $1 $0 $2
|
||
|
StrCpy $3 "$3$1"
|
||
|
WriteRegExpandStr HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH" $3
|
||
|
SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
|
||
|
Goto unRemoveFromPath_done
|
||
|
|
||
|
|
||
|
NotAdmin:
|
||
|
ReadRegStr $1 HKCU "Environment" "PATH"
|
||
|
Push $1
|
||
|
Push $0
|
||
|
Call StrStr ; Find $0 in $1
|
||
|
Pop $0 ; pos of our dir
|
||
|
IntCmp $0 -1 unRemoveFromPath_done
|
||
|
; else, it is in path
|
||
|
StrCpy $3 $1 $0 ; $3 now has the part of the path before our dir
|
||
|
IntOp $2 $2 + $0 ; $2 now contains the pos after our dir in the path (';')
|
||
|
IntOp $2 $2 + 1 ; $2 now containts the pos after our dir and the semicolon.
|
||
|
StrLen $0 $1
|
||
|
StrCpy $1 $1 $0 $2
|
||
|
StrCpy $3 "$3$1"
|
||
|
WriteRegExpandStr HKCU "Environment" "PATH" $3
|
||
|
SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
|
||
|
|
||
|
unRemoveFromPath_done:
|
||
|
Pop $5
|
||
|
Pop $4
|
||
|
Pop $3
|
||
|
Pop $2
|
||
|
Pop $1
|
||
|
Pop $0
|
||
|
FunctionEnd
|
||
|
|
||
|
; From: http://nsis.sourceforge.net/archive/viewpage.php?pageid=91
|
||
|
Function un.RemoveFromPath
|
||
|
Exch $0
|
||
|
Push $1
|
||
|
Push $2
|
||
|
Push $3
|
||
|
Push $4
|
||
|
Push $5
|
||
|
Call un.IsNT
|
||
|
Pop $1
|
||
|
StrCmp $1 1 unRemoveFromPath_NT
|
||
|
; Not on NT
|
||
|
StrCpy $1 $WINDIR 2
|
||
|
FileOpen $1 "$1\autoexec.bat" r
|
||
|
GetTempFileName $4
|
||
|
FileOpen $2 $4 w
|
||
|
GetFullPathName /SHORT $0 $0
|
||
|
StrCpy $0 "SET PATH=%PATH%;$0"
|
||
|
SetRebootFlag true
|
||
|
Goto unRemoveFromPath_dosLoop
|
||
|
|
||
|
unRemoveFromPath_dosLoop:
|
||
|
FileRead $1 $3
|
||
|
StrCmp $3 "$0$\r$\n" unRemoveFromPath_dosLoop
|
||
|
StrCmp $3 "$0$\n" unRemoveFromPath_dosLoop
|
||
|
StrCmp $3 "$0" unRemoveFromPath_dosLoop
|
||
|
StrCmp $3 "" unRemoveFromPath_dosLoopEnd
|
||
|
FileWrite $2 $3
|
||
|
Goto unRemoveFromPath_dosLoop
|
||
|
|
||
|
unRemoveFromPath_dosLoopEnd:
|
||
|
FileClose $2
|
||
|
FileClose $1
|
||
|
StrCpy $1 $WINDIR 2
|
||
|
Delete "$1\autoexec.bat"
|
||
|
CopyFiles /SILENT $4 "$1\autoexec.bat"
|
||
|
Delete $4
|
||
|
Goto unRemoveFromPath_done
|
||
|
|
||
|
unRemoveFromPath_NT:
|
||
|
StrLen $2 $0
|
||
|
Call un.IsUserAdmin
|
||
|
Pop $5
|
||
|
StrCmp $5 1 0 NotAdmin
|
||
|
ReadRegStr $1 HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH"
|
||
|
Push $1
|
||
|
Push $0
|
||
|
Call un.StrStr ; Find $0 in $1
|
||
|
Pop $0 ; pos of our dir
|
||
|
IntCmp $0 -1 unRemoveFromPath_done
|
||
|
; else, it is in path
|
||
|
StrCpy $3 $1 $0 ; $3 now has the part of the path before our dir
|
||
|
IntOp $2 $2 + $0 ; $2 now contains the pos after our dir in the path (';')
|
||
|
IntOp $2 $2 + 1 ; $2 now containts the pos after our dir and the semicolon.
|
||
|
StrLen $0 $1
|
||
|
StrCpy $1 $1 $0 $2
|
||
|
StrCpy $3 "$3$1"
|
||
|
WriteRegExpandStr HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH" $3
|
||
|
SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
|
||
|
Goto unRemoveFromPath_done
|
||
|
|
||
|
|
||
|
NotAdmin:
|
||
|
ReadRegStr $1 HKCU "Environment" "PATH"
|
||
|
Push $1
|
||
|
Push $0
|
||
|
Call un.StrStr ; Find $0 in $1
|
||
|
Pop $0 ; pos of our dir
|
||
|
IntCmp $0 -1 unRemoveFromPath_done
|
||
|
; else, it is in path
|
||
|
StrCpy $3 $1 $0 ; $3 now has the part of the path before our dir
|
||
|
IntOp $2 $2 + $0 ; $2 now contains the pos after our dir in the path (';')
|
||
|
IntOp $2 $2 + 1 ; $2 now containts the pos after our dir and the semicolon.
|
||
|
StrLen $0 $1
|
||
|
StrCpy $1 $1 $0 $2
|
||
|
StrCpy $3 "$3$1"
|
||
|
WriteRegExpandStr HKCU "Environment" "PATH" $3
|
||
|
SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
|
||
|
|
||
|
unRemoveFromPath_done:
|
||
|
Pop $5
|
||
|
Pop $4
|
||
|
Pop $3
|
||
|
Pop $2
|
||
|
Pop $1
|
||
|
Pop $0
|
||
|
FunctionEnd
|
||
|
|
||
|
; From: http://nsis.sourceforge.net/archive/nsisweb.php?page=329&instances=0,11
|
||
|
; Localized by Ben Johnson (bkj@andrew.cmu.edu)
|
||
|
Function IsUserAdmin
|
||
|
Push $0
|
||
|
Push $1
|
||
|
Push $2
|
||
|
Push $3
|
||
|
Call IsNT
|
||
|
Pop $1
|
||
|
|
||
|
ClearErrors
|
||
|
UserInfo::GetName
|
||
|
;IfErrors Win9x
|
||
|
Pop $2
|
||
|
UserInfo::GetAccountType
|
||
|
Pop $3
|
||
|
|
||
|
; Compare results of IsNT with "1"
|
||
|
StrCmp $1 1 0 NotNT
|
||
|
;This is NT
|
||
|
|
||
|
|
||
|
StrCmp $3 "Admin" 0 NotAdmin
|
||
|
; Observation: I get here when running Win98SE. (Lilla)
|
||
|
; The functions UserInfo.dll looks for are there on Win98 too,
|
||
|
; but just don't work. So UserInfo.dll, knowing that admin isn't required
|
||
|
; on Win98, returns admin anyway. (per kichik)
|
||
|
; MessageBox MB_OK 'User "$R1" is in the Administrators group'
|
||
|
Pop $3
|
||
|
Pop $2
|
||
|
Pop $1
|
||
|
Pop $0
|
||
|
|
||
|
Push 1
|
||
|
Return
|
||
|
|
||
|
NotAdmin:
|
||
|
; You should still check for an empty string because the functions
|
||
|
; UserInfo.dll looks for may not be present on Windows 95. (per kichik)
|
||
|
|
||
|
#StrCmp $2 "" Win9x
|
||
|
#StrCpy $0 0
|
||
|
;MessageBox MB_OK 'User "$2" is in the "$3" group'
|
||
|
Pop $3
|
||
|
Pop $2
|
||
|
Pop $1
|
||
|
Pop $0
|
||
|
|
||
|
Push 0
|
||
|
Return
|
||
|
|
||
|
;Because we use IsNT, this is redundant.
|
||
|
#Win9x:
|
||
|
# ; comment/message below is by UserInfo.nsi author:
|
||
|
# ; This one means you don't need to care about admin or
|
||
|
# ; not admin because Windows 9x doesn't either
|
||
|
# ;MessageBox MB_OK "Error! This DLL can't run under Windows 9x!"
|
||
|
# StrCpy $0 0
|
||
|
|
||
|
NotNT:
|
||
|
;We are not NT
|
||
|
;Win9x doesn't have "admin" users.
|
||
|
;Let the user do whatever.
|
||
|
Pop $3
|
||
|
Pop $2
|
||
|
Pop $1
|
||
|
Pop $0
|
||
|
|
||
|
Push 1
|
||
|
|
||
|
FunctionEnd
|
||
|
|
||
|
Function un.IsUserAdmin
|
||
|
Push $0
|
||
|
Push $1
|
||
|
Push $2
|
||
|
Push $3
|
||
|
Call un.IsNT
|
||
|
Pop $1
|
||
|
|
||
|
ClearErrors
|
||
|
UserInfo::GetName
|
||
|
;IfErrors Win9x
|
||
|
Pop $2
|
||
|
UserInfo::GetAccountType
|
||
|
Pop $3
|
||
|
|
||
|
; Compare results of IsNT with "1"
|
||
|
StrCmp $1 1 0 NotNT
|
||
|
;This is NT
|
||
|
|
||
|
|
||
|
StrCmp $3 "Admin" 0 NotAdmin
|
||
|
; Observation: I get here when running Win98SE. (Lilla)
|
||
|
; The functions UserInfo.dll looks for are there on Win98 too,
|
||
|
; but just don't work. So UserInfo.dll, knowing that admin isn't required
|
||
|
; on Win98, returns admin anyway. (per kichik)
|
||
|
; MessageBox MB_OK 'User "$R1" is in the Administrators group'
|
||
|
Pop $3
|
||
|
Pop $2
|
||
|
Pop $1
|
||
|
Pop $0
|
||
|
|
||
|
Push 1
|
||
|
Return
|
||
|
|
||
|
NotAdmin:
|
||
|
; You should still check for an empty string because the functions
|
||
|
; UserInfo.dll looks for may not be present on Windows 95. (per kichik)
|
||
|
|
||
|
#StrCmp $2 "" Win9x
|
||
|
#StrCpy $0 0
|
||
|
;MessageBox MB_OK 'User "$2" is in the "$3" group'
|
||
|
Pop $3
|
||
|
Pop $2
|
||
|
Pop $1
|
||
|
Pop $0
|
||
|
|
||
|
Push 0
|
||
|
Return
|
||
|
|
||
|
;Because we use IsNT, this is redundant.
|
||
|
#Win9x:
|
||
|
# ; comment/message below is by UserInfo.nsi author:
|
||
|
# ; This one means you don't need to care about admin or
|
||
|
# ; not admin because Windows 9x doesn't either
|
||
|
# ;MessageBox MB_OK "Error! This DLL can't run under Windows 9x!"
|
||
|
# StrCpy $0 0
|
||
|
|
||
|
NotNT:
|
||
|
;We are not NT
|
||
|
;Win9x doesn't have "admin" users.
|
||
|
;Let the user do whatever.
|
||
|
Pop $3
|
||
|
Pop $2
|
||
|
Pop $1
|
||
|
Pop $0
|
||
|
|
||
|
Push 1
|
||
|
|
||
|
FunctionEnd
|
||
|
|
||
|
Function StrRep
|
||
|
|
||
|
;Written by dirtydingus 2003-02-20 04:30:09
|
||
|
; USAGE
|
||
|
;Push String to do replacement in (haystack)
|
||
|
;Push String to replace (needle)
|
||
|
;Push Replacement
|
||
|
;Call StrRep
|
||
|
;Pop $R0 result
|
||
|
;StrCpy $Result STR $R0
|
||
|
|
||
|
Exch $R4 ; $R4 = Replacement String
|
||
|
Exch
|
||
|
Exch $R3 ; $R3 = String to replace (needle)
|
||
|
Exch 2
|
||
|
Exch $R1 ; $R1 = String to do replacement in (haystack)
|
||
|
Push $R2 ; Replaced haystack
|
||
|
Push $R5 ; Len (needle)
|
||
|
Push $R6 ; len (haystack)
|
||
|
Push $R7 ; Scratch reg
|
||
|
StrCpy $R2 ""
|
||
|
StrLen $R5 $R3
|
||
|
StrLen $R6 $R1
|
||
|
loop:
|
||
|
StrCpy $R7 $R1 $R5
|
||
|
StrCmp $R7 $R3 found
|
||
|
StrCpy $R7 $R1 1 ; - optimization can be removed if U know len needle=1
|
||
|
StrCpy $R2 "$R2$R7"
|
||
|
StrCpy $R1 $R1 $R6 1
|
||
|
StrCmp $R1 "" done loop
|
||
|
found:
|
||
|
StrCpy $R2 "$R2$R4"
|
||
|
StrCpy $R1 $R1 $R6 $R5
|
||
|
StrCmp $R1 "" done loop
|
||
|
done:
|
||
|
StrCpy $R3 $R2
|
||
|
Pop $R7
|
||
|
Pop $R6
|
||
|
Pop $R5
|
||
|
Pop $R2
|
||
|
Pop $R1
|
||
|
Pop $R4
|
||
|
Exch $R3
|
||
|
|
||
|
FunctionEnd
|
||
|
|