File size: 8,636 Bytes
406662d | 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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | # Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
"""
This script checks if the XR visualization widgets are visible from the camera.
.. code-block:: bash
# Usage
./isaaclab.sh -p source/isaaclab/test/visualization/check_scene_visualization.py
"""
"""Launch Isaac Sim Simulator first."""
import argparse
from isaaclab.app import AppLauncher
# add argparse arguments
parser = argparse.ArgumentParser(description="Check XR visualization widgets in Isaac Lab.")
parser.add_argument("--num_envs", type=int, default=2, help="Number of environments to spawn.")
# append AppLauncher cli args
AppLauncher.add_app_launcher_args(parser)
# parse the arguments
args_cli = parser.parse_args()
# launch omniverse app with XR support
args_cli.xr = True
app_launcher = AppLauncher(args_cli)
simulation_app = app_launcher.app
"""Rest everything follows."""
import time
from typing import Any
from pxr import Gf
import isaaclab.sim as sim_utils
from isaaclab.assets import AssetBaseCfg
from isaaclab.scene import InteractiveScene, InteractiveSceneCfg
from isaaclab.ui.xr_widgets import DataCollector, TriggerType, VisualizationManager, XRVisualization, update_instruction
from isaaclab.utils import configclass
##
# Pre-defined configs
##
@configclass
class SimpleSceneCfg(InteractiveSceneCfg):
"""Design the scene with sensors on the robot."""
# ground plane
ground = AssetBaseCfg(prim_path="/World/defaultGroundPlane", spawn=sim_utils.GroundPlaneCfg())
# lights
dome_light = AssetBaseCfg(
prim_path="/World/Light", spawn=sim_utils.DomeLightCfg(intensity=3000.0, color=(0.75, 0.75, 0.75))
)
def get_camera_position():
"""Get the current camera position from the USD stage.
Returns:
tuple: (x, y, z) camera position or None if not available
"""
try:
from pxr import UsdGeom
stage = sim_utils.get_current_stage()
if stage is not None:
# Get the viewport camera prim
camera_prim_path = "/OmniverseKit_Persp"
camera_prim = stage.GetPrimAtPath(camera_prim_path)
if camera_prim and camera_prim.IsValid():
# Get the camera's world transform
camera_xform = UsdGeom.Xformable(camera_prim)
world_transform = camera_xform.ComputeLocalToWorldTransform(0) # 0 = current time
# Extract position from the transform matrix
camera_pos = world_transform.ExtractTranslation()
return (camera_pos[0], camera_pos[1], camera_pos[2])
return None
except Exception as e:
print(f"[ERROR]: Failed to get camera position: {e}")
return None
def _sample_handle_ik_error(mgr: VisualizationManager, data_collector: DataCollector, params: Any = None) -> None:
error_text_color = getattr(mgr, "_error_text_color", 0xFF0000FF)
mgr.display_widget(
"IK Error Detected",
"/ik_error",
VisualizationManager.message_widget_preset()
| {
"text_color": error_text_color,
"prim_path_source": "/World/defaultGroundPlane/GroundPlane",
"translation": Gf.Vec3f(0, 0, 1),
},
)
def _sample_update_error_text_color(mgr: VisualizationManager, data_collector: DataCollector) -> None:
current_color = getattr(mgr, "_error_text_color", 0xFF0000FF)
new_color = current_color + 0x100
if new_color >= 0xFFFFFFFF:
new_color = 0xFF0000FF
mgr.set_attr("_error_text_color", new_color)
def _sample_update_left_panel(mgr: VisualizationManager, data_collector: DataCollector) -> None:
left_panel_id = getattr(mgr, "left_panel_id", None)
if left_panel_id is None:
return
left_panel_created = getattr(mgr, "_left_panel_created", False)
if left_panel_created is False:
# create a new left panel
mgr.display_widget(
"Left Panel",
left_panel_id,
VisualizationManager.panel_widget_preset()
| {
"text_color": 0xFFFFFFFF,
"prim_path_source": "/World/defaultGroundPlane/GroundPlane",
"translation": Gf.Vec3f(0, -3, 1),
},
)
mgr.set_attr("_left_panel_created", True)
updated_times = getattr(mgr, "_left_panel_updated_times", 0)
# Create a simple panel content since make_panel_content doesn't exist
content = f"Left Panel\nUpdated #{updated_times} times"
update_instruction(left_panel_id, content)
mgr.set_attr("_left_panel_updated_times", updated_times + 1)
def _sample_update_right_panel(mgr: VisualizationManager, data_collector: DataCollector) -> None:
right_panel_id = getattr(mgr, "right_panel_id", None)
if right_panel_id is None:
return
updated_times = getattr(mgr, "_right_panel_updated_times", 0)
# Create a simple panel content since make_panel_content doesn't exist
right_panel_data = data_collector.get_data("right_panel_data")
if right_panel_data is not None:
assert isinstance(right_panel_data, (tuple, list)), "Right panel data must be a tuple or list"
# Format each element to 3 decimal places
formatted_data = tuple(f"{x:.3f}" for x in right_panel_data)
content = f"Right Panel\nUpdated #{updated_times} times\nData: {formatted_data}"
else:
content = f"Right Panel\nUpdated #{updated_times} times\nData: None"
right_panel_created = getattr(mgr, "_right_panel_created", False)
if right_panel_created is False:
# create a new left panel
mgr.display_widget(
content,
right_panel_id,
VisualizationManager.panel_widget_preset()
| {
"text_color": 0xFFFFFFFF,
"prim_path_source": "/World/defaultGroundPlane/GroundPlane",
"translation": Gf.Vec3f(0, 3, 1),
},
)
mgr.set_attr("_right_panel_created", True)
update_instruction(right_panel_id, content)
mgr.set_attr("_right_panel_updated_times", updated_times + 1)
def apply_sample_visualization():
# Error Message
XRVisualization.register_callback(TriggerType.TRIGGER_ON_EVENT, {"event_name": "ik_error"}, _sample_handle_ik_error)
# Display a panel on the left to display DataCollector data
# Refresh periodically
XRVisualization.set_attrs(
{
"left_panel_id": "/left_panel",
"left_panel_translation": Gf.Vec3f(-2, 2.6, 2),
"left_panel_updated_times": 0,
"right_panel_updated_times": 0,
}
)
XRVisualization.register_callback(TriggerType.TRIGGER_ON_PERIOD, {"period": 1.0}, _sample_update_left_panel)
# Display a panel on the right to display DataCollector data
# Refresh when camera position changes
XRVisualization.set_attrs(
{
"right_panel_id": "/right_panel",
"right_panel_translation": Gf.Vec3f(1.5, 2, 2),
}
)
XRVisualization.register_callback(
TriggerType.TRIGGER_ON_CHANGE, {"variable_name": "right_panel_data"}, _sample_update_right_panel
)
# Change error text color every second
XRVisualization.set_attrs(
{
"error_text_color": 0xFF0000FF,
}
)
XRVisualization.register_callback(TriggerType.TRIGGER_ON_UPDATE, {}, _sample_update_error_text_color)
def run_simulator(
sim: sim_utils.SimulationContext,
scene: InteractiveScene,
):
"""Run the simulator."""
# Define simulation stepping
sim_dt = sim.get_physics_dt()
apply_sample_visualization()
# Simulate
while simulation_app.is_running():
if int(time.time()) % 10 < 1:
XRVisualization.push_event("ik_error")
XRVisualization.push_data({"right_panel_data": get_camera_position()})
sim.step()
scene.update(sim_dt)
def main():
"""Main function."""
# Initialize the simulation context
sim_cfg = sim_utils.SimulationCfg(dt=0.005)
sim = sim_utils.SimulationContext(sim_cfg)
# Set main camera
sim.set_camera_view(eye=(8, 0, 4), target=(0.0, 0.0, 0.0))
# design scene
scene = InteractiveScene(SimpleSceneCfg(num_envs=args_cli.num_envs, env_spacing=2.0))
# Play the simulator
sim.reset()
# Now we are ready!
print("[INFO]: Setup complete...")
# Run the simulator
run_simulator(sim, scene)
if __name__ == "__main__":
# run the main function
main()
# close sim app
simulation_app.close()
|