falcon4:tools:nsis_installer
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
falcon4:tools:nsis_installer [2007/07/12 06:56] – created nsis_installer initial page snakeman | falcon4:tools:nsis_installer [2024/07/31 10:25] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== NSIS Installer ====== | + | ====== |
- | **NSIS Installer** | + | [[https:// |
+ | |||
+ | **Falcon 4 Theater | ||
+ | |||
+ | The NSIS installer is quite nice as its free to download and very light weight, its script based so you can tweak the installer to do pretty much anything you want. Sure the script at first looks pretty intimidating, | ||
Here in PMC Tactical we use NSIS installer to build our theater installers, also FreeFalcon/ | Here in PMC Tactical we use NSIS installer to build our theater installers, also FreeFalcon/ | ||
The scripting is relatively easy for a non-coder to figure out, but is still powerful and flexible. It has a strong user community and good open-source support. It also is " | The scripting is relatively easy for a non-coder to figure out, but is still powerful and flexible. It has a strong user community and good open-source support. It also is " | ||
+ | |||
+ | |||
+ | ====== Theater Subdirs ====== | ||
+ | |||
+ | First you should setup your theater directories in preparations for the NSIS to build the installer. It doesn' | ||
+ | |||
+ | In the " | ||
+ | |||
+ | In the utilities dir you place the utils, these are lstupdate.exe, | ||
+ | |||
+ | So in short, you have directory of | ||
+ | < | ||
+ | Theater_src_DesertStorm\Theaters\DesertStorm\ | ||
+ | </ | ||
+ | Which would be your root directory for the ODS theater (later in this doc as we refer to root, this is the dir), in this root directory you have the art, campaign, objects and terrdata directories. Also there is theater selection TDF, TGA files and any readme files you wish the users to see (in our case, its the EULA.txt and version.txt). | ||
+ | |||
+ | |||
+ | ====== Art dir ====== | ||
+ | |||
+ | Art directory is for the user interface files. Our base system includes the art\resource\ directory which contains two UI files, these are campmap and select which in our experience are universal for all F4 versions. As you need to include the individual UI files for different F4 versions in the art-AF, art-OF and art-RV directories, | ||
+ | |||
+ | As seen here | ||
+ | < | ||
+ | art\resource\ | ||
+ | art\art-AF\ | ||
+ | art\art-OF\ | ||
+ | art\art-RV\ | ||
+ | </ | ||
+ | |||
+ | When we examine the individual directories more we'll find these following subdirs. | ||
+ | |||
+ | **art-AF\** | ||
+ | < | ||
+ | art\art-AF\campaign\ | ||
+ | art\art-AF\main\ | ||
+ | art\art-AF\resource\ | ||
+ | </ | ||
+ | |||
+ | Notice how art-OF\ requires yet another " | ||
+ | |||
+ | **art-OF\** | ||
+ | < | ||
+ | art\art-OF\art\main\ | ||
+ | art\art-OF\art\resource\ | ||
+ | </ | ||
+ | |||
+ | **art-RV\** | ||
+ | < | ||
+ | art\art-RV\main\ | ||
+ | art\art-RV\resource\ | ||
+ | </ | ||
+ | |||
+ | You should refer to our [[falcon4: | ||
+ | |||
+ | |||
+ | ====== Campaign dir ====== | ||
+ | |||
+ | Campaign dir includes the common files used for all campaigns, as well the individual campaign directory files required for all possible campaigns. The sub directories in main campaign dir are as follows. | ||
+ | |||
+ | Campaign subdirs for our DesertStorm theater | ||
+ | < | ||
+ | campaign\common\ | ||
+ | campaign\common-AF\ | ||
+ | campaign\common-OF\ | ||
+ | campaign\common-RV\ | ||
+ | campaign\desertstorm1\ | ||
+ | campaign\desertstorm2\ | ||
+ | </ | ||
+ | |||
+ | When we look closer, we find that the common\ directory contains these following files: instant.cam, | ||
+ | |||
+ | In the common-AF\, common-OF\ and common-RV\ dirs we have files for each specific F4 version, in this case strings.idx/ | ||
+ | |||
+ | Finally in the desertstorm1\ and desertstorm2\ dirs we have the specific files required for each campaign, these are usually save0.cam, save0.tri and save1/2 also. | ||
+ | |||
+ | You should refer to our [[falcon4: | ||
+ | |||
+ | |||
+ | ====== Objects dir ====== | ||
+ | |||
+ | To install new objects, objects and including new skins to your theater, you need to create **objects* subdir into the root. In the objects dir create AF, OF and RV sub directories. In these subdirs you place the edited database files. | ||
+ | |||
+ | As seen here | ||
+ | < | ||
+ | objects\AF\FALCON4.WLD | ||
+ | objects\OF\FALCON4.WLD | ||
+ | objects\RV\FALCON4.WLD | ||
+ | </ | ||
+ | |||
+ | In this case the falcon4.wld file is the edited loadouts for aircrafts. | ||
+ | |||
+ | You should refer to our [[falcon4: | ||
+ | |||
+ | |||
+ | ====== Terrdata dir ====== | ||
+ | |||
+ | Terrdata directory is where the terrain\ and texture\ sub directories are located. | ||
+ | |||
+ | As you can see | ||
+ | < | ||
+ | terrdata\terrain\ | ||
+ | terrdata\texture\ | ||
+ | </ | ||
+ | |||
+ | Of course if your theater uses only default korean tiles, you dont need texture\ subdir. | ||
+ | |||
+ | In the terrain\ sub dir you find theater.L2/ | ||
+ | |||
+ | In the texture\ sub dir (if you need it) you find fartiles.pal, | ||
+ | |||
====== Example Script ====== | ====== Example Script ====== | ||
Line 12: | Line 126: | ||
< | < | ||
- | !define TNAME " | + | !define TNAME " |
- | !define FRIENDLYNAME "PMC Vietnam Theater Installer" | + | !define FRIENDLYNAME "PMC Vietnam Theater Installer" |
- | !define APP " | + | !define APP " |
- | ;for some reason, this has to be #.#.#.# but I usually change the name after I build the exe | + | ;for some reason, this has to be #.#.#.# but I usually change the name after I build the exe |
- | !define VER " | + | !define VER " |
- | ; these establish some things about the installer the most important one to me is the outfile | + | ; these establish some things about the installer the most important one to me is the outfile |
- | Name " | + | Name " |
- | ; outfile is the name of the installer. | + | ; outfile is the name of the installer. |
- | OutFile " | + | OutFile " |
- | Caption " | + | Caption " |
- | ; these VI definitions are what is displayed if you hover the mouse over the icon | + | ; these VI definitions are what is displayed if you hover the mouse over the icon |
- | VIProductVersion " | + | VIProductVersion " |
- | VIAddVersionKey ProductName " | + | VIAddVersionKey ProductName " |
- | VIAddVersionKey Comments " | + | VIAddVersionKey Comments " |
- | VIAddVersionKey LegalCopyright "PMC Tactical" | + | VIAddVersionKey LegalCopyright "PMC Tactical" |
- | VIAddVersionKey FileDescription " | + | VIAddVersionKey FileDescription " |
- | VIAddVersionKey FileVersion " | + | VIAddVersionKey FileVersion " |
- | VIAddVersionKey ProductVersion " | + | VIAddVersionKey ProductVersion " |
- | VIAddVersionKey InternalName " | + | VIAddVersionKey InternalName " |
- | ;=== Runtime Switches | + | ;=== Runtime Switches |
- | ; the CRC check is something I use on bigger installers to make sure everything checks out. | + | ; the CRC check is something I use on bigger installers to make sure everything checks out. |
- | CRCCheck On | + | CRCCheck On |
- | ; this makes it more efficient | + | ; this makes it more efficient |
- | AutoCloseWindow True | + | AutoCloseWindow True |
- | ; this is something I use to make sure it uses the LZMA compression, | + | ; this is something I use to make sure it uses the LZMA compression, |
- | SetCompressor lzma | + | SetCompressor lzma |
- | ; branding text is just something that's displayed at the bottom of the installer | + | ; branding text is just something that's displayed at the bottom of the installer |
- | BrandingText "http://tactical.nekromantix.com" | + | BrandingText "https://www.pmctactical.org" |
- | ;=== Includes - this will include the necessary dlls and functions that I use in the installer | + | ;=== Includes - this will include the necessary dlls and functions that I use in the installer |
- | ; MUI 1.67 compatible ------ | + | ; MUI 1.67 compatible ------ |
- | !include " | + | !include " |
- | !include " | + | !include " |
- | !include " | + | !include " |
- | !include " | + | !include " |
- | !include " | + | !include " |
- | ; MUI Settings - the MUI is the Modern UI for NSIS, this section defines its parameters (there are alot more that I don't use) | + | ; MUI Settings - the MUI is the Modern UI for NSIS, this section defines its parameters (there are alot more that I don't use) |
- | !define MUI_ABORTWARNING | + | !define MUI_ABORTWARNING |
- | !define MUI_INSTALLCOLORS / | + | !define MUI_INSTALLCOLORS /windows |
- | ; Welcome page - this is the first page of the installer (I also have a snippet for a splashscreen, | + | ; Welcome page - this is the first page of the installer (I also have a snippet for a splashscreen, |
- | ;!define MUI_WELCOMEFINISHPAGE_BITMAP " | + | ;!define MUI_WELCOMEFINISHPAGE_BITMAP " |
- | ; using the variables means we don't have to remember to change all these when we use the template for another theater | + | ; using the variables means we don't have to remember to change all these when we use the template for another theater |
- | !define MUI_WELCOMEPAGE_TITLE " | + | !define MUI_WELCOMEPAGE_TITLE " |
- | !define MUI_WELCOMEPAGE_TEXT "Setup will install ${FRIENDLYNAME} ${VER} into your Falcon installation." | + | !define MUI_WELCOMEPAGE_TEXT "Setup will install ${FRIENDLYNAME} ${VER} into your Falcon installation." |
- | !insertmacro MUI_PAGE_WELCOME | + | !insertmacro MUI_PAGE_WELCOME |
- | !define MUI_LICENSEPAGE_RADIOBUTTONS | + | !define MUI_LICENSEPAGE_RADIOBUTTONS |
- | !insertmacro MUI_PAGE_LICENSE " | + | !insertmacro MUI_PAGE_LICENSE " |
- | ; Instfiles page | + | ; Instfiles page |
- | !define MUI_FINISHPAGE_NOAUTOCLOSE | + | !define MUI_FINISHPAGE_NOAUTOCLOSE |
- | !insertmacro MUI_PAGE_INSTFILES | + | !insertmacro MUI_PAGE_INSTFILES |
- | ; Finish page - this is the last page people see | + | ; Finish page - this is the last page people see |
- | !define MUI_FINISHPAGE_TITLE " | + | !define MUI_FINISHPAGE_TITLE " |
- | !define MUI_FINISHPAGE_TEXT "Click ' | + | !define MUI_FINISHPAGE_TEXT "Click ' |
- | !insertmacro MUI_PAGE_FINISH | + | !insertmacro MUI_PAGE_FINISH |
- | ; Language files | + | ; Language files |
- | !insertmacro MUI_LANGUAGE " | + | !insertmacro MUI_LANGUAGE " |
- | ; MUI end ------ | + | ; MUI end ------ |
- | ; now we're ready for the actual installer! | + | ; now we're ready for the actual installer! |
- | Section " | + | Section " |
- | ; F4registry check - if no F4 registry, it kicks to the end - the $0 is a variable that holds the -1 (not found) or 0 (found) | + | ; F4registry check - if no F4 registry, it kicks to the end - the $0 is a variable that holds the -1 (not found) or 0 (found) |
- | ; we can also start to determine which install we have | + | ; we can also start to determine which install we have |
- | ${registry:: | + | ${registry:: |
- | ${registry:: | + | ${registry:: |
- | ; IntCmp compares the integer in $0 with our number (0) and if it is =, it goes to label " | + | ; IntCmp compares the integer in $0 with our number (0) and if it is =, it goes to label " |
- | IntCmp $0 0 F4Exists | + | IntCmp $0 0 F4Exists |
- | IntCmp $1 0 AFInstall | + | IntCmp $1 0 AFInstall |
- | ; this copies the string to $9 - I'm using that as an error label | + | ; this copies the string to $9 - I'm using that as an error label |
- | StrCpy $9 "No appropriate registry found." | + | StrCpy $9 "No appropriate registry found." |
- | Goto Error | + | Goto Error |
F4Exists: | F4Exists: | ||
Line 113: | Line 227: | ||
IfFileExists $0\terrdata\objects\KoreaObj.lod OFFound NoFileFound | IfFileExists $0\terrdata\objects\KoreaObj.lod OFFound NoFileFound | ||
- | NoFileFound: | + | NoFileFound: |
- | StrCpy $9 "No F4 install found." | + | StrCpy $9 "No F4 install found." |
- | Goto Error | + | Goto Error |
- | ; I want to set up a variable to differentiate OF and RV | + | ; I want to set up a variable to differentiate OF and RV |
- | RVFound: | + | RVFound: |
- | ; we'll use this for the lstupdate variable | + | ; we'll use this for the lstupdate variable |
- | StrCpy $8 " | + | StrCpy $8 " |
- | StrCpy $7 " | + | StrCpy $7 " |
- | Goto F4Install | + | Goto F4Install |
- | OFFound: | + | OFFound: |
- | StrCpy $8 " | + | StrCpy $8 " |
- | StrCpy $7 " | + | StrCpy $7 " |
- | Goto F4Install | + | Goto F4Install |
- | AFInstall: | + | AFInstall: |
- | ; get the AF base directory into a variable | + | ; get the AF base directory into a variable |
- | ReadRegStr $0 HKLM " | + | ReadRegStr $0 HKLM " |
- | ; sets the right campaign directory | + | ; sets the right campaign directory |
- | StrCpy $1 " | + | StrCpy $1 " |
- | StrCpy $2 " | + | StrCpy $2 " |
- | StrCpy $8 " | + | StrCpy $8 " |
- | Goto CreateDirs | + | Goto CreateDirs |
- | F4Install: | + | F4Install: |
- | ReadRegStr $0 HKLM " | + | ReadRegStr $0 HKLM " |
- | StrCpy $1 " | + | StrCpy $1 " |
- | StrCpy $2 " | + | StrCpy $2 " |
- | CreateDirs: | + | CreateDirs: |
- | SetOutPath $0 | + | SetOutPath $0 |
CreateDirectory " | CreateDirectory " | ||
CreateDirectory " | CreateDirectory " | ||
Line 175: | Line 289: | ||
CopyFiles " | CopyFiles " | ||
- | ; unpack the theater files | + | ; unpack the theater files |
- | ; this is the subdir in the developer' | + | ; this is the subdir in the developer' |
- | File /r " | + | File /r " |
; common campaign dirs | ; common campaign dirs | ||
Line 229: | Line 343: | ||
; end of falcon version DATABASE & UI | ; end of falcon version DATABASE & UI | ||
- | StrCmp $8 " | + | StrCmp $8 " |
- | StrCpy $9 " | + | StrCpy $9 " |
- | Goto Error | + | Goto Error |
- | F4curTheater: | + | F4curTheater: |
- | ; set current theater to new theater | + | ; set current theater to new theater |
; this reads the specified registry value into $2 for use later | ; this reads the specified registry value into $2 for use later | ||
ReadRegStr $3 HKLM " | ReadRegStr $3 HKLM " | ||
Line 243: | Line 357: | ||
StrCmp $7 " | StrCmp $7 " | ||
- | ; this will be the area where we do stuff that it doesn' | + | ; this will be the area where we do stuff that it doesn' |
- | TheaterAdmin: | + | TheaterAdmin: |
- | SetOutPath $0 | + | SetOutPath $0 |
ExecWait " | ExecWait " | ||
Line 252: | Line 366: | ||
ExecWait " | ExecWait " | ||
- | ; just compress textures if F4 then finish | + | ; just compress textures if F4 then finish |
- | StrCmp $8 " | + | StrCmp $8 " |
- | ExecWait " | + | ExecWait " |
- | MessageBox MB_YESNO "Do you want to make the new theater the current one?" IDYES Finish IDNO OldReg | + | MessageBox MB_YESNO "Do you want to make the new theater the current one?" IDYES Finish IDNO OldReg |
- | OldReg: | + | OldReg: |
- | ${registry:: | + | ${registry:: |
- | Goto Finish | + | Goto Finish |
- | Error: | + | Error: |
- | Messagebox MB_OK $9 | + | Messagebox MB_OK $9 |
- | Finish: | + | Finish: |
SectionEnd | SectionEnd | ||
Line 272: | Line 386: | ||
Sorry for the long code, but thats the whole script we used to build Vietnam theater installer. | Sorry for the long code, but thats the whole script we used to build Vietnam theater installer. | ||
- | Check out our offical [[http://tactical.nekromantix.com/ | + | Check out our offical [[https://www.pmctactical.org/ |
====== Notes ====== | ====== Notes ====== | ||
Homepage of [[http:// | Homepage of [[http:// | ||
+ |
falcon4/tools/nsis_installer.1184223389.txt.gz · Last modified: 2007/07/12 06:56 (external edit)