161 lines
6.0 KiB
Python
161 lines
6.0 KiB
Python
#!/usr/bin/env python3
|
|
import hashlib
|
|
import json
|
|
import os
|
|
import pathlib
|
|
import shutil
|
|
import sys
|
|
import tempfile
|
|
|
|
import bpy
|
|
|
|
|
|
ARMATURE_NAME = "WebGapArmatureRevealArmature"
|
|
OBJECT_NAME = "WebGapArmatureRevealObject"
|
|
REVEAL_BONE = "WebGapArmatureRevealHidden"
|
|
OTHER_BONE = "WebGapArmatureRevealOther"
|
|
|
|
|
|
def ensure_edit_mode():
|
|
obj = bpy.data.objects.get(OBJECT_NAME)
|
|
armature = bpy.data.armatures.get(ARMATURE_NAME)
|
|
if armature is None or obj is None or obj.type != "ARMATURE" or obj.data != armature:
|
|
raise RuntimeError("armature.reveal fixture is missing")
|
|
bpy.context.view_layer.objects.active = obj
|
|
obj.select_set(True)
|
|
if obj.mode != "EDIT":
|
|
bpy.ops.object.mode_set(mode="EDIT")
|
|
return armature
|
|
|
|
|
|
def bone_report(bone):
|
|
return {
|
|
"name": bone.name,
|
|
"selected": bool(bone.select),
|
|
"hidden": bool(bone.hide),
|
|
"selectHead": bool(bone.select_head),
|
|
"selectTail": bool(bone.select_tail),
|
|
"parent": bone.parent.name if bone.parent else None,
|
|
"connected": bool(bone.use_connect),
|
|
"head": [round(value, 6) for value in bone.head],
|
|
"tail": [round(value, 6) for value in bone.tail],
|
|
}
|
|
|
|
|
|
def state_report():
|
|
armature = ensure_edit_mode()
|
|
return {
|
|
"object": OBJECT_NAME,
|
|
"armature": ARMATURE_NAME,
|
|
"activeBone": armature.edit_bones.active.name if armature.edit_bones.active else None,
|
|
"bones": [bone_report(bone) for bone in armature.edit_bones],
|
|
}
|
|
|
|
|
|
def stable_state(state):
|
|
return {
|
|
"object": state["object"],
|
|
"armature": state["armature"],
|
|
"activeBone": state["activeBone"],
|
|
"bones": sorted(
|
|
[
|
|
{key: bone[key] for key in ("name", "selected", "hidden", "parent", "connected", "head", "tail")}
|
|
for bone in state["bones"]
|
|
],
|
|
key=lambda bone: bone["name"],
|
|
),
|
|
}
|
|
|
|
|
|
def validate_input(before):
|
|
by_name = {bone["name"]: bone for bone in before["bones"]}
|
|
if set(by_name) != {REVEAL_BONE, OTHER_BONE}:
|
|
raise RuntimeError(f"unexpected armature.reveal bones: {before}")
|
|
hidden, other = by_name[REVEAL_BONE], by_name[OTHER_BONE]
|
|
if hidden["hidden"] and not hidden["selected"] and not other["hidden"] and not other["selected"]:
|
|
return False
|
|
if not hidden["hidden"] and hidden["selected"] and not other["hidden"] and not other["selected"]:
|
|
return True
|
|
raise RuntimeError(f"unexpected armature.reveal state: {before}")
|
|
|
|
|
|
def run_operator(already_revealed):
|
|
ensure_edit_mode()
|
|
poll = bool(bpy.ops.armature.reveal.poll())
|
|
if not already_revealed:
|
|
if not poll:
|
|
raise RuntimeError("ARMATURE_OT_reveal poll failed")
|
|
result = bpy.ops.armature.reveal(select=True)
|
|
if result != {"FINISHED"}:
|
|
raise RuntimeError(f"ARMATURE_OT_reveal returned {result}")
|
|
return poll, not already_revealed
|
|
|
|
|
|
def validate_after(after):
|
|
by_name = {bone["name"]: bone for bone in after["bones"]}
|
|
hidden, other = by_name[REVEAL_BONE], by_name[OTHER_BONE]
|
|
if hidden["hidden"] or not hidden["selected"]:
|
|
raise RuntimeError(f"armature.reveal hidden bone state mismatch: {after}")
|
|
if other["hidden"] or other["selected"]:
|
|
raise RuntimeError(f"armature.reveal changed independent bone: {after}")
|
|
if hidden["head"] != [-1.0, 0.0, 0.0] or hidden["tail"] != [-1.0, 1.0, 0.0]:
|
|
raise RuntimeError(f"armature.reveal changed revealed bone geometry: {after}")
|
|
if other["head"] != [1.0, 0.0, 0.0] or other["tail"] != [1.0, 1.0, 0.0]:
|
|
raise RuntimeError(f"armature.reveal changed independent geometry: {after}")
|
|
|
|
|
|
def main():
|
|
arguments = sys.argv[sys.argv.index("--") + 1 :]
|
|
if len(arguments) != 2:
|
|
raise SystemExit(
|
|
"usage: blender -b --factory-startup --python check-action-armature-reveal-desktop.py -- FIXTURE REPORT"
|
|
)
|
|
fixture, output = (pathlib.Path(value).resolve() for value in arguments)
|
|
bpy.ops.wm.open_mainfile(filepath=str(fixture), load_ui=False)
|
|
before = state_report()
|
|
already_revealed = validate_input(before)
|
|
poll, changed = run_operator(already_revealed)
|
|
after = state_report()
|
|
validate_after(after)
|
|
|
|
bpy.ops.object.mode_set(mode="OBJECT")
|
|
descriptor, temporary = tempfile.mkstemp(prefix="m16-armature-reveal-reopen-", suffix=".blend")
|
|
os.close(descriptor)
|
|
temporary_path = pathlib.Path(temporary)
|
|
try:
|
|
bpy.ops.wm.save_as_mainfile(filepath=str(temporary_path), check_existing=False, compress=True)
|
|
bpy.ops.wm.open_mainfile(filepath=str(temporary_path), load_ui=False)
|
|
reopened = state_report()
|
|
if stable_state(reopened) != stable_state(after):
|
|
raise RuntimeError(f"armature.reveal save/reopen drift: {after} != {reopened}")
|
|
shutil.copyfile(temporary_path, fixture)
|
|
report = {
|
|
"schemaVersion": 1,
|
|
"task": "M16-GAP-00248",
|
|
"operation": "ARMATURE_REVEAL_DESKTOP",
|
|
"fixture": str(fixture),
|
|
"fixtureSha256": hashlib.sha256(fixture.read_bytes()).hexdigest(),
|
|
"before": before,
|
|
"after": reopened,
|
|
"revealedBone": REVEAL_BONE,
|
|
"select": True,
|
|
"poll": poll,
|
|
"operatorStatus": "FINISHED" if changed else "SKIPPED_ALREADY_APPLIED",
|
|
"mainMutation": "HIDDEN_BONE_REVEALED_AND_SELECTED" if changed else "HIDDEN_BONE_ALREADY_REVEALED",
|
|
"saveReopen": "EXACT",
|
|
"blenderVersion": bpy.app.version_string,
|
|
}
|
|
output.parent.mkdir(parents=True, exist_ok=True)
|
|
output.write_text(json.dumps(report, indent=2, sort_keys=True) + "\n", encoding="utf-8")
|
|
print(f"armature-reveal-desktop-ok revealed={REVEAL_BONE} select=true saveReopen=exact")
|
|
finally:
|
|
temporary_path.unlink(missing_ok=True)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
main()
|
|
except Exception as error:
|
|
print(f"armature-reveal-desktop-failed: {error}")
|
|
raise SystemExit(1)
|