BCIgui/Masterarbeit/openvibe/extras-master/scripts/windows-openvibe-x.x.x-setup-x86.nsi
2021-10-14 13:47:35 +02:00

300 lines
12 KiB
NSIS

; define a default for dep dir
!ifndef DEPENDENCIES_DIR
!define DEPENDENCIES_DIR "..\..\dependencies"
!endif
!define OV_VERSION "3.1.0"
!define OV_VERSION_SHORT "310"
!ifndef OUTFILE
!define OUTFILE "openvibe-${OV_VERSION}-32bit-setup.exe"
!endif
SetCompressor /FINAL /SOLID lzma
SetCompressorDictSize 16
!include "MUI.nsh"
!include "zipdll.nsh"
;Name and file
!define OV_NAME "OpenViBE ${OV_VERSION} (32bit)"
Name "${OV_NAME}"
OutFile ${OUTFILE}
;To detect a previous installation
!define OV_REGKEY "openvibe${OV_VERSION_SHORT}"
;Default installation folder
InstallDir "$PROGRAMFILES\openvibe-${OV_VERSION}"
Var OLDINSTDIR
Var DIRECTX_MISSING
;Interface Settings
!define MUI_ABORTWARNING
;Pages
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE "..\COPYING"
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_UNPAGE_WELCOME
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_UNPAGE_FINISH
;Languages
!insertmacro MUI_LANGUAGE "English"
;Installer and uninstaller icons
Icon "${NSISDIR}\Contrib\Graphics\Icons\box-install.ico"
UninstallIcon "${NSISDIR}\Contrib\Graphics\Icons\box-uninstall.ico"
;##########################################################################################################################################################
;##########################################################################################################################################################
;##########################################################################################################################################################
Function .onInit
; Note that for logging to work, you will need a logging-enabled build of nsis.
; At the time of writing this, you could get one from http://nsis.sourceforge.net/Special_Builds
LogSet on
UserInfo::GetAccountType
Pop $R1
StrCmp $R1 "Admin" has_admin_rights 0
MessageBox MB_OK "You must be administrator to install OpenViBE" /SD IDOK
Quit
has_admin_rights:
ReadRegStr $0 HKLM SOFTWARE\${OV_REGKEY} InstallDir
${If} $0 != ""
IfFileExists "$0\Uninstall.exe" +1 +5
MessageBox MB_YESNO "A previous installation of ${OV_NAME} is installed under $0.$\nContinuing the install procedure will remove previous installation of ${OV_NAME} (including all files you eventually added in the installation directory).$\nWould you like to accept this removal and continue on installation process ?" /SD IDYES IDNO +1 IDYES +2
Abort
StrCpy $OLDINSTDIR $0
StrCpy $INSTDIR $0
${EndIf}
; Make OpenViBE section mandatory
IntOp $0 ${SF_SELECTED} | ${SF_RO}
IntOp $0 $0 | ${SF_BOLD}
SectionSetFlags "Section1" $0
FunctionEnd
; Returns characters before -, _ or .
Function GetFirstStrPart
Exch $R0
Push $R1
Push $R2
StrLen $R1 $R0
IntOp $R1 $R1 + 1
loop:
IntOp $R1 $R1 - 1
StrCpy $R2 $R0 1 -$R1
StrCmp $R2 "" exit2
StrCmp $R2 "-" exit1
StrCmp $R2 "_" exit1
StrCmp $R2 "." exit1
Goto loop
exit1:
StrCpy $R0 $R0 -$R1
exit2:
Pop $R2
Pop $R1
Exch $R0
FunctionEnd
;##########################################################################################################################################################
;##########################################################################################################################################################
;##########################################################################################################################################################
Section "!OpenViBE" Section1
LogSet on
${If} $OLDINSTDIR != ""
RMDir /r $OLDINSTDIR
RMDir /r "$SMPROGRAMS\${OV_NAME}"
${EndIf}
SetOutPath $INSTDIR
WriteRegStr HKLM "SOFTWARE\${OV_REGKEY}" "InstallDir" "$INSTDIR"
WriteUninstaller Uninstall.exe
CreateDirectory "$INSTDIR\dependencies\arch"
StrCpy $DIRECTX_MISSING "false"
SetOutPath "$INSTDIR\dependencies"
IfFileExists "$SYSDIR\d3dx9_43.dll" no_need_to_install_directx
NSISdl::download "https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" "arch\directx-jun2010.exe"
Pop $R0 ; Get the return value
StrCmp $R0 "success" +4
MessageBox MB_OK "Download failed: $R0$\nCheck your Internet connection and your firewall settings.$\nDirect X won't be installed and 3D functionalities won't be available...$\nYou can install DirectX later to enable 3D functionalities !" /SD IDOK
StrCpy $DIRECTX_MISSING "true"
Goto no_need_to_install_directx ; Quit
ExecWait '"arch\directx-jun2010.exe" /T:"$INSTDIR\tmp" /Q'
ExecWait '"$INSTDIR\tmp\DXSETUP.exe" /silent'
RMDir /r "$INSTDIR\tmp"
no_need_to_install_directx:
; We download the redist from microsoft as its rather large. At the time of writing, vc140 is used by gNeedAccess and hence AS.
SetOutPath "$INSTDIR\dependencies"
IfFileExists "$SYSDIR\msvcp140.dll" no_need_to_install_vc140
NSISdl::download "https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe" "arch\vc_redist.x86.exe"
Pop $R0 ; Get the return value
StrCmp $R0 "success" +3
MessageBox MB_OK "Download failed: $R0$\nCheck your Internet connection and your firewall settings.$\nVisual Studio 2015 Redistributable x86 (vc140) could not be downloaded.\nYou can try to install it manually from Microsoft and then retry the OpenViBE installer." /SD IDOK
Quit
ExecWait '"arch\vc_redist.x86.exe" /install /norestart /passive'
no_need_to_install_vc140:
; This is the destination path where the zips will be copied to
SetOutPath "$INSTDIR\dependencies\arch"
; The following source paths are relative to this .nsi script location
File "${DEPENDENCIES_DIR}\arch\build\windows\*runtime.zip"
File "${DEPENDENCIES_DIR}\arch\build\windows\pthread*.zip"
; All vcredist packages extracted to the same folder
File "${DEPENDENCIES_DIR}\arch\build\windows\vcredist*.zip"
; The zips are extracted here by the installer
SetOutPath "$INSTDIR\dependencies"
; Extract all the zip archives
; n.b. this thing will freeze on exec if there is no - or _ in the filename
ClearErrors
FindFirst $R0 $R1 "arch\*.zip"
ZipLoop:
IfErrors ZipDone
; find the base name, push to R2
Push "$R1"
Call GetFirstStrPart
Pop "$R2"
ZipDLL::extractall "arch\$R1" "$R2"
ClearErrors
FindNext $R0 $R1
Goto ZipLoop
ZipDone:
FindClose $R0
; Zip extract hopefully done now
SetOutPath "$INSTDIR"
; Export binaries
File /nonfatal /r ..\..\dist\extras-Release-x86\bin
; Export launch scripts
File /nonfatal ..\..\dist\extras-Release-x86\*.cmd
; File /nonfatal /r ..\dist\doc
; File /nonfatal /r ..\dist\include
; etc and lib folders are needed for the gtk theme
File /nonfatal /r /x *.lib ..\..\dist\extras-Release-x86\lib
File /nonfatal /r ..\..\dist\extras-Release-x86\etc
File /nonfatal /r ..\..\dist\extras-Release-x86\log
File /nonfatal /r ..\..\dist\extras-Release-x86\share
; File /nonfatal /r ..\dist\tmp
StrCmp $DIRECTX_MISSING "false" no_need_to_patch_3d_functionnality
FileOpen $0 "$INSTDIR\share\openvibe\kernel\openvibe.conf" a
FileSeek $0 0 END
FileWrite $0 "$\r$\n"
FileWrite $0 "#####################################################################################$\r$\n"
FileWrite $0 "# Patched by installer because DirectX is missing$\r$\n"
FileWrite $0 "#####################################################################################$\r$\n"
FileWrite $0 "Kernel_3DVisualizationEnabled = false$\r$\n"
FileClose $0
no_need_to_patch_3d_functionnality:
; Overwrite the file that may be in share/, as it contains local definitions to the build machine
FileOpen $0 "$INSTDIR\bin\openvibe-set-env.cmd" w
FileWrite $0 "@echo off$\r$\n"
FileWrite $0 "$\r$\n"
FileWrite $0 "$\r$\n"
FileWrite $0 "SET OGRE_HOME=$INSTDIR\dependencies\ogre$\r$\n"
FileWrite $0 "SET VRPNROOT=$INSTDIR\dependencies\vrpn$\r$\n"
FileWrite $0 "$\r$\n"
FileWrite $0 "SET PATH=$INSTDIR\dependencies\gtk\bin;%PATH%$\r$\n"
FileWrite $0 "SET PATH=$INSTDIR\dependencies\cegui\bin;%PATH%$\r$\n"
FileWrite $0 "SET PATH=$INSTDIR\dependencies\cegui\dependencies\bin;%PATH%$\r$\n"
FileWrite $0 "SET PATH=%OGRE_HOME%\bin\release;%OGRE_HOME%\bin\debug;%PATH%$\r$\n"
FileWrite $0 "SET PATH=%VRPNROOT%\bin;%PATH%$\r$\n"
FileWrite $0 "SET PATH=$INSTDIR\dependencies\pthread\lib;%PATH%$\r$\n"
FileWrite $0 "SET PATH=$INSTDIR\dependencies\vcredist\;%PATH%$\r$\n"
FileWrite $0 "$\r$\n"
FileWrite $0 "REM Apply user-provided Python2.7 paths if available$\r$\n"
FileWrite $0 "IF NOT !PYTHONHOME27!==!EMPTY! IF NOT !PYTHONPATH27!==!EMPTY! SET REPLACE_PYTHON=true$\r$\n"
FileWrite $0 "IF NOT !REPLACE_PYTHON!==!EMPTY! ($\r$\n"
FileWrite $0 " SET $\"PYTHONHOME=%PYTHONHOME27%$\"$\r$\n"
FileWrite $0 " SET $\"PYTHONPATH=%PYTHONPATH27%$\"$\r$\n"
FileWrite $0 ")$\r$\n"
FileClose $0
FileOpen $0 "$INSTDIR\dependencies\cegui\resources.cfg" w
FileWrite $0 "FileSystem=$INSTDIR\dependencies\cegui\datafiles\configs$\r$\n"
FileWrite $0 "FileSystem=$INSTDIR\dependencies\cegui\datafiles\fonts$\r$\n"
FileWrite $0 "FileSystem=$INSTDIR\dependencies\cegui\datafiles\imagesets$\r$\n"
FileWrite $0 "FileSystem=$INSTDIR\dependencies\cegui\datafiles\layouts$\r$\n"
FileWrite $0 "FileSystem=$INSTDIR\dependencies\cegui\datafiles\looknfeel$\r$\n"
FileWrite $0 "FileSystem=$INSTDIR\dependencies\cegui\datafiles\lua_scripts$\r$\n"
FileWrite $0 "FileSystem=$INSTDIR\dependencies\cegui\datafiles\schemes$\r$\n"
FileWrite $0 "FileSystem=$INSTDIR\dependencies\cegui\datafiles\xml_schemes$\r$\n"
FileClose $0
FileOpen $0 "$INSTDIR\dependencies\gtk\etc\gtk-2.0\gtkrc" w
FileWrite $0 "gtk-theme-name = $\"Redmond$\"$\r$\n"
FileWrite $0 "style $\"user-font$\"$\r$\n"
FileWrite $0 "{$\r$\n"
FileWrite $0 " font_name=$\"Sans 8$\"$\r$\n"
FileWrite $0 "}$\r$\n"
FileWrite $0 "widget_class $\"*$\" style $\"user-font$\"$\r$\n"
FileClose $0
CreateDirectory "$SMPROGRAMS\${OV_NAME}"
CreateDirectory "$SMPROGRAMS\${OV_NAME}\Developer tools"
CreateShortCut "$SMPROGRAMS\${OV_NAME}\Developer tools\OpenViBE ID Generator.lnk" "$INSTDIR\openvibe-id-generator.cmd" "" "%SystemRoot%\system32\shell32.dll" 57
CreateShortCut "$SMPROGRAMS\${OV_NAME}\Developer tools\OpenViBE Plugin Inspector.lnk" "$INSTDIR\openvibe-plugin-inspector.cmd" "" "%SystemRoot%\system32\shell32.dll" 57
CreateShortCut "$SMPROGRAMS\${OV_NAME}\Developer tools\OpenViBE Skeleton Generator.lnk" "$INSTDIR\openvibe-skeleton-generator.cmd" "" "%SystemRoot%\system32\shell32.dll" 57
CreateShortCut "$SMPROGRAMS\${OV_NAME}\OpenViBE Designer 32bit.lnk" "$INSTDIR\openvibe-designer.cmd" "" "%SystemRoot%\system32\shell32.dll" 137
CreateShortCut "$SMPROGRAMS\${OV_NAME}\OpenViBE Acquisition Server 32bit.lnk" "$INSTDIR\openvibe-acquisition-server.cmd" "" "%SystemRoot%\system32\shell32.dll" 18
CreateShortCut "$SMPROGRAMS\${OV_NAME}\OpenViBE Tracker 32bit.lnk" "$INSTDIR\openvibe-tracker.cmd" "" "%SystemRoot%\system32\shell32.dll" 249
CreateShortCut "$SMPROGRAMS\${OV_NAME}\OpenViBE VR-demo Spaceship 32bit.lnk" "$INSTDIR\openvibe-vr-demo-spaceship.cmd" "" "%SystemRoot%\system32\shell32.dll" 200
CreateShortCut "$SMPROGRAMS\${OV_NAME}\OpenViBE VR-demo Handball 32bit.lnk" "$INSTDIR\openvibe-vr-demo-handball.cmd" "" "%SystemRoot%\system32\shell32.dll" 200
CreateShortCut "$SMPROGRAMS\${OV_NAME}\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
; AccessControl::EnableFileInheritance "$INSTDIR"
; AccessControl::GrantOnFile "$INSTDIR" "(BU)" "GenericRead + GenericWrite + GenericExecute + Delete" ; to ensure windows XP back compatibility
; AccessControl::GrantOnFile "$INSTDIR" "(S-1-5-32-545)" "GenericRead + GenericWrite + GenericExecute + Delete" ; (BU) user group (builtin users) does not exist on win7. this SID replaces it.
SectionEnd
Section "Uninstall"
RMDir /r $INSTDIR
RMDir /r "$SMPROGRAMS\${OV_NAME}"
SectionEnd
LangString DESC_Section1 ${LANG_ENGLISH} "The OpenViBE package: Designer, Acquisition Server, drivers, examples, etc."
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT ${Section1} $(DESC_Section1)
!insertmacro MUI_FUNCTION_DESCRIPTION_END