raid-toolkit / raid-toolkit-sdk

MIT License
40 stars 13 forks source link

Unified output #48

Open WOROTH opened 2 years ago

WOROTH commented 2 years ago

There are a few versions of output data for now.

For example:

PyApi: The whole dump returns: arts(v1) + heroes(v1) + stage presets Heroes dump: heroes(v2) with no stage presets

RTK account folder outs: Heroes: heroes(v2) + stage presets Arts: arts(v2)

That's confusing )) I have to keep two decoding methods ( when 'extractor' was still alive it was three )). Is it possible to unify all the stuff?

dnchattan commented 2 years ago

the dump is intended to maintain compatibility with the old RaidExtractor format, while the other types are intended to replace it for newer tools. I will likely deprecate the extractor dump format in favor of the other types.

Also, the data folder output shouldn't be used directly, as it's subject to change internally without notice-- the public APIs are the only ones that will have any guarantee of backwards compatibility with tools.

WOROTH commented 2 years ago

Got it, sir! So, as i understand, the final format is undefined yet?