mirror of
https://github.com/luckyrobots/open_phantom.git
synced 2025-04-03 10:32:19 +00:00
add case handling with urdf
This commit is contained in:
parent
55317d3ac2
commit
685854ecbd
@ -83,16 +83,25 @@ def handle_urdf(urdf_path: str) -> str:
|
||||
|
||||
try:
|
||||
urdf_dir = os.path.dirname(urdf_path)
|
||||
robot_base_dir = os.path.dirname(urdf_dir)
|
||||
|
||||
root, fixed_path = fix_mesh_paths(urdf_path, robot_base_dir)
|
||||
format_xml(root, fixed_path)
|
||||
print(f"Successfully processed URDF: {fixed_path}")
|
||||
return fixed_path
|
||||
if urdf_path.endswith("_fixed.urdf"):
|
||||
print("URDF is already fixed. Skipping processing.")
|
||||
fixed_path = urdf_path
|
||||
elif os.path.exists(urdf_path.replace(".urdf", "_fixed.urdf")):
|
||||
print("Fixed URDF already exists. Skipping processing.")
|
||||
fixed_path = urdf_path.replace(".urdf", "_fixed.urdf")
|
||||
else:
|
||||
print("Processing URDF...")
|
||||
robot_base_dir = os.path.dirname(urdf_dir)
|
||||
root, fixed_path = fix_mesh_paths(urdf_path, robot_base_dir)
|
||||
format_xml(root, fixed_path)
|
||||
print(f"Successfully processed URDF: {fixed_path}")
|
||||
except Exception as e:
|
||||
print(f"Failed to process URDF: {e}")
|
||||
raise e
|
||||
|
||||
return fixed_path
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
# Example usage
|
||||
|
Loading…
x
Reference in New Issue
Block a user