Continue Blender Web parity task handoff
This commit is contained in:
191
tools/web/check-action-armature-select-less-desktop.py
Normal file
191
tools/web/check-action-armature-select-less-desktop.py
Normal file
@@ -0,0 +1,191 @@
|
||||
#!/usr/bin/env python3
|
||||
import hashlib
|
||||
import json
|
||||
import os
|
||||
import pathlib
|
||||
import shutil
|
||||
import sys
|
||||
import tempfile
|
||||
|
||||
import bpy
|
||||
|
||||
|
||||
ARMATURE_NAME = "WebGapArmatureSelectLessArmature"
|
||||
OBJECT_NAME = "WebGapArmatureSelectLessObject"
|
||||
ROOT_BONE = "WebGapArmatureSelectLessRoot"
|
||||
CHILD_BONE = "WebGapArmatureSelectLessChild"
|
||||
OTHER_BONE = "WebGapArmatureSelectLessOther"
|
||||
|
||||
|
||||
def vector(value):
|
||||
return [round(float(component), 6) for component in value]
|
||||
|
||||
|
||||
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.select_less 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": vector(bone.head),
|
||||
"tail": vector(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) != {ROOT_BONE, CHILD_BONE, OTHER_BONE}:
|
||||
raise RuntimeError(f"unexpected armature.select_less bones: {before}")
|
||||
root, child, other = by_name[ROOT_BONE], by_name[CHILD_BONE], by_name[OTHER_BONE]
|
||||
if (
|
||||
before["activeBone"] == ROOT_BONE
|
||||
and not root["selected"]
|
||||
and root["selectHead"]
|
||||
and not root["selectTail"]
|
||||
and not child["selected"]
|
||||
and other["selected"]
|
||||
and other["selectHead"]
|
||||
and other["selectTail"]
|
||||
):
|
||||
return False
|
||||
if (
|
||||
before["activeBone"] == ROOT_BONE
|
||||
and not root["selected"]
|
||||
and not child["selected"]
|
||||
and other["selected"]
|
||||
and other["selectHead"]
|
||||
and other["selectTail"]
|
||||
):
|
||||
return True
|
||||
raise RuntimeError(f"unexpected armature.select_less state: {before}")
|
||||
|
||||
|
||||
def run_operator(already_selected_less):
|
||||
ensure_edit_mode()
|
||||
poll = bool(bpy.ops.armature.select_less.poll())
|
||||
if not poll:
|
||||
raise RuntimeError("ARMATURE_OT_select_less poll failed")
|
||||
if not already_selected_less:
|
||||
result = bpy.ops.armature.select_less()
|
||||
if result != {"FINISHED"}:
|
||||
raise RuntimeError(f"ARMATURE_OT_select_less returned {result}")
|
||||
return poll, not already_selected_less
|
||||
|
||||
|
||||
def validate_after(after):
|
||||
by_name = {bone["name"]: bone for bone in after["bones"]}
|
||||
root, child, other = by_name[ROOT_BONE], by_name[CHILD_BONE], by_name[OTHER_BONE]
|
||||
if root["selected"] or root["selectHead"] or root["selectTail"]:
|
||||
raise RuntimeError(f"armature.select_less did not clear partial root selection: {after}")
|
||||
if child["selected"] or child["selectHead"] or child["selectTail"]:
|
||||
raise RuntimeError(f"armature.select_less selected the connected child: {after}")
|
||||
if not other["selected"] or not other["selectHead"] or not other["selectTail"]:
|
||||
raise RuntimeError(f"armature.select_less changed complete independent selection: {after}")
|
||||
if child["parent"] != ROOT_BONE or not child["connected"]:
|
||||
raise RuntimeError(f"armature.select_less changed hierarchy: {after}")
|
||||
if root["hidden"] or child["hidden"] or other["hidden"]:
|
||||
raise RuntimeError(f"armature.select_less changed visibility: {after}")
|
||||
if root["head"] != [0.0, 0.0, 0.0] or root["tail"] != [0.0, 1.0, 0.0]:
|
||||
raise RuntimeError(f"armature.select_less changed root geometry: {after}")
|
||||
if child["head"] != [0.0, 1.0, 0.0] or child["tail"] != [0.0, 2.0, 0.0]:
|
||||
raise RuntimeError(f"armature.select_less changed child geometry: {after}")
|
||||
if other["head"] != [2.0, 0.0, 0.0] or other["tail"] != [2.0, 1.0, 0.0]:
|
||||
raise RuntimeError(f"armature.select_less changed other 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-select-less-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_selected_less = validate_input(before)
|
||||
poll, changed = run_operator(already_selected_less)
|
||||
after = state_report()
|
||||
validate_after(after)
|
||||
|
||||
bpy.ops.object.mode_set(mode="OBJECT")
|
||||
descriptor, temporary = tempfile.mkstemp(prefix="m16-armature-select-less-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.select_less save/reopen drift: {after} != {reopened}")
|
||||
shutil.copyfile(temporary_path, fixture)
|
||||
report = {
|
||||
"schemaVersion": 1,
|
||||
"task": "M16-GAP-00252",
|
||||
"operation": "ARMATURE_SELECT_LESS_DESKTOP",
|
||||
"fixture": str(fixture),
|
||||
"fixtureSha256": hashlib.sha256(fixture.read_bytes()).hexdigest(),
|
||||
"before": before,
|
||||
"after": reopened,
|
||||
"activeBone": reopened["activeBone"],
|
||||
"rootBone": ROOT_BONE,
|
||||
"childBone": CHILD_BONE,
|
||||
"otherBone": OTHER_BONE,
|
||||
"operatorStatus": "FINISHED" if changed else "SKIPPED_ALREADY_APPLIED",
|
||||
"mainMutation": "PARTIAL_BOUNDARY_SELECTION_CLEARED" if changed else "PARTIAL_BOUNDARY_SELECTION_ALREADY_CLEARED",
|
||||
"poll": poll,
|
||||
"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-select-less-desktop-ok root={ROOT_BONE} other={OTHER_BONE} saveReopen=exact")
|
||||
finally:
|
||||
temporary_path.unlink(missing_ok=True)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
try:
|
||||
main()
|
||||
except Exception as error:
|
||||
print(f"armature-select-less-desktop-failed: {error}")
|
||||
raise SystemExit(1)
|
||||
Reference in New Issue
Block a user