Files
Mujoco_WASM/python/mujoco/experimental/studio/launch_passive.py
T
Matija Kecman 0dfa4b509a Refactor Studio customization and message dispatch to use decorator-based handlers
This change replaces fixed callback protocols (e.g., ViewerGuiHook, ViewerUpdateHook, SimEventHandler) with a general-purpose, priority-based message and event handling mechanism.

Key changes:
- Handler decorator and registry: Introduced the `@messages.handler(priority=...)` decorator and `HandlerRegistry` (`handler_registry.py`). Methods marked as handlers are automatically discovered and dispatched by priority (CRITICAL, USER, LIBRARY, INTERNAL) or method resolution order.
- Local lifecycle events: Added `ViewerAppInitEvent`, `BuildGuiEvent`, and `UpdateEvent` to `messages.py`. Custom GUI rendering and per-frame update logic can now be implemented as standard event handlers without needing separate interface protocols.
- Streamlined launch and app APIs: Replaced individual hook and handler arguments in `launch_passive`, `ViewerApp`, and `ViewerHandle` with unified `viewer_handlers` and `sim_handlers` lists.
- Module restructuring: Extracted simulation-side message handling and `ViewerHandle` from `sim_app.py` into a dedicated `viewer_handle.py` module, removing `sim_app.py`.
- Sample updates: Migrated existing examples (such as `implot.py`) to use the new handler pattern and lifecycle events.

PiperOrigin-RevId: 941729322
Change-Id: I93e7c0edf0a13a8dc854f9e2083451f7c25a1825
2026-07-02 09:14:41 -07:00

154 lines
4.7 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 Studio launcher.
Launches the full Studio GUI 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_app
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,
viewer_endpoint: endpoints.ViewerEndpoint,
handlers: list[Any] | None = None,
) -> None:
"""Creates the appropriate viewer and runs the viewer loop.
Args:
config: Configuration specifying the viewer mode and window settings.
viewer_endpoint: Endpoint for communicating with the simulation side.
handlers: Optional list of viewer-side handler instances, which are classes
with methods decorated with ``@handler``.
Raises:
ValueError: If the viewer mode requested in config is unknown.
NotImplementedError: If web mode is requested.
"""
if config.viewer_mode == viewer_protocol.ViewerMode.NATIVE:
from mujoco.experimental.studio import native_viewer # pylint: disable=g-import-not-at-top
viewer = native_viewer.NativeViewer(config)
elif config.viewer_mode == viewer_protocol.ViewerMode.WEB:
raise NotImplementedError('Web viewer not implemented yet')
else:
raise ValueError(f'Unknown viewer mode: {config.viewer_mode!r}')
viewer_app.run_viewer(viewer, viewer_endpoint, handlers=handlers)
def launch_passive(
config: viewer_protocol.ViewerConfig,
*,
viewer_handlers: list[Any] | None = None,
sim_handlers: list[Any] | None = None,
) -> viewer_handle.ViewerHandle:
"""Launches the Studio GUI in a daemon thread without blocking.
The viewer runs the full Studio UI (toolbar, options, inspector) on the
rendering thread. The caller keeps running and pushes state via
``handle.sync()``.
Args:
config: Viewer window configuration.
viewer_handlers: Optional list of viewer-side handler instances, which are
classes with methods decorated with ``@handler``.
sim_handlers: Optional list of sim-side handler 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_handlers),
daemon=True,
)
thread.start()
handle = viewer_handle.ViewerHandle(
sim_endpoint,
is_alive_fn=thread.is_alive,
handlers=sim_handlers,
)
return handle