no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
— | trs:mobile [2017/06/15 05:01] (current) – created zdimension | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Mobile version structures ====== | ||
+ | The mobile (Android, iOS) version, made by Realtech VR, uses some structures. Those were reverse-engineered by Gh0stBlade. | ||
+ | |||
+ | ===== AWB file ===== | ||
+ | |||
+ | <code cpp> | ||
+ | struct AWBFile | ||
+ | { | ||
+ | uint32_t unknown0; | ||
+ | uint32_t numFiles; | ||
+ | uint32_t unknown1; | ||
+ | uint32_t unknown2; | ||
+ | AWBEntry entries[numFiles]; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== AWB entry ===== | ||
+ | |||
+ | <code cpp> | ||
+ | struct AWBEntry | ||
+ | { | ||
+ | uint32_t uncompressedSize; | ||
+ | uint32_t compressedSize; | ||
+ | uint32_t filePathLength; | ||
+ | uint8_t filePath[filePathLength]; | ||
+ | } | ||
+ | </ |