2016-11-06 06_26_55-00025.bin.png
2016-11-06 06_21_56-C__Users_Aybe_Documents_GitHub_WipeoutFusion_WadPure_bin_Debug_00000.bin - N.png
2016-11-06 06_19_58-Debug.png
2016-11-06 06_19_44-00077.bin.png
WadPure.zip
TL;DR
The format is slightly different, structure is flat however (no folders), a breeze to extract It works on the 3 wads, I wrote this program very quickly so it's not pretty but it works. It will extract a wad in the same folder as it is, so make sure to move the extracted content to a folder before you extract another wad.
With some batch like below, it'll move out all things in separate folders:
Code:
@echo off
mkdir data
mkdir fe
mkdir fedata
wadpure -d data.wad
move *.bin data
wadpure -d fe.wad
move *.bin fe
wadpure -d fedata.wad
move *.bin fedata
It should work on your pc but you'll probably need .NET 4.5.1 first.
Now for the content,
- the large files look like 3d model data,
- the DRM files are garbage -> an unknown format or possibly encrypted
- there are many xml files, textures, VAGs and so on
The most interesting part would be to figure out the higher-level layer, i.e. how these relate to each other.
Here's another tool I wrote quickly, that'll detect some images and output PNGs (only looks for 256 color ones, not the raw 24 bpp ones, see previous sentence):
PurePic.zip
Code:
PurePic.exe -w "*.bin"
Most are read, but some are the dreaded twizzled textures I couldn't read on WOF.
Sorry but I don't really have the time to dig deeper on this game, I'm spending all of my free time with http://www.wipeoutzone.com/forum/sho...ecial-Edition-!
Cheers !