Difference between revisions of "SA SCM"

From GTAMods Wiki
Jump to navigation Jump to search
(Renewed the whole article according to proper symbols.)
m (The build number may be a thing.)
Line 24: Line 24:
 
  (02 00 01)h + 32-bit offset    '''GOTO''' next header chunk{{ref|2}}
 
  (02 00 01)h + 32-bit offset    '''GOTO''' next header chunk{{ref|2}}
 
  byte                          Chunk index (always 3, unused at runtime)
 
  byte                          Chunk index (always 3, unused at runtime)
   32-bit int                  Unknown (file offset of '''AAA''' test script, designed to be 0?{{ref|3}} Unused at runtime)
+
   32-bit int                  Unknown (unused at runtime)
 
  (02 00 01)h + 32-bit offset    '''GOTO''' main script space{{ref|2}}
 
  (02 00 01)h + 32-bit offset    '''GOTO''' main script space{{ref|2}}
 
  byte                          Chunk index (always 4, unused at runtime)
 
  byte                          Chunk index (always 4, unused at runtime)
 
   32-bit int                  Size of global variable space (unused at runtime)
 
   32-bit int                  Size of global variable space (unused at runtime)
   32-bit int                  Unknown (some checksum related to streamed script array? Unused at runtime)
+
   32-bit int                  Build number{{ref|3}} (at least 1, unused at runtime)
 
  (Main script space)            Space of main script (equal to size defined earlier)
 
  (Main script space)            Space of main script (equal to size defined earlier)
 
  (Mission scripts space)        Space of mission scripts (each one is stored at file offsets defined earlier)
 
  (Mission scripts space)        Space of mission scripts (each one is stored at file offsets defined earlier)
  (Streamed scripts space)      Space of streamed scripts (as above but external and non-contiguous for script multifile)
+
  (Streamed scripts space)      Space of streamed scripts (as above but external and discontiguous for script multifile)
  
 
{{note|1}} '''AAA''' streamed script is apparently a test script, meaningful for debug builds, which contains no intermediate code and is supposed to store the 8 bytes coming with the sixth header chunk of the script multifile relevant to match the [[Cd image]] where all streamed scripts have been compiled and archived into (notoriously in [[script.img]]). It is advisable to compare data on the basis of the script size rather than of a fixed length (the way it might have been designed to);
 
{{note|1}} '''AAA''' streamed script is apparently a test script, meaningful for debug builds, which contains no intermediate code and is supposed to store the 8 bytes coming with the sixth header chunk of the script multifile relevant to match the [[Cd image]] where all streamed scripts have been compiled and archived into (notoriously in [[script.img]]). It is advisable to compare data on the basis of the script size rather than of a fixed length (the way it might have been designed to);
  
{{note|2}} The header chunk is fetched as normal code and may be mandatory only in script multifile if streamed scripts are present or, even more strict, if '''AAA''' test script is compiled;
+
{{note|2}} The header chunk is fetched as normal code and may be mandatory only in script multifile;
  
{{note|3}} A hint or what matters to get the test script filename ('''AAA''' might be purely conventional). If the file offset does not match the one of the very last streamed script, a binary search of the entire array with an element less could be performed.
+
{{note|3}} The field is not confirmable at this time. The official compiler may keep track of the build number in a text file, say <code>build.txt</code>, which is updated (or created if unexisting) while compiling.
  
 
[[Category:Mission Script]] [[Category:File Formats]]
 
[[Category:Mission Script]] [[Category:File Formats]]

Revision as of 17:12, 24 August 2020

(02 00 01)h + 32-bit offset    GOTO next header chunk
byte                           Target game ('s' - San Andreas for SA, unused at runtime)
  (Global variable space)      Space for global variable storage (first global offset is 8)
(02 00 01)h + 32-bit offset    GOTO next header chunk
byte                           Chunk index (always 0, unused at runtime)
  32-bit int                   Number of used objects (at least 1)
  (Used object array)          24-byte object name * number of used objects (first object name is empty and therefore unused)
(02 00 01)h + 32-bit offset    GOTO next header chunk (third header chunk is compiled only in script multifile)
byte                           Chunk index (always 1, unused at runtime)
  32-bit int                   Main script size
  32-bit int                   Largest mission script size
  16-bit int                   Number of mission scripts (200 in total)
  16-bit int                   Number of exclusive mission scripts (3 in total)
  32-bit int                   Largest number of mission script local variables
  (Multi script array)         32-bit offset * number of mission scripts
(02 00 01)h + 32-bit offset    GOTO next header chunk
byte                           Chunk index (always 2, unused at runtime)
  32-bit int                   Largest streamed script size
  32-bit int                   Number of streamed scripts
  (Streamed script array)      28-byte structure * number of streamed scripts (last one is AAA test script[1])
    20 bytes                   Filename (without extension)
    32-bit offset              File offset (from script multifile end onwards, mostly leftover)
    32-bit int                 Script size
(02 00 01)h + 32-bit offset    GOTO next header chunk[2]
byte                           Chunk index (always 3, unused at runtime)
  32-bit int                   Unknown (unused at runtime)
(02 00 01)h + 32-bit offset    GOTO main script space[2]
byte                           Chunk index (always 4, unused at runtime)
  32-bit int                   Size of global variable space (unused at runtime)
  32-bit int                   Build number[3] (at least 1, unused at runtime)
(Main script space)            Space of main script (equal to size defined earlier)
(Mission scripts space)        Space of mission scripts (each one is stored at file offsets defined earlier)
(Streamed scripts space)       Space of streamed scripts (as above but external and discontiguous for script multifile)

^ AAA streamed script is apparently a test script, meaningful for debug builds, which contains no intermediate code and is supposed to store the 8 bytes coming with the sixth header chunk of the script multifile relevant to match the Cd image where all streamed scripts have been compiled and archived into (notoriously in script.img). It is advisable to compare data on the basis of the script size rather than of a fixed length (the way it might have been designed to);

^ The header chunk is fetched as normal code and may be mandatory only in script multifile;

^ The field is not confirmable at this time. The official compiler may keep track of the build number in a text file, say build.txt, which is updated (or created if unexisting) while compiling.