Update README.md

This commit is contained in:
tmpz23 2022-02-02 21:23:21 +01:00 committed by GitHub
parent d8806b5ebe
commit 368ea0e30c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,16 +73,22 @@ sys folder contains AFS system files of the game and generated files needed for
All offsets and indexes are stored in hexadecimal with 0x prefix: 0xabcdef. Use auto when it's possible. All offsets and indexes are stored in hexadecimal with 0x prefix: 0xabcdef. Use auto when it's possible.
#### \[Default\] section #### \[Default\] section
**AFS_MAGIC**: 0x41465300 or 0x41465320 **AFS_MAGIC**: 0x41465300 or 0x41465320
**files_rebuild_strategy**: auto, index, offset or mixed **files_rebuild_strategy**: auto, index, offset or mixed
files_rebuild_strategy is used to organise files (indexes, offsets, packed name if there is a FD) in AFS. The strategy use informations in **afs_rebuild.csv** autogenerated during unpack. 4 strategies are available: files_rebuild_strategy is used to organise files (indexes, offsets, packed name if there is a FD) in AFS. The strategy use informations in **afs_rebuild.csv** autogenerated during unpack. 4 strategies are available:
* auto: Rebuild all files indexes and offsets with packed packed_filename if there is a FD or else unpacked_filename. afs_rebuild.csv indexes and offsets will be ignored. * auto: Rebuild all files indexes and offsets with packed packed_filename if there is a FD or else unpacked_filename. afs_rebuild.csv indexes and offsets will be ignored.
* index: Keep the specified index for designated files. afs_rebuild.csv offsets will be ignored. * index: Keep the specified index for designated files. afs_rebuild.csv offsets will be ignored.
* offset: Keep the specified offset for designated files. afs_rebuild.csv indexes will be ignored. * offset: Keep the specified offset for designated files. afs_rebuild.csv indexes will be ignored.
* mixed: Keep the specified offset or index for afs_rebuild.csv entries where a value is specified. * mixed: Keep the specified offset or index for afs_rebuild.csv entries where a value is specified.
**filename_directory**: True when there is a FD and False when there is none. If set to True then it must have a \[FilenameDirectory\] section. **filename_directory**: True when there is a FD and False when there is none. If set to True then it must have a \[FilenameDirectory\] section.
#### \[FilenameDirectory\] section #### \[FilenameDirectory\] section
**toc_offset_of_fd_offset**: The TOC offset of the FD offset is at the end of the TOC. Some AFS use pad after the offsets/lengths serie. Use auto when it's possible. **toc_offset_of_fd_offset**: The TOC offset of the FD offset is at the end of the TOC. Some AFS use pad after the offsets/lengths serie. Use auto when it's possible.
**fd_offset**: The FD is at the end of the AFS. Use auto when it's possible. **fd_offset**: The FD is at the end of the AFS. Use auto when it's possible.
**FD_last_attribute_type**: The type of the last 4 bytes of each FD entries. 4 values are available: **FD_last_attribute_type**: The type of the last 4 bytes of each FD entries. 4 values are available:
* length: Use file length. * length: Use file length.
* offset-length: Use offset length series. * offset-length: Use offset length series.