mirror of
https://github.com/luckyrobots/open_phantom.git
synced 2025-04-04 02:52:18 +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:
|
try:
|
||||||
urdf_dir = os.path.dirname(urdf_path)
|
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)
|
if urdf_path.endswith("_fixed.urdf"):
|
||||||
format_xml(root, fixed_path)
|
print("URDF is already fixed. Skipping processing.")
|
||||||
print(f"Successfully processed URDF: {fixed_path}")
|
fixed_path = urdf_path
|
||||||
return fixed_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:
|
except Exception as e:
|
||||||
print(f"Failed to process URDF: {e}")
|
print(f"Failed to process URDF: {e}")
|
||||||
raise e
|
raise e
|
||||||
|
|
||||||
|
return fixed_path
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
# Example usage
|
# Example usage
|
||||||
|
Loading…
x
Reference in New Issue
Block a user