ScrapHacks/file_formats/packed.md
Daniel Seiller 8d92f25b8c Lots of Updates (expand for more):
- Started implementing new parser for chunked data
- Started documenting data formats
- Started dissector for network protocol
- Added AI-Graph renderer (converts .pth files to python data you can import into Blender)
- Added Script to convert savefile to JSON
- Added (old) parser for chunked data format
- Added basic parser for LFVF data section (Vertex Data)
- Added script to analyze and filter read trace generated with frida script
- Added various Frida scripts
2020-08-04 18:05:34 +02:00

348 B

Format

struct Packed {
    unsigned char magic[4], // always BFPK
    uint32_t version,
    uint32_t number_of_files,
    struct File {
        uint32_t path_length,
        char path[path_length], // latin1 encoding
        uint32_t data_size,
        uint32_t data_offset
    } files[number_of_files],
    char data[]
}