7c22920720
- Move SimToView and ViewToSim dataclasses from async.py to viewer_protocol.py (adding a user_data field) to consolidate IPC protocol definitions. - Remove the simulated Network class and latency UI controls from async.py to simplify the example and focus on core multiprocessing communication. - Use parser.parse() in main() for cleaner and more direct MuJoCo model loading. - Add cancel_join_thread() to multiprocessing queues and a join timeout to prevent atexit handlers from blocking during process shutdown. PiperOrigin-RevId: 932327625 Change-Id: If91777dba934814b3f9faa17f9055869920575d7
78 lines
1.9 KiB
Python
78 lines
1.9 KiB
Python
# Copyright 2026 DeepMind Technologies Limited
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
"""Structural protocol defining the common viewer interface.
|
|
|
|
StudioApp uses the protocol for convenience methods that accept any viewer.
|
|
"""
|
|
|
|
import dataclasses
|
|
from typing import Any
|
|
from typing import Protocol
|
|
import mujoco
|
|
from mujoco.experimental.studio import ux
|
|
import numpy as np
|
|
|
|
GFX_MODES = (
|
|
'classic',
|
|
'classic_headless',
|
|
'opengl',
|
|
'opengl_headless',
|
|
'opengl_software',
|
|
'vulkan',
|
|
'vulkan_software',
|
|
'webgl',
|
|
)
|
|
|
|
|
|
@dataclasses.dataclass
|
|
class SimToView:
|
|
"""A message sent from the simulation to the viewer."""
|
|
|
|
model: mujoco.MjModel | None = None
|
|
state: np.ndarray | None = None
|
|
state_sig: int = 0
|
|
user_data: dict[str, Any] = dataclasses.field(default_factory=dict)
|
|
|
|
|
|
@dataclasses.dataclass
|
|
class ViewToSim:
|
|
"""A message sent from the viewer to the simulation."""
|
|
|
|
state: np.ndarray | None = None
|
|
state_sig: int = 0
|
|
reset: bool = False
|
|
send_rate: float = 60.0
|
|
user_data: dict[str, Any] = dataclasses.field(default_factory=dict)
|
|
|
|
|
|
class Viewer(Protocol):
|
|
"""Structural interface for any viewer."""
|
|
|
|
camera: mujoco.MjvCamera
|
|
perturb: mujoco.MjvPerturb
|
|
vis_options: mujoco.MjvOption
|
|
render_flags: ux.RenderFlags
|
|
|
|
def is_running(self) -> bool:
|
|
...
|
|
|
|
def sync(self, model: mujoco.MjModel, data: mujoco.MjData) -> None:
|
|
...
|
|
|
|
def stop(self) -> None:
|
|
...
|
|
|
|
def get_drop_file(self) -> str:
|
|
...
|