mirror of
https://github.com/OMGeeky/ATCS.git
synced 2025-12-27 14:58:55 +01:00
own backlinks now. Quest log entries and dialogue replies are now translatable too. Multiple minor UI improvements (notably multiline text area are now taller, and rewards and requirements appear more clearly in the dialogue tree view).
176 lines
5.3 KiB
NSIS
176 lines
5.3 KiB
NSIS
!include MUI2.nsh
|
|
|
|
!define VERSION "0.6.1"
|
|
!define TRAINER_VERSION "0.1.3"
|
|
!define JAVA_BIN "javaw"
|
|
|
|
Name "Andor's Trail Content Studio v${VERSION}"
|
|
OutFile "ATCS_v${VERSION}_Setup.exe"
|
|
InstallDir "$PROGRAMFILES\ATCS\"
|
|
|
|
;SetCompressor /SOLID /FINAL lzma
|
|
|
|
Var StartMenuFolder
|
|
|
|
!define MUI_WELCOMEPAGE_TITLE "Welcome to Andor's Trail Content Studio installer"
|
|
!define MUI_WELCOMEPAGE_TEXT "This will install Andor's Trail Content Studio v${VERSION} installer"
|
|
!define MUI_FINISHPAGE_TEXT "Andor's Trail Content Studio v${VERSION} install completed !"
|
|
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "Andor's Trail Content Studio"
|
|
!define MUI_PAGE_HEADER_TEXT "Installing Andor's Trail Content Studio v${VERSION}"
|
|
|
|
|
|
;Start Menu Folder Page Configuration
|
|
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU"
|
|
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\ATCS"
|
|
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "ATCS"
|
|
|
|
!define MUI_HEADERIMAGE
|
|
;!define MUI_HEADER_TRANSPARENT_TEXT
|
|
!define MUI_HEADERIMAGE_BITMAP nsisHeader.bmp
|
|
!define MUI_HEADERIMAGE_BITMAP_NOSTRETCH
|
|
;!define MUI_HEADERIMAGE_RIGHT
|
|
;!define MUI_HEADERIMAGE_BITMAP_STRETCH "AspectFitHeight"
|
|
!define MUI_HEADERIMAGE_UNBITMAP nsisHeader.bmp
|
|
;!define MUI_HEADERIMAGE_UNBITMAP_STRETCH "AspectFitHeight"
|
|
!define MUI_WELCOMEFINISHPAGE_BITMAP nsisBorderBanner.bmp
|
|
!define MUI_UNWELCOMEFINISHPAGE_BITMAP nsisBorderBanner.bmp
|
|
;!define MUI_BGCOLOR "E3E3E3"
|
|
!define MUI_ABORTWARNING
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
!insertmacro MUI_PAGE_STARTMENU "ATCS" $StartMenuFolder
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
Section install
|
|
|
|
|
|
SetOutPath $INSTDIR
|
|
file "ATCS.ico"
|
|
|
|
Delete "$INSTDIR\lib\*"
|
|
|
|
Call GetJRE
|
|
Pop $R0
|
|
FileOpen $9 "ATCS.cmd" w
|
|
FileWrite $9 '@echo off$\r$\n'
|
|
FileWrite $9 '$\r$\n'
|
|
FileWrite $9 'set "ATCS_DIR=%~dp0"$\r$\n'
|
|
FileWrite $9 'set "MAX_MEM=512M"$\r$\n'
|
|
FileWrite $9 'set "CP=%ATCS_DIR%lib\*"$\r$\n'
|
|
FileWrite $9 'set "JAVA=$R0"$\r$\n'
|
|
FileWrite $9 'set "JAVA_OPTS="$\r$\n'
|
|
FileWrite $9 'set "ENV_FILE=%ATCS_DIR%ATCS.env.bat"$\r$\n'
|
|
FileWrite $9 'set "MAIN_CLASS=com.gpl.rpg.atcontentstudio.ATContentStudio"$\r$\n'
|
|
FileWrite $9 '$\r$\n'
|
|
FileWrite $9 'if exist "%ENV_FILE%" ($\r$\n'
|
|
FileWrite $9 ' call "%ENV_FILE%"$\r$\n'
|
|
FileWrite $9 ') else ($\r$\n'
|
|
FileWrite $9 ' echo REM set "MAX_MEM=%MAX_MEM%">"%ENV_FILE%"$\r$\n'
|
|
FileWrite $9 ' echo REM set "JAVA=%JAVA%">>"%ENV_FILE%"$\r$\n'
|
|
FileWrite $9 ' echo REM set "JAVA_OPTS=%JAVA_OPTS%">>"%ENV_FILE%"$\r$\n'
|
|
FileWrite $9 ' echo.>>"%ENV_FILE%"$\r$\n'
|
|
FileWrite $9 ')$\r$\n'
|
|
FileWrite $9 '$\r$\n'
|
|
FileWrite $9 'start "" "%JAVA%" %JAVA_OPTS% -Xmx%MAX_MEM% -cp "%CP%" %MAIN_CLASS%$\r$\n'
|
|
FileClose $9
|
|
|
|
SetOutPath "$INSTDIR\lib\"
|
|
file "jide-oss.jar"
|
|
file "ui.jar"
|
|
file "AndorsTrainer_v${TRAINER_VERSION}.jar"
|
|
file "junit-4.10.jar"
|
|
file "json_simple-1.1.jar"
|
|
file "ATCS_v${VERSION}.jar"
|
|
file "rsyntaxtextarea.jar"
|
|
file "prefuse.jar"
|
|
file "bsh-2.0b4.jar"
|
|
file "jsoup-1.10.2.jar"
|
|
|
|
SetOutPath $INSTDIR
|
|
|
|
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
|
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN "ATCS"
|
|
|
|
;Create shortcuts
|
|
CreateDirectory "$SMPROGRAMS\$StartMenuFolder"
|
|
CreateShortcut "$SMPROGRAMS\$StartMenuFolder\Andor's Trail Content Studio.lnk" "$INSTDIR\ATCS.cmd" "" "$INSTDIR\ATCS.ico"
|
|
CreateShortcut "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_END
|
|
|
|
SectionEnd
|
|
|
|
Section uninstall
|
|
|
|
Delete "$INSTDIR\lib\jide-oss.jar"
|
|
Delete "$INSTDIR\lib\ui.jar"
|
|
Delete "$INSTDIR\lib\junit-4.10.jar"
|
|
Delete "$INSTDIR\lib\json_simple-1.1.jar"
|
|
Delete "$INSTDIR\lib\AndorsTrainer_v${TRAINER_VERSION}.jar"
|
|
Delete "$INSTDIR\lib\ATCS_v${VERSION}.jar"
|
|
Delete "$INSTDIR\lib\rsyntaxtextarea.jar"
|
|
Delete "$INSTDIR\lib\prefuse.jar"
|
|
Delete "$INSTDIR\lib\bsh-2.0b4.jar"
|
|
Delete "$INSTDIR\lib\jsoup-1.10.2.jar"
|
|
RMDir "$INSTDIR\lib\"
|
|
Delete "$INSTDIR\ATCS.ico"
|
|
Delete "$INSTDIR\ATCS.cmd"
|
|
Delete "$INSTDIR\ATCS.env.bat"
|
|
|
|
Delete "$INSTDIR\Uninstall.exe"
|
|
|
|
RMDir "$INSTDIR"
|
|
|
|
!insertmacro MUI_STARTMENU_GETFOLDER "ATCS" $StartMenuFolder
|
|
|
|
Delete "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk"
|
|
Delete "$SMPROGRAMS\$StartMenuFolder\Andor's Trail Content Studio.lnk"
|
|
RMDir "$SMPROGRAMS\$StartMenuFolder"
|
|
|
|
SectionEnd
|
|
|
|
|
|
Function GetJRE
|
|
;
|
|
; Find JRE (javaw.exe)
|
|
; DISABLED 1 - in .\jre directory (JRE Installed with application)
|
|
; 2 - in JAVA_HOME environment variable
|
|
; 3 - in the registry
|
|
; 4 - assume javaw.exe in current dir or PATH
|
|
|
|
Push $R0
|
|
Push $R1
|
|
|
|
;ClearErrors
|
|
;StrCpy $R0 "$EXEDIR\jre\bin\javaw.exe"
|
|
;IfFileExists $R0 JreFound
|
|
;StrCpy $R0 ""
|
|
|
|
ClearErrors
|
|
ReadEnvStr $R0 "JAVA_HOME"
|
|
StrCpy $R0 "$R0\bin\${JAVA_BIN}.exe"
|
|
IfErrors 0 JreFound
|
|
|
|
ClearErrors
|
|
ReadRegStr $R1 HKLM "SOFTWARE\JavaSoft\Java Runtime Environment" "CurrentVersion"
|
|
ReadRegStr $R0 HKLM "SOFTWARE\JavaSoft\Java Runtime Environment\$R1" "JavaHome"
|
|
StrCpy $R0 "$R0\bin\${JAVA_BIN}.exe"
|
|
|
|
IfErrors 0 JreFound
|
|
StrCpy $R0 "${JAVA_BIN}.exe"
|
|
|
|
JreFound:
|
|
Pop $R1
|
|
Exch $R0
|
|
FunctionEnd
|