ofp:file_formats:pbo
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ofp:file_formats:pbo [2007/07/09 01:18] – created pbo initial page snakeman | ofp:file_formats:pbo [2024/07/31 12:51] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== PBO File Format ====== | + | ====== |
+ | |||
+ | [[https:// | ||
+ | |||
+ | **Operation Flashpoint (OFP)** aka ArmA: Cold War Assault (CWA) | ||
PBO file structure and packing method | PBO file structure and packing method | ||
Line 5: | Line 9: | ||
====== Introduction ====== | ====== Introduction ====== | ||
- | A pbo file originally meant ' | + | A pbo file originally meant ' |
A **.pbo** file is the output produced by the Mission Editor when ' | A **.pbo** file is the output produced by the Mission Editor when ' | ||
Line 28: | Line 32: | ||
- a checksum (elite) or a signature key (ArmA) | - a checksum (elite) or a signature key (ArmA) | ||
- | The header defines each file contained in the pbo, its size, date, name, whether it's compressed, and where it ' | + | The header defines each file contained in the pbo, its size, date, name, whether it's compressed, and where it ' |
However, note that there is no provision for, and no ability to, store empty folders. Folders as such are indicated simply by being part of the filename. There are no, folder entries, and consequently, | However, note that there is no provision for, and no ability to, store empty folders. Folders as such are indicated simply by being part of the filename. There are no, folder entries, and consequently, | ||
Line 43: | Line 47: | ||
Asciiz | Asciiz | ||
// '' | // '' | ||
- | //Zero length filenames (' | + | //Zero length filenames (' |
- | // Other fields in the last entry are filled by zero bytes. | + | // Other fields in the last entry are filled by zero bytes. |
. | . | ||
ulong | ulong | ||
Line 50: | Line 54: | ||
// | // | ||
ulong | ulong | ||
- | // Packed: Size of file after unpacking. | + | // Packed: Size of file after unpacking. |
// This value is needed for byte boundary unpacking | // This value is needed for byte boundary unpacking | ||
// since unpacking itself can lead to bleeding of up | // since unpacking itself can lead to bleeding of up | ||
Line 56: | Line 60: | ||
ulong | ulong | ||
ulong | ulong | ||
- | ulong | + | ulong |
// This is also the file size when **not** packed | // This is also the file size when **not** packed | ||
}; | }; | ||
Line 70: | Line 74: | ||
- End of header | - End of header | ||
- | An end of header is (of course) mandatory. It is normally indicated by all other entries also being zero in the struct. However, a sometimes seen case is a ' | + | An end of header is (of course) mandatory. It is normally indicated by all other entries also being zero in the struct. However, a sometimes seen case is a ' |
The truth of the matter is that it doesn' | The truth of the matter is that it doesn' | ||
Line 176: | Line 180: | ||
Data compression in ofp is a mild, but effective, form of run length encoding, allowing (up to) 4k of previous data to repeat itself. | Data compression in ofp is a mild, but effective, form of run length encoding, allowing (up to) 4k of previous data to repeat itself. | ||
- | Compression is indicated when a signature of 0x43707273 **and** the filesizes do not match in the entry. | + | Compression is indicated when a signature of 0x43707273 **and** the filesizes do not match in the entry. |
The following code __also__ applies to the packing method employed in wrp OPWR files which have no header info simply a block of known output length that must be decoded. | The following code __also__ applies to the packing method employed in wrp OPWR files which have no header info simply a block of known output length that must be decoded. | ||
Line 187: | Line 191: | ||
| | ||
{ | { | ||
- | byte Format; | + | byte Format; |
byte packetdata[...]; | byte packetdata[...]; | ||
} | } | ||
Line 207: | Line 211: | ||
There are three bytes in the block a little further past the format flag that will be passed directly to the output when encountered, | There are three bytes in the block a little further past the format flag that will be passed directly to the output when encountered, | ||
- | In this example, first byte of packetdata | + | In this example, first byte of packetdata |
< | < | ||
For the very last packet in the block, it is almost inevitable that there will be | For the very last packet in the block, it is almost inevitable that there will be | ||
- | | + | |
- | known from the Entry. You cannot rely on the ignored bits in the format flag (up to seven | + | known from the Entry. You cannot rely on the ignored bits in the format flag (up to seven |
of them) to be any particular value (0 or 1). | of them) to be any particular value (0 or 1). | ||
</ | </ | ||
Line 238: | Line 242: | ||
</ | </ | ||
- | With the values of rpos and rlen there are three basic situations possible: | + | With the values of rpos and rlen there are three basic situations possible: |
< | < | ||
rpos + rlen < FL // bytes to copy are within the existing reconstructed data | rpos + rlen < FL // bytes to copy are within the existing reconstructed data | ||
- | block is added to the end of the file, giving a new length of FL = FL + rlen. | + | block is added to the end of the file, giving a new length of FL = FL + rlen. |
</ | </ | ||
+ | < | ||
rpos + rlen > FL // data to copy exceeds what's available | rpos + rlen > FL // data to copy exceeds what's available | ||
+ | </ | ||
< | < | ||
In this situation the data block has a length of FL – rpos and it is added to the reconstructed | In this situation the data block has a length of FL – rpos and it is added to the reconstructed | ||
- | file until FL = rpos + rlen. | + | file until FL = rpos + rlen. |
</ | </ | ||
Line 264: | Line 270: | ||
====== Bibliography ====== | ====== Bibliography ====== | ||
- | cpbo http:// | + | cpbo https:// |
ofp/file_formats/pbo.1183943898.txt.gz · Last modified: 2007/07/10 09:52 (external edit)