Kelsidavis-WoWee/tools/asset_extract
Kelsi 5ed2008621 feat(extract): emit open-format side-files (BLP→PNG, DBC→JSON)
The asset_extract tool now optionally writes wowee open-format
copies next to each extracted proprietary file:
  --emit-png      foo.blp → foo.png
  --emit-json-dbc foo.dbc → foo.json
  --emit-open     shortcut for both

Originals are left untouched, so private servers (AzerothCore,
TrinityCore) that load from the manifest's .blp/.dbc paths
continue to work unchanged. The wowee runtime / editor can now
consume the open formats directly without an extra conversion pass.

Implementation:
- New tools/asset_extract/open_format_emitter.{hpp,cpp} encapsulates
  the post-extract walk + per-file conversion.
- BLP→PNG uses BLPLoader::load + stbi_write_png with the same
  dimension/buffer-size sanity guards the editor's texture exporter
  applies.
- DBC→JSON mirrors the editor's DBCExporter::exportAsJson schema
  (string/float/uint heuristic) so the runtime DBC overlay loader
  can consume the output drop-in.
2026-05-06 10:23:32 -07:00
..
extractor.cpp feat(extract): emit open-format side-files (BLP→PNG, DBC→JSON) 2026-05-06 10:23:32 -07:00
extractor.hpp feat(extract): emit open-format side-files (BLP→PNG, DBC→JSON) 2026-05-06 10:23:32 -07:00
main.cpp feat(extract): emit open-format side-files (BLP→PNG, DBC→JSON) 2026-05-06 10:23:32 -07:00
manifest_writer.cpp Replace MPQ runtime with loose file asset system 2026-02-12 20:32:14 -08:00
manifest_writer.hpp Replace MPQ runtime with loose file asset system 2026-02-12 20:32:14 -08:00
open_format_emitter.cpp feat(extract): emit open-format side-files (BLP→PNG, DBC→JSON) 2026-05-06 10:23:32 -07:00
open_format_emitter.hpp feat(extract): emit open-format side-files (BLP→PNG, DBC→JSON) 2026-05-06 10:23:32 -07:00
path_mapper.cpp refactor path mapper 2026-04-04 14:34:23 -03:00
path_mapper.hpp refactor path mapper 2026-04-04 14:34:23 -03:00