f1c8d3a58f
This change refactors the Python API to use the term "plugins" instead of "handlers" for classes containing decorated handler methods. The term handler is still used for an annotated method of a plugin class that handles a specific message type. Also improved some documentation. PiperOrigin-RevId: 962150099 Change-Id: I34a8cc410cd784b088605490cfa3baccea5c9e71
149 lines
4.6 KiB
Python
149 lines
4.6 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.
|
|
"""Non-blocking viewer launcher.
|
|
|
|
Launches the viewer in a daemon thread and returns a ``ViewerHandle``
|
|
that the calling thread uses to push simulation state into the viewer.
|
|
"""
|
|
|
|
import queue
|
|
import threading
|
|
from typing import Any
|
|
|
|
from mujoco.experimental.studio import endpoints
|
|
from mujoco.experimental.studio import messages
|
|
from mujoco.experimental.studio import viewer_handle
|
|
from mujoco.experimental.studio import viewer_protocol
|
|
|
|
|
|
class _PassiveSnapshotChannel(messages.SnapshotChannel):
|
|
"""SnapshotChannel for passive mode.
|
|
|
|
Stores per-type snapshot by reference and wakes the viewer thread when put.
|
|
"""
|
|
|
|
def __init__(self) -> None:
|
|
self._pending_snapshots: dict[
|
|
type[messages.Snapshot], messages.Snapshot
|
|
] = {}
|
|
self._lock = threading.Lock()
|
|
self._wakeup = threading.Event()
|
|
|
|
def put(self, snapshot: messages.Snapshot) -> None:
|
|
with self._lock:
|
|
self._pending_snapshots[type(snapshot)] = snapshot
|
|
self._wakeup.set()
|
|
|
|
def get(self) -> list[messages.Snapshot]:
|
|
self._wakeup.clear()
|
|
with self._lock:
|
|
out = list(self._pending_snapshots.values())
|
|
self._pending_snapshots.clear()
|
|
return out
|
|
|
|
def close(self) -> None:
|
|
pass
|
|
|
|
|
|
class _PassiveEventChannel(messages.EventChannel):
|
|
"""EventChannel for passive mode using a thread-safe queue."""
|
|
|
|
def __init__(self) -> None:
|
|
self._events: queue.Queue[messages.Event] = queue.Queue()
|
|
|
|
def put(self, event: messages.Event) -> None:
|
|
self._events.put(event)
|
|
|
|
def get(self) -> list[messages.Event]:
|
|
out = []
|
|
while True:
|
|
try:
|
|
out.append(self._events.get_nowait())
|
|
except queue.Empty:
|
|
break
|
|
return out
|
|
|
|
def close(self) -> None:
|
|
pass
|
|
|
|
|
|
def run_viewer_target(
|
|
config: viewer_protocol.ViewerConfig,
|
|
endpoint: endpoints.ViewerEndpoint,
|
|
plugins: list[Any] | None = None,
|
|
) -> None:
|
|
"""Creates the appropriate viewer and runs the viewer loop.
|
|
|
|
Args:
|
|
config: Configuration specifying the viewer window settings.
|
|
endpoint: Endpoint for communicating with the simulation side.
|
|
plugins: Optional list of viewer-side plugin instances, which are classes
|
|
with methods decorated with ``@handler``.
|
|
"""
|
|
if config.gfx in ('web', 'webgl'): # In future we may add 'webgpu' here too.
|
|
from mujoco.experimental.studio import web_viewer # pylint: disable=g-import-not-at-top
|
|
|
|
viewer = web_viewer.WebViewer(config, endpoint, plugins=plugins)
|
|
else:
|
|
from mujoco.experimental.studio import native_viewer # pylint: disable=g-import-not-at-top
|
|
|
|
viewer = native_viewer.NativeViewer(config, endpoint, plugins=plugins)
|
|
|
|
viewer_protocol.run_viewer_loop(viewer)
|
|
|
|
|
|
def launch_passive(
|
|
config: viewer_protocol.ViewerConfig,
|
|
*,
|
|
viewer_plugins: list[Any] | None = None,
|
|
sim_plugins: list[Any] | None = None,
|
|
) -> viewer_handle.ViewerHandle:
|
|
"""Launches the viewer in a daemon thread without blocking.
|
|
|
|
The viewer runs on the rendering thread and renders the scene along with any
|
|
GUI built by registered plugins (such as ``ViewerApp``). The caller keeps
|
|
running and pushes state via ``handle.sync()``.
|
|
|
|
Args:
|
|
config: Viewer window configuration.
|
|
viewer_plugins: Optional list of viewer-side plugin instances, which are
|
|
classes with methods decorated with ``@handler``.
|
|
sim_plugins: Optional list of sim-side plugin instances, which are classes
|
|
with methods decorated with ``@handler``.
|
|
|
|
Returns:
|
|
A ViewerHandle for interacting with the viewer.
|
|
"""
|
|
viewer_endpoint, sim_endpoint = endpoints.make_endpoints(
|
|
s2v_snapshot=_PassiveSnapshotChannel(),
|
|
s2v_events=_PassiveEventChannel(),
|
|
v2s_events=_PassiveEventChannel(),
|
|
v2s_snapshot=_PassiveSnapshotChannel(),
|
|
)
|
|
|
|
thread = threading.Thread(
|
|
target=run_viewer_target,
|
|
args=(config, viewer_endpoint, viewer_plugins),
|
|
daemon=True,
|
|
)
|
|
thread.start()
|
|
|
|
handle = viewer_handle.ViewerHandle(
|
|
sim_endpoint,
|
|
is_alive_fn=thread.is_alive,
|
|
shutdown_fn=thread.join,
|
|
plugins=sim_plugins,
|
|
)
|
|
return handle
|