Advertisement
TKGP

demonssouls_dflt_dcx.ksy

Jul 5th, 2018
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.99 KB | None | 0 0
  1. meta:
  2.   id: demonssouls_dflt_dcx
  3.   file-extension: dcx
  4.   endian: be
  5.  
  6. seq:
  7.   - id: dcp
  8.     type: dcp
  9.   - id: dcs
  10.     type: dcs
  11.   - id: data
  12.     type: data
  13.     size: dcs.compressed_size
  14.   - id: dca
  15.     type: dca
  16.  
  17. types:
  18.   dcp:
  19.     seq:
  20.       - id: magic
  21.         contents: "DCP\0"
  22.       - id: compression_type
  23.         contents: "DFLT"
  24.       - id: unk1
  25.         type: u4
  26.       - id: unk2
  27.         type: u4
  28.       - id: unk3
  29.         type: u4
  30.       - id: unk4
  31.         type: u4
  32.       - id: unk5
  33.         type: u4
  34.       - id: unk6
  35.         type: u4
  36.        
  37.   dcs:
  38.     seq:
  39.       - id: magic
  40.         contents: "DCS\0"
  41.       - id: uncompressed_size
  42.         type: u4
  43.       - id: compressed_size
  44.         type: u4
  45.  
  46.   data:
  47.     seq:
  48.       - id: version
  49.         contents: [0x78, 0xDA]
  50.       - id: compressed
  51.         size: _parent.dcs.compressed_size - 2
  52.        
  53.   dca:
  54.     seq:
  55.       - id: dca
  56.         contents: "DCA\0"
  57.       - id: compressed_header_size
  58.         type: u4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement