mirror of
https://github.com/glest/glest-source.git
synced 2025-09-08 23:10:42 +02:00
Added install project files for Windows based clients (using open source NSIS installer)
This commit is contained in:
184
mk/windoze/Installer/MegaGlestInstaller.nsi
Normal file
184
mk/windoze/Installer/MegaGlestInstaller.nsi
Normal file
@@ -0,0 +1,184 @@
|
|||||||
|
;--------------------------------
|
||||||
|
; General Attributes
|
||||||
|
|
||||||
|
!define APNAME Mega-Glest
|
||||||
|
|
||||||
|
Name "${APNAME}"
|
||||||
|
OutFile "${APNAME}-Installer.exe"
|
||||||
|
InstallDir "$PROGRAMFILES\${APNAME}"
|
||||||
|
BGGradient 0xDF9437 0xffffff
|
||||||
|
|
||||||
|
; Request application privileges for Windows Vista
|
||||||
|
RequestExecutionLevel none
|
||||||
|
|
||||||
|
;--------------------------------
|
||||||
|
; Images not included!
|
||||||
|
; Use your own animated GIFs please
|
||||||
|
;--------------------------------
|
||||||
|
|
||||||
|
;--------------------------------
|
||||||
|
;Interface Settings
|
||||||
|
|
||||||
|
!include "MUI.nsh"
|
||||||
|
!define MUI_CUSTOMFUNCTION_GUIINIT MUIGUIInit
|
||||||
|
!insertmacro MUI_PAGE_WELCOME
|
||||||
|
#!insertmacro MUI_PAGE_DIRECTORY
|
||||||
|
#!insertmacro MUI_PAGE_INSTFILES
|
||||||
|
!insertmacro MUI_LANGUAGE "English"
|
||||||
|
|
||||||
|
; Registry key to check for directory (so if you install again, it will
|
||||||
|
; overwrite the old one automatically)
|
||||||
|
InstallDirRegKey HKLM "Software\${APNAME}" "Install_Dir"
|
||||||
|
|
||||||
|
; Pages
|
||||||
|
|
||||||
|
Page directory
|
||||||
|
Page instfiles
|
||||||
|
|
||||||
|
UninstPage uninstConfirm
|
||||||
|
UninstPage instfiles
|
||||||
|
|
||||||
|
Function MUIGUIInit
|
||||||
|
|
||||||
|
SetOutPath '$PLUGINSDIR'
|
||||||
|
File megaglestinstallscreen.jpg
|
||||||
|
|
||||||
|
FindWindow $0 '_Nb'
|
||||||
|
EBanner::show /NOUNLOAD /FIT=BOTH /HWND=$0 "$PLUGINSDIR\megaglestinstallscreen.jpg"
|
||||||
|
|
||||||
|
# FindWindow $0 "#32770" "" $HWNDPARENT
|
||||||
|
# GetDlgItem $0 $0 1006
|
||||||
|
# SetCtlColors $0 0xDF9437 0xDF9437
|
||||||
|
|
||||||
|
FunctionEnd
|
||||||
|
|
||||||
|
|
||||||
|
Function .onGUIEnd
|
||||||
|
|
||||||
|
EBanner::stop
|
||||||
|
|
||||||
|
FunctionEnd
|
||||||
|
|
||||||
|
Function .onInstSuccess
|
||||||
|
|
||||||
|
MessageBox MB_OK "${APNAME} installed successfully, click OK to launch game."
|
||||||
|
|
||||||
|
SetOutPath $INSTDIR
|
||||||
|
Exec 'glest_game.exe'
|
||||||
|
|
||||||
|
FunctionEnd
|
||||||
|
|
||||||
|
; The stuff to install
|
||||||
|
Section "${APNAME} (required)"
|
||||||
|
|
||||||
|
SectionIn RO
|
||||||
|
|
||||||
|
#MUI_PAGE_INSTFILES
|
||||||
|
|
||||||
|
; Set output path to the installation directory.
|
||||||
|
SetOutPath $INSTDIR
|
||||||
|
; Put file there
|
||||||
|
File "..\..\..\data\glest_game\glest_game.exe"
|
||||||
|
File "..\..\..\data\glest_game\glest_editor.exe"
|
||||||
|
File "..\..\..\data\glest_game\glest_configurator.exe"
|
||||||
|
File "..\..\..\data\glest_game\g3d_viewer.exe"
|
||||||
|
File "..\..\..\data\glest_game\configuration.xml"
|
||||||
|
File "..\..\..\data\glest_game\glest.ico"
|
||||||
|
File "..\..\..\data\glest_game\glest.ini"
|
||||||
|
File "..\..\..\data\glest_game\servers.ini"
|
||||||
|
File "..\..\..\data\glest_game\dsound.dll"
|
||||||
|
File "..\..\..\data\glest_game\xerces-c_3_0.dll"
|
||||||
|
File /r /x .svn "..\..\..\data\glest_game\data"
|
||||||
|
File /r /x .svn "..\..\..\data\glest_game\docs"
|
||||||
|
File /r /x .svn "..\..\..\data\glest_game\maps"
|
||||||
|
File /r /x .svn "..\..\..\data\glest_game\scenarios"
|
||||||
|
File /r /x .svn "..\..\..\data\glest_game\techs"
|
||||||
|
File /r /x .svn "..\..\..\data\glest_game\tilesets"
|
||||||
|
File /r /x .svn "..\..\..\data\glest_game\tutorials"
|
||||||
|
# File /r /x .svn "..\..\..\data\glest_game\screens"
|
||||||
|
|
||||||
|
; Write the installation path into the registry
|
||||||
|
WriteRegStr HKLM Software\${APNAME} "Install_Dir" "$INSTDIR"
|
||||||
|
|
||||||
|
; Write the uninstall keys for Windows
|
||||||
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APNAME}" "DisplayName" "${APNAME}"
|
||||||
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APNAME}" "UninstallString" '"$INSTDIR\uninstall.exe"'
|
||||||
|
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APNAME}" "NoModify" 1
|
||||||
|
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APNAME}" "NoRepair" 1
|
||||||
|
WriteUninstaller "uninstall.exe"
|
||||||
|
|
||||||
|
CreateDirectory $INSTDIR\data
|
||||||
|
CreateDirectory $INSTDIR\docs
|
||||||
|
CreateDirectory $INSTDIR\maps
|
||||||
|
CreateDirectory $INSTDIR\scenarios
|
||||||
|
CreateDirectory $INSTDIR\techs
|
||||||
|
CreateDirectory $INSTDIR\tilesets
|
||||||
|
CreateDirectory $INSTDIR\tutorials
|
||||||
|
CreateDirectory $INSTDIR\screens
|
||||||
|
|
||||||
|
AccessControl::GrantOnFile "$INSTDIR" "(BU)" "FullAccess"
|
||||||
|
|
||||||
|
SectionEnd
|
||||||
|
|
||||||
|
; Optional section (can be disabled by the user)
|
||||||
|
Section "Start Menu Shortcuts"
|
||||||
|
|
||||||
|
CreateDirectory "$SMPROGRAMS\${APNAME}"
|
||||||
|
CreateShortCut "$SMPROGRAMS\${APNAME}\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
|
||||||
|
CreateShortCut "$SMPROGRAMS\${APNAME}\Example2 (MakeNSISW).lnk" "$INSTDIR\glest_game.exe" "" "$INSTDIR\glest_game.exe" 0
|
||||||
|
|
||||||
|
SectionEnd
|
||||||
|
|
||||||
|
;--------------------------------
|
||||||
|
|
||||||
|
; Uninstaller
|
||||||
|
|
||||||
|
Section "Uninstall"
|
||||||
|
|
||||||
|
; Remove registry keys
|
||||||
|
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APNAME}"
|
||||||
|
DeleteRegKey HKLM SOFTWARE\${APNAME}
|
||||||
|
|
||||||
|
; Remove files and uninstaller
|
||||||
|
Delete $INSTDIR\example2.nsi
|
||||||
|
Delete $INSTDIR\uninstall.exe
|
||||||
|
|
||||||
|
Delete $INSTDIR\glest_game.exe
|
||||||
|
Delete $INSTDIR\glest_editor.exe
|
||||||
|
Delete $INSTDIR\glest_configurator.exe
|
||||||
|
Delete $INSTDIR\g3d_viewer.exe
|
||||||
|
Delete $INSTDIR\configuration.xml
|
||||||
|
Delete $INSTDIR\glest.ico
|
||||||
|
Delete $INSTDIR\glest.ini
|
||||||
|
Delete $INSTDIR\servers.ini
|
||||||
|
Delete $INSTDIR\dsound.dll
|
||||||
|
Delete $INSTDIR\xerces-c_3_0.dll
|
||||||
|
Delete $INSTDIR\*.log
|
||||||
|
|
||||||
|
Delete $INSTDIR\data\*.*
|
||||||
|
Delete $INSTDIR\docs\*.*
|
||||||
|
Delete $INSTDIR\maps\*.*
|
||||||
|
Delete $INSTDIR\scenarios\*.*
|
||||||
|
Delete $INSTDIR\screens\*.*
|
||||||
|
Delete $INSTDIR\techs\*.*
|
||||||
|
Delete $INSTDIR\tilesets\*.*
|
||||||
|
Delete $INSTDIR\tutorials\*.*
|
||||||
|
|
||||||
|
RMDir /r $INSTDIR\data
|
||||||
|
RMDir /r $INSTDIR\docs
|
||||||
|
RMDir /r $INSTDIR\maps
|
||||||
|
RMDir /r $INSTDIR\scenarios
|
||||||
|
RMDir /r $INSTDIR\screens
|
||||||
|
RMDir /r $INSTDIR\techs
|
||||||
|
RMDir /r $INSTDIR\tilesets
|
||||||
|
RMDir /r $INSTDIR\tutorials
|
||||||
|
|
||||||
|
; Remove shortcuts, if any
|
||||||
|
Delete "$SMPROGRAMS\${APNAME}\*.*"
|
||||||
|
|
||||||
|
; Remove directories used
|
||||||
|
RMDir "$SMPROGRAMS\${APNAME}"
|
||||||
|
RMDir "$INSTDIR"
|
||||||
|
|
||||||
|
SectionEnd
|
||||||
|
|
BIN
mk/windoze/Installer/megaglestinstallscreen.jpg
Normal file
BIN
mk/windoze/Installer/megaglestinstallscreen.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 240 KiB |
Reference in New Issue
Block a user