mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-06-03 21:53:48 -04:00
Where --info-wcp shows file counts per category, this drills into
per-extension byte costs so users can spot what's bloating an
archive before shipping:
wowee_editor --info-pack-budget custom_zones/MyZone.wcp
WCP budget: custom_zones/MyZone.wcp
total: 47 file(s), 2.34 MB
ext count bytes KB share
.whm 4 1683456 1644.0 70.3%
.wob 3 451200 440.6 18.8%
.wom 12 163840 160.0 6.8%
.json 8 85120 83.1 3.6%
.woc 1 12672 12.4 0.5%
Sorted by bytes descending so the heaviest contributors surface
first. Useful for:
- Spotting accidental .glb/.obj inclusion in shipping packs
(`--pack-wcp` should run after `--strip-zone` to keep
derived outputs out)
- Capacity budgeting when targeting a max-pack-size
- Comparing pre/post compression ratios
Pairs with --info-wcp (counts), --list-wcp (full file list),
--diff-wcp (compare two packs), --info-pack-budget (this one,
byte costs).
Verified on a freshly-mvp-zone packed WCP: 6 files / 0.17 MB
correctly broken down (whm 84%, wot 14.9%, json 1.1%).