Files
Avatar-Toolkit/functions/tools/additional_tools.py
T
989onan 6d9f751a16 Housekeeping (bug fixes)
NEW FEATURES:
- added apply shapekey to basis from Cats
  - now that pesky thing I keep going back to cats for is in Avatar Toolkit.

BUG FIXES:
- now we push armature santizers into functions where they are needed
  - this prevents the methods from mirroring changes while working, causing them to blow up when mirror mode is on
  - more changes to come for armature setting santitizers
- fixed error reporting
  - now methods when catching errors will return full error tracebacks
  - this will help make debugging and finding user issues easier.
2025-07-10 18:44:42 -04:00

94 lines
3.5 KiB
Python

import bpy
import numpy as np
from bpy.types import Operator, Context
from typing import Set
from ...core.translations import t
from ...core.logging_setup import logger
from ...core.common import get_active_armature, get_all_meshes, remove_unused_shapekeys
from ...core.armature_validation import validate_armature
import traceback
class AvatarToolkit_OT_ApplyTransforms(Operator):
"""Apply all transformations to armature and associated meshes"""
bl_idname = "avatar_toolkit.apply_transforms"
bl_label = t("Tools.apply_transforms")
bl_description = t("Tools.apply_transforms_desc")
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context: Context) -> bool:
armature = get_active_armature(context)
if not armature:
return False
valid, _, _ = validate_armature(armature)
return valid and context.mode == 'OBJECT'
def execute(self, context: Context) -> Set[str]:
try:
armature = get_active_armature(context)
logger.info(f"Applying transforms to {armature.name} and associated meshes")
# Select armature and meshes
bpy.ops.object.select_all(action='DESELECT')
armature.select_set(True)
context.view_layer.objects.active = armature
meshes = get_all_meshes(context)
for mesh in meshes:
mesh.select_set(True)
# Apply transforms
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
self.report({'INFO'}, t("Tools.transforms_applied"))
return {'FINISHED'}
except Exception:
logger.error(f"Failed to apply transforms: {traceback.format_exc()}")
self.report({'ERROR'}, traceback.format_exc())
return {'CANCELLED'}
class AvatarToolkit_OT_CleanShapekeys(Operator):
"""Remove unused shape keys from meshes"""
bl_idname = "avatar_toolkit.clean_shapekeys"
bl_label = t("Tools.clean_shapekeys")
bl_description = t("Tools.clean_shapekeys_desc")
bl_options = {'REGISTER', 'UNDO'}
tolerance: bpy.props.FloatProperty(
name=t("Tools.shapekey_tolerance"),
description=t("Tools.shapekey_tolerance_desc"),
default=0.001,
min=0.0001,
max=0.1
)
@classmethod
def poll(cls, context: Context) -> bool:
armature = get_active_armature(context)
if not armature:
return False
valid, _, _ = validate_armature(armature)
return valid and context.mode == 'OBJECT' and len(get_all_meshes(context)) > 0
def execute(self, context: Context) -> Set[str]:
try:
logger.info("Starting shape key cleanup")
removed_count = 0
for mesh in get_all_meshes(context):
if not mesh.data.shape_keys or not mesh.data.shape_keys.use_relative:
continue
removed = remove_unused_shapekeys(mesh, self.tolerance)
removed_count += removed
logger.debug(f"Removed {removed} shape keys from {mesh.name}")
self.report({'INFO'}, t("Tools.shapekeys_removed", count=removed_count))
return {'FINISHED'}
except Exception:
logger.error(f"Failed to clean shape keys: {traceback.format_exc()}")
self.report({'ERROR'}, traceback.format_exc())
return {'CANCELLED'}