OBD:Raw and separate file formats

From OniGalore
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Click to return to the main OBD page.
You should read the Instance file format page before this one.
You can read about the specific types of resources in the binary data files after this page.

In Windows retail Oni, raw files (ending in ".raw") contain chunks of data which are indexed by instance files and loaded on demand. In Mac Oni and the Windows demo, separate files (ending in ".sep") contain some of the data formerly contained by raw files (see "Mac vs. Windows" below for details). Thus, data offsets given in instance files' instance descriptors may apply to a raw file in Windows and a separate file on Macs.

Null offset

At the start of the raw or separate file, there are 32 bytes of garbage. That way, all the data chunks start at offsets greater than 0. If that wasn't the case, the null value in memory of a pointer to raw/separate data would be ambiguous.

Alignment

Although this may not be strictly required by the engine, the offsets of all original chunks start at 32-byte multiples. This implies a slight loss of space, but the storage is somewhat tidier that way. However, the data is not actually packed as closely as possible while maintaining alignment, as detailed under the "Gaps" section.

Gaps

The raw data is not packed as a compact sequence of 32-byte-aligned chunks. There are gaps of various sizes in every level, totalling 25 megabytes for the whole game. Those gaps seem to be the same across all versions, even if other content differs. The content of those gaps is detailed below.

Skybox mipmaps

Zero-filled gaps occur in every level after each of the 5 skybox textures. Their size matches that required to store mipmaps of the preceding texture.

Orphaned chunks

Those seem to be mostly .raw parts of existing resources, orphaned at some point by the appending of a new version to the .raw. The pointer in the .dat got redirected to the new version, and the old version was lost track of. So, these are either duplicates of existing resources, or obsolete versions reflecting development.

OSBD

A few of those in level 0. Re-authored duplicates of existing OSAm/OSGr pairs: for every pair, there are (minor) changes either in the OSAm or in the OSGr.

SNDD

Those make up the most of the gap space. Some of the sounds were actually re-authored (higher sample rates, shorter durations...). Most of them, however, are duplicates, apparently due to a bug in Bungie's packing system.

Differences across versions

Language versions

Most localized (non-English) versions of Oni have new speech dubbed in. This will result in large differences in the SNDD and SUBT files.

Extra level 0 textures

Not all releases of Oni have the same data in them. The level0_Final.raw of older versions stores a few megabytes worth of "obsolete" textures.

Texture compression

Textures can be stored with compression, and the amount of textures which are compressed in a given version ranges from "most" to "almost none". This leads to dramatic variations in size for the .raw (over 10% of the total amount of game content).

Mac vs. Windows

Storage

The following table illustrates how some data was moved from raw files to separate files after the Windows version was finalized and before the Mac version was finalized. See History of Mac Oni for the reason why the Windows demo uses separate files like Mac Oni does.

Windows retail Mac demo, Mac retail,
and Windows demo
.raw
AGDB, AKVA, BINA, OSBD,
SNDD, SUBT, TRAM, TXMP
AKVA, SNDD, SUBT, TRAM
.sep
BINA, OSBD, TXMP

AGDB resources are omitted from Macs and the Windows demo because this data is unused by Oni.

Sounds

The SNDD resources in the instance files (which are just wrappers for the actual sound data in the raw files) are 32 bytes long on the Mac, and 96 bytes long in Windows. This is because of the difference in the format of the core data: Macs store sound data in the AIFF format, and Windows uses the WAV format.