mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-07 17:43:51 +00:00
Sixth and last commonly-used inspector to gain --json mode. Schema:
{
"a": "path/to/A.wcp", "b": "path/to/B.wcp",
"identical": 1, "changed": 0, "onlyA": 2, "onlyB": 2,
"changedFiles": [
{"path": "foo.dbc", "aSize": 1024, "bSize": 1280}
],
"onlyAFiles": ["Da_30_30.whm", "Da_30_30.wot"],
"onlyBFiles": ["Db_31_31.whm", "Db_31_31.wot"]
}
Exit code matches the human path: 0 if identical, 1 otherwise.
Lets CI verify two builds produce byte-identical archives:
if ! wowee_editor --diff-wcp old.wcp new.wcp --json | jq -e \
'.changed == 0 and .onlyA == 0 and .onlyB == 0'; then
echo "WCP layout drift detected"; exit 1
fi
|
||
|---|---|---|
| .. | ||
| asset_extract | ||
| auth_login_probe | ||
| auth_probe | ||
| blp_convert | ||
| dbc_to_csv | ||
| editor | ||
| asset_pipeline_gui.py | ||
| backup_assets.sh | ||
| diff_classic_turtle_opcodes.py | ||
| gen_opcode_registry.py | ||
| generate_ffx_sdk_vk_permutations.sh | ||
| m2_viewer.py | ||
| opcode_map_utils.py | ||
| validate_opcode_maps.py | ||