Add File Type - Wwise Stream

Lucas Schwiderski 2024-07-12 15:43:41 +02:00
parent 1c06d63f20
commit d27da47cc9

@ -0,0 +1,37 @@
Seems to be just a pointer into a corresponding `.stream` file in `data/`.
A file header will look like this
```
uint32 lang = 0x0;
byte external = 0x0;
uint32 size = 12;
byte unknown = 1;
uint32 len_data_file_name = 31;
```
`extra_file` will then contain the path of the `.stream` file.
```101editor
//------------------------------------------------
//--- 010 Editor v12.0.1 Binary Template
//
// File: dt_wwise_stream.bt
// Authors: Lucas Schwiderski
// Version:
// Purpose:
// Category: Darktide
// File Mask: *.wwise_stream
// ID Bytes:
// History:
//------------------------------------------------
// Could be the version, but 27 different versions of a file that only contains an offset seems unlikely
uint32 unknown1;
Assert(unknown1 == 0x1b);
// Offset and length of the section within the `.stream` file.
// Since all `.wwise_stream` files seem to get their own `.stream` file, `offset` always ends up being `0`,
// and `length` always ends up matching the `.stream` file's size.
uint32 offset;
uint32 length;
```