Spaces:
Running
Running
File size: 7,557 Bytes
9d3c32a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
import React, {
useEffect,
useRef,
useState,
useMemo,
useCallback,
} from "react";
import { cn } from "@/lib/utils";
import URDFManipulator from "urdf-loader/src/urdf-manipulator-element.js";
import { useUrdf } from "@/hooks/useUrdf";
import { useRealTimeJoints } from "@/hooks/useRealTimeJoints";
import {
createUrdfViewer,
setupMeshLoader,
setupJointHighlighting,
setupModelLoading,
URDFViewerElement,
} from "@/lib/urdfViewerHelpers";
// Register the URDFManipulator as a custom element if it hasn't been already
if (typeof window !== "undefined" && !customElements.get("urdf-viewer")) {
customElements.define("urdf-viewer", URDFManipulator);
}
// Extend the interface for the URDF viewer element to include background property
interface UrdfViewerElement extends HTMLElement {
background?: string;
setJointValue?: (jointName: string, value: number) => void;
}
const UrdfViewer: React.FC = () => {
const containerRef = useRef<HTMLDivElement>(null);
const [highlightedJoint, setHighlightedJoint] = useState<string | null>(null);
const { registerUrdfProcessor, alternativeUrdfModels, isDefaultModel } =
useUrdf();
// Add state for animation control
useState<boolean>(isDefaultModel);
const cleanupAnimationRef = useRef<(() => void) | null>(null);
const viewerRef = useRef<URDFViewerElement | null>(null);
const hasInitializedRef = useRef<boolean>(false);
// Real-time joint updates via WebSocket
const { isConnected: isWebSocketConnected } = useRealTimeJoints({
viewerRef,
enabled: isDefaultModel, // Only enable WebSocket for default model
});
// Add state for custom URDF path
const [customUrdfPath, setCustomUrdfPath] = useState<string | null>(null);
const [urlModifierFunc, setUrlModifierFunc] = useState<
((url: string) => string) | null
>(null);
const packageRef = useRef<string>("");
// Implement UrdfProcessor interface for drag and drop
const urdfProcessor = useMemo(
() => ({
loadUrdf: (urdfPath: string) => {
setCustomUrdfPath(urdfPath);
},
setUrlModifierFunc: (func: (url: string) => string) => {
setUrlModifierFunc(() => func);
},
getPackage: () => {
return packageRef.current;
},
}),
[]
);
// Register the URDF processor with the global drag and drop context
useEffect(() => {
registerUrdfProcessor(urdfProcessor);
}, [registerUrdfProcessor, urdfProcessor]);
// Create URL modifier function for default model
const defaultUrlModifier = useCallback((url: string) => {
console.log(`🔗 defaultUrlModifier called with: ${url}`);
// Handle various package:// URL formats for the default SO-101 model
if (url.startsWith("package://so_arm_description/meshes/")) {
const modifiedUrl = url.replace(
"package://so_arm_description/meshes/",
"/so-101-urdf/meshes/"
);
console.log(`🔗 Modified URL (package): ${modifiedUrl}`);
return modifiedUrl;
}
// Handle case where package path might be partially resolved
if (url.includes("so_arm_description/meshes/")) {
const modifiedUrl = url.replace(
/.*so_arm_description\/meshes\//,
"/so-101-urdf/meshes/"
);
console.log(`🔗 Modified URL (partial): ${modifiedUrl}`);
return modifiedUrl;
}
// Handle the specific problematic path pattern we're seeing in logs
if (url.includes("/so-101-urdf/so_arm_description/meshes/")) {
const modifiedUrl = url.replace(
"/so-101-urdf/so_arm_description/meshes/",
"/so-101-urdf/meshes/"
);
console.log(`🔗 Modified URL (problematic path): ${modifiedUrl}`);
return modifiedUrl;
}
// Handle relative paths that might need mesh folder prefix
if (
url.endsWith(".stl") &&
!url.startsWith("/") &&
!url.startsWith("http")
) {
const modifiedUrl = `/so-101-urdf/meshes/${url}`;
console.log(`🔗 Modified URL (relative): ${modifiedUrl}`);
return modifiedUrl;
}
console.log(`🔗 Unmodified URL: ${url}`);
return url;
}, []);
// Main effect to create and setup the viewer only once
useEffect(() => {
if (!containerRef.current) return;
// Create and configure the URDF viewer element
const viewer = createUrdfViewer(containerRef.current, true);
viewerRef.current = viewer; // Store reference to the viewer
// Setup mesh loading function with appropriate URL modifier
const activeUrlModifier = isDefaultModel
? defaultUrlModifier
: urlModifierFunc;
setupMeshLoader(viewer, activeUrlModifier);
// Determine which URDF to load - fixed path to match the actual available file
const urdfPath = isDefaultModel
? "/so-101-urdf/urdf/so101_new_calib.urdf"
: customUrdfPath || "";
// Set the package path for the default model
if (isDefaultModel) {
packageRef.current = "/"; // Set to root so we can handle full path resolution in URL modifier
}
// Setup model loading if a path is available
let cleanupModelLoading = () => {};
if (urdfPath) {
cleanupModelLoading = setupModelLoading(
viewer,
urdfPath,
packageRef.current,
setCustomUrdfPath,
alternativeUrdfModels
);
}
// Setup joint highlighting
const cleanupJointHighlighting = setupJointHighlighting(
viewer,
setHighlightedJoint
);
// Setup animation event handler for the default model or when hasAnimation is true
const onModelProcessed = () => {
hasInitializedRef.current = true;
if ("setJointValue" in viewer) {
// Clear any existing animation
if (cleanupAnimationRef.current) {
cleanupAnimationRef.current();
cleanupAnimationRef.current = null;
}
}
};
viewer.addEventListener("urdf-processed", onModelProcessed);
// Return cleanup function
return () => {
if (cleanupAnimationRef.current) {
cleanupAnimationRef.current();
cleanupAnimationRef.current = null;
}
hasInitializedRef.current = false;
cleanupJointHighlighting();
cleanupModelLoading();
viewer.removeEventListener("urdf-processed", onModelProcessed);
};
}, [isDefaultModel, customUrdfPath, urlModifierFunc, defaultUrlModifier]);
return (
<div
className={cn(
"w-full h-full transition-all duration-300 ease-in-out relative",
"bg-gradient-to-br from-gray-900 to-gray-800"
)}
>
<div ref={containerRef} className="w-full h-full" />
{/* Joint highlight indicator */}
{highlightedJoint && (
<div className="absolute bottom-4 right-4 bg-black/70 text-white px-3 py-2 rounded-md text-sm font-mono z-10">
Joint: {highlightedJoint}
</div>
)}
{/* WebSocket connection status */}
{isDefaultModel && (
<div className="absolute top-4 right-4 z-10">
<div
className={`flex items-center gap-2 px-3 py-2 rounded-md text-sm font-mono ${
isWebSocketConnected
? "bg-green-900/70 text-green-300"
: "bg-red-900/70 text-red-300"
}`}
>
<div
className={`w-2 h-2 rounded-full ${
isWebSocketConnected ? "bg-green-400" : "bg-red-400"
}`}
/>
{isWebSocketConnected ? "Live Robot Data" : "Disconnected"}
</div>
</div>
)}
</div>
);
};
export default UrdfViewer;
|