ani fixed

This commit is contained in:
Nicholas Butzke
2026-08-10 12:17:59 -04:00
parent 9358746582
commit 833e936bcd
10 changed files with 554 additions and 23 deletions
+263 -14
View File
@@ -26,7 +26,7 @@ func _run() -> void:
var path: String = args[0] if not args.is_empty() \
else "res://assets/characters/skins/taila.glb"
var scene := Node3D.new()
var scene := CharacterBody3D.new()
root.add_child(scene)
current_scene = scene
var model := SkinnedPlayerModel.new()
@@ -39,40 +39,165 @@ func _run() -> void:
_expect(false, "the authored character loads")
_done()
return
var foot := model._role_bone("foot.L", ["foot.L", "LeftFoot", "Left ankle"])
var hips := model._role_bone("hips", ["hips", "Hips", "pelvis"])
var left_hand := model._role_bone("hand.L", ["hand.L", "LeftHand", "hand_l"])
var right_hand := model._role_bone("hand.R", ["hand.R", "RightHand", "hand_r"])
var thigh_l := model._role_bone("thigh.L", ["thigh.L", "Left thigh"])
var thigh_r := model._role_bone("thigh.R", ["thigh.R", "Right thigh"])
var shin_l := model._role_bone("shin.L", ["shin.L", "Left shin"])
var shin_r := model._role_bone("shin.R", ["shin.R", "Right shin"])
var spine_roles: Array = model._rig_info.get("roles", {}).get("spine", [])
var torso_chain := _torso_chain_bones(model, spine_roles)
var lower_spine := RigRoles.find_imported_bone(
model.skeleton, String(spine_roles[0])) \
if not spine_roles.is_empty() else model.skeleton.find_bone(
"DEF-spine.001")
_expect(foot >= 0, "a foot bone resolves")
_expect(hips >= 0 and left_hand >= 0 and right_hand >= 0,
"hips and both hands resolve")
if model._has_titanfall_motion_reference and thigh_l >= 0 \
and thigh_r >= 0 and shin_l >= 0 and shin_r >= 0:
if lower_spine >= 0:
var lower_spine_rest_rise := _world_rest_rise(
model, lower_spine, hips)
for _frame in SETTLE_FRAMES:
model.update_state("idle", 0.0, false)
await process_frame
var idle_spine_rise := _world_pose_rise(model, lower_spine, hips)
_expect(idle_spine_rise > maxf(lower_spine_rest_rise * 0.65, 0.02),
"idle keeps the lower spine above the pelvis (%.3f m)"
% idle_spine_rise)
var idle_horizontal_ratio_max := 0.0
for sample in 120:
idle_horizontal_ratio_max = maxf(idle_horizontal_ratio_max,
_max_leg_horizontal_ratio(model, thigh_l, thigh_r, shin_l, shin_r))
model.update_state("idle", 0.0, false)
await process_frame
_expect(idle_horizontal_ratio_max < 0.55,
"idle keeps both thigh-to-knee segments mostly vertical "
+ "(%.3f horizontal ratio)" % idle_horizontal_ratio_max)
if model._has_titanfall_motion_reference and thigh_l >= 0 \
and thigh_r >= 0 and shin_l >= 0 and shin_r >= 0:
for side in [-1.0, 1.0]:
var entry_leg_rise := await _wall_entry_leg_rise(
model, side, thigh_l, thigh_r, shin_l, shin_r)
_expect(entry_leg_rise < 0.05,
"wall-run entry keeps both legs below the pelvis on side %+.0f "
% side)
model.set_wall_side(-1.0)
model.set_wall_surface(Vector3.RIGHT, Vector3(-0.4, 0.0, 0.0))
model.set_wall_glide_motion(Vector3(13.0, 0.0, 0.0))
await _settle(model, "wall_run", WALL_GLIDE_SPEED)
_expect(model.current_clip_debug() == "WallRunLeft",
"left wall traversal selects its authored pilot performance")
var expected_left_wall_clip := "WallRunRight" \
if model._has_titanfall_motion_reference else "Grapple"
_expect(model.current_clip_debug() == expected_left_wall_clip,
"left wall traversal selects its configured authored performance")
if model._has_titanfall_motion_reference:
var left_torso_joint := _max_torso_joint_delta(model, torso_chain)
_expect(left_torso_joint < 1.35,
"left wallrun keeps a continuous authored torso (%.3f rad max joint)"
% left_torso_joint)
var wall_scale := float(model._anim_tree.get("parameters/loco_scale/scale"))
_expect(absf(wall_scale - 1.0) < 0.02,
"wall traversal keeps the authored source timing (%.3fx)"
% wall_scale)
var wall_foot_motion := await _sample_foot_motion(
model, foot, "wall_run", WALL_GLIDE_SPEED)
_expect(wall_foot_motion > 0.12,
"wall traversal retains its authored propulsion cycle (%.3f rad motion)"
% wall_foot_motion)
if model._has_titanfall_motion_reference:
_expect(wall_foot_motion > 0.12,
"wall traversal retains its authored propulsion cycle "
+ "(%.3f rad motion)" % wall_foot_motion)
else:
_expect(wall_foot_motion < 0.08,
"fallback wall glide holds its authored stabilization pose "
+ "(%.3f rad motion)" % wall_foot_motion)
var wall_forward := model.wall_glide_forward_debug()
_expect(wall_forward.dot(Vector3.RIGHT) > 0.97,
"wall-glide model faces along wall-tangent velocity (dot %.3f)"
% wall_forward.dot(Vector3.RIGHT))
model.set_wall_side(1.0)
model.set_wall_surface(Vector3.LEFT, Vector3(0.4, 0.0, 0.0))
await _settle(model, "wall_run", WALL_GLIDE_SPEED)
_expect(model.current_clip_debug() == "WallRunRight",
"right wall traversal selects its authored pilot performance")
var expected_right_wall_clip := "WallRunLeft" \
if model._has_titanfall_motion_reference else "Grapple"
_expect(model.current_clip_debug() == expected_right_wall_clip,
"right wall traversal selects its configured authored performance")
if model._has_titanfall_motion_reference:
var right_torso_joint := _max_torso_joint_delta(model, torso_chain)
_expect(right_torso_joint < 1.35,
"right wallrun keeps a continuous authored torso (%.3f rad max joint)"
% right_torso_joint)
if model._has_titanfall_motion_reference and thigh_l >= 0 \
and thigh_r >= 0 and shin_l >= 0 and shin_r >= 0 \
and lower_spine >= 0:
var right_wall_spine_rise := _world_pose_rise(
model, lower_spine, hips)
var lower_spine_rest_rise := _world_rest_rise(
model, lower_spine, hips)
_expect(right_wall_spine_rise > maxf(
lower_spine_rest_rise * 0.65, 0.02),
"right wallrun keeps the lower spine above the pelvis (%.3f m)"
% right_wall_spine_rise)
var exit_leg_rise := await _wall_exit_leg_rise(
model, thigh_l, thigh_r, shin_l, shin_r)
_expect(exit_leg_rise < 0.35,
"right wallrun ground exit avoids an exaggerated knee flip")
var jump_exit_leg_rise := await _wall_jump_exit_leg_rise(
model, thigh_l, thigh_r, shin_l, shin_r)
_expect(jump_exit_leg_rise < 0.05,
"right wallrun jump hands off without a leg flip")
_expect(not model.clip_names_debug().has("WallRun"),
"the relabelled ground-run WallRun clip is absent")
# The wall-glide orientation is a temporary presentation frame. It must not
# ease back around the floor after traversal ends, and a character with an
# authored slide entry must use that entry pose before the loop.
model.update_state("ground", WALL_GLIDE_SPEED, false)
await process_frame
_expect(absf(model._motion_root.rotation.y) < 0.001,
"wall-glide presentation yaw resets on exit")
if model._has_titanfall_motion_reference:
for _frame in 20:
model.update_state("idle", 0.0, false)
await process_frame
var recovered_torso_joint := _max_torso_joint_delta(model, torso_chain)
_expect(recovered_torso_joint < 0.70,
"idle after right wallrun has no residual waist rotation "
+ "(%.3f rad max joint)" % recovered_torso_joint)
model.update_state("slide", WALL_GLIDE_SPEED, true)
var slide_start_clip := String(model._resolved_clips.get("SlideStart", ""))
if slide_start_clip != "" and slide_start_clip != \
model._resolved_clips.get("Slide", ""):
_expect(model.current_clip_debug() == "SlideStart",
"slide enters through the authored SlideStart pose")
if model._has_titanfall_motion_reference and thigh_l >= 0 \
and thigh_r >= 0 and shin_l >= 0 and shin_r >= 0:
var slide_entry_rise := -INF
for _frame in 12:
model.update_state("slide", WALL_GLIDE_SPEED, true)
await process_frame
var slide_leg_l := _world_bone_segment(model, thigh_l, shin_l)
var slide_leg_r := _world_bone_segment(model, thigh_r, shin_r)
slide_entry_rise = maxf(slide_entry_rise,
maxf(slide_leg_l.y, slide_leg_r.y))
_expect(slide_entry_rise < 0.05,
"slide entry keeps both legs below the pelvis")
model.update_state("ground", 0.0, false)
await process_frame
model.update_state("slide", 4.0, true)
var slow_slide_scale := float(model._anim_tree.get(
"parameters/loco_scale/scale"))
model.update_state("ground", 0.0, false)
await process_frame
model.update_state("slide", WALL_GLIDE_SPEED, true)
var fast_slide_scale := float(model._anim_tree.get(
"parameters/loco_scale/scale"))
_expect(fast_slide_scale > slow_slide_scale + 0.25,
"slide entry playback follows momentum (%.2fx -> %.2fx)"
% [slow_slide_scale, fast_slide_scale])
# The imported performance must own the unarmed silhouette. A target rig's
# crossed/T-pose rest arms used to survive every clip because only relative
# bone rotations were copied.
@@ -83,13 +208,16 @@ func _run() -> void:
"shoulder.L", ["shoulder.L", "LeftShoulder", "clavicle_l"])
var right_shoulder := model._role_bone(
"shoulder.R", ["shoulder.R", "RightShoulder", "clavicle_r"])
var skeleton_basis := model.skeleton.global_transform.basis
var idle_drop := minf(
model.skeleton.get_bone_global_pose(left_shoulder).origin.y
- model.skeleton.get_bone_global_pose(left_hand).origin.y,
model.skeleton.get_bone_global_pose(right_shoulder).origin.y
- model.skeleton.get_bone_global_pose(right_hand).origin.y,
(skeleton_basis * (model.skeleton.get_bone_global_pose(
left_shoulder).origin - model.skeleton.get_bone_global_pose(
left_hand).origin)).y,
(skeleton_basis * (model.skeleton.get_bone_global_pose(
right_shoulder).origin - model.skeleton.get_bone_global_pose(
right_hand).origin)).y,
)
_expect(idle_drop > 0.22,
_expect(idle_drop > 0.14,
"unarmed idle hands hang below the shoulders (drop %.3f m)"
% idle_drop)
@@ -197,6 +325,69 @@ func _sample_foot_motion(
return greatest
func _torso_chain_bones(model: SkinnedPlayerModel, spine_roles: Array) -> Array:
var role_data: Dictionary = model._rig_info.get("roles", {})
var neck_name := String(role_data.get("neck", ""))
var head_name := String(role_data.get("head", ""))
var chain := [model._role_bone("hips", ["hips", "Hips", "pelvis"])]
for role in spine_roles:
var bone_name := String(role)
if bone_name == neck_name or bone_name == head_name:
continue
chain.append(RigRoles.find_imported_bone(model.skeleton, bone_name))
return chain
func _max_torso_joint_delta(model: SkinnedPlayerModel, chain: Array) -> float:
var greatest := 0.0
for index in range(1, chain.size()):
var parent: int = int(chain[index - 1])
var child: int = int(chain[index])
if parent < 0 or child < 0:
continue
var posed_relative := model.skeleton.get_bone_global_pose(parent) \
.basis.inverse() * model.skeleton.get_bone_global_pose(child).basis
var rest_relative := model.skeleton.get_bone_global_rest(parent) \
.basis.inverse() * model.skeleton.get_bone_global_rest(child).basis
greatest = maxf(greatest,
posed_relative.get_rotation_quaternion().angle_to(
rest_relative.get_rotation_quaternion()))
return greatest
func _max_leg_horizontal_ratio(model: SkinnedPlayerModel,
thigh_l: int, thigh_r: int, shin_l: int, shin_r: int) -> float:
var greatest := 0.0
for pair in [[thigh_l, shin_l], [thigh_r, shin_r]]:
var segment := _world_bone_segment(
model, int(pair[0]), int(pair[1]))
if segment.length() > 0.0001:
greatest = maxf(greatest,
Vector2(segment.x, segment.z).length() / segment.length())
return greatest
func _world_bone_segment(model: SkinnedPlayerModel,
from_bone: int, to_bone: int) -> Vector3:
var local_segment := model.skeleton.get_bone_global_pose(to_bone).origin \
- model.skeleton.get_bone_global_pose(from_bone).origin
return model.skeleton.global_transform.basis * local_segment
func _world_pose_rise(model: SkinnedPlayerModel, top: int, hips: int) -> float:
var basis := model.skeleton.global_transform
var top_world := basis * model.skeleton.get_bone_global_pose(top).origin
var hips_world := basis * model.skeleton.get_bone_global_pose(hips).origin
return top_world.y - hips_world.y
func _world_rest_rise(model: SkinnedPlayerModel, top: int, hips: int) -> float:
var basis := model.skeleton.global_transform
var top_world := basis * model.skeleton.get_bone_global_rest(top).origin
var hips_world := basis * model.skeleton.get_bone_global_rest(hips).origin
return top_world.y - hips_world.y
func _settle_grapple(model: SkinnedPlayerModel, anchor: Vector3,
velocity: Vector3) -> void:
for _frame in SETTLE_FRAMES:
@@ -224,6 +415,64 @@ func _sample_grapple_foot_motion(
return greatest
func _wall_entry_leg_rise(model: SkinnedPlayerModel, side: float,
thigh_l: int, thigh_r: int, shin_l: int, shin_r: int) -> float:
# Enter from the airborne pose so this exercises the exact full-body
# transition that used to rotate the right-wall waist and legs through
# vertical before the authored loop settled.
model.set_wall_side(side)
for _frame in 24:
model.update_state("air", 4.0, false)
await process_frame
var greatest_rise := -INF
for _frame in 20:
model.update_state("wall_run", WALL_GLIDE_SPEED, false)
await process_frame
var leg_l := _world_bone_segment(model, thigh_l, shin_l)
var leg_r := _world_bone_segment(model, thigh_r, shin_r)
greatest_rise = maxf(greatest_rise, maxf(leg_l.y, leg_r.y))
return greatest_rise
func _wall_exit_leg_rise(model: SkinnedPlayerModel,
thigh_l: int, thigh_r: int, shin_l: int, shin_r: int) -> float:
# Start on the problematic right-wall performance, then leave into the
# ground locomotion state and measure the transition frames.
model.set_wall_side(1.0)
for _frame in SETTLE_FRAMES:
model.update_state("wall_run", WALL_GLIDE_SPEED, false)
await process_frame
var greatest_rise := -INF
for _frame in 20:
model.update_state("ground", WALL_GLIDE_SPEED, false)
await process_frame
var leg_l := _world_bone_segment(model, thigh_l, shin_l)
var leg_r := _world_bone_segment(model, thigh_r, shin_r)
greatest_rise = maxf(greatest_rise, maxf(leg_l.y, leg_r.y))
return greatest_rise
func _wall_jump_exit_leg_rise(model: SkinnedPlayerModel,
thigh_l: int, thigh_r: int, shin_l: int, shin_r: int) -> float:
# The real controller reports a positive parent velocity on the first frame
# after a wall jump, so this exercises WallRun -> Jump rather than Fall.
model.set_wall_side(1.0)
for _frame in SETTLE_FRAMES:
model.update_state("wall_run", WALL_GLIDE_SPEED, false)
await process_frame
var body := model.get_parent() as CharacterBody3D
var greatest_rise := -INF
for _frame in 20:
if body:
body.velocity.y = 8.0
model.update_state("air", WALL_GLIDE_SPEED, false)
await process_frame
var leg_l := _world_bone_segment(model, thigh_l, shin_l)
var leg_r := _world_bone_segment(model, thigh_r, shin_r)
greatest_rise = maxf(greatest_rise, maxf(leg_l.y, leg_r.y))
return greatest_rise
func _expect(ok: bool, description: String) -> void:
if ok:
print(" OK: ", description)