230e2780de
The `launch_passive` function launches the GUI viewer in a non-blocking manner, allowing the Python script or REPL to continue execution. The viewer is automatically kept up to date with any subsequent modifications to mjModel and mjData. Note that when run inside a REPL (including IPython), `launch_passive` is functionally identical to `launch_repl`. On Linux and Windows, this is achieved by spawning a new thread and launching the GUI there. On macOS, this is not possible as all Cocoa API calls must be made on the "macOS main thread", which is always the first thread launched in a process and carries the `com.apple.main-thread` dispatch queue. We also cannot simply trampoline from a Python script on the main thread into the user's script on a side thread because CPython's signal handler can only be installed on the "Python main thread". Putting the user's script in a side thread means that it cannot e.g. gracefully handle SIGINT by catching a KeyboardInterrupt exception. To work around this, we ship a custom Python launcher on macOS called `mjpython`. This launcher is a native binary that spawns a pthread and initialize the Python interpreter on that thread, thus allowing "Python main thread" and "macOS main thread" to represent two distinct threads. From Python's point of view, the "macOS main thread" is a secondary thread that runs a loop that continuously empties a Queue of (mjModel, mjData) and launches a viewer. PiperOrigin-RevId: 517167868 Change-Id: Icac9d2126bbb4760d47e0b9300e0a979cffa4338
409 lines
14 KiB
Python
409 lines
14 KiB
Python
# Copyright 2022 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
|
||
#
|
||
# http://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.
|
||
# ==============================================================================
|
||
"""Interactive GUI viewer for MuJoCo."""
|
||
|
||
import abc
|
||
import atexit
|
||
import code
|
||
import inspect
|
||
import math
|
||
import os
|
||
import sys
|
||
import threading
|
||
import time
|
||
from typing import Callable, Optional, Tuple, Union
|
||
|
||
import glfw
|
||
import mujoco
|
||
from mujoco import _simulate
|
||
import numpy as np
|
||
|
||
if not glfw._glfw: # pylint: disable=protected-access
|
||
raise RuntimeError('GLFW dynamic library handle is not available')
|
||
else:
|
||
_simulate.setglfwdlhandle(glfw._glfw._handle) # pylint: disable=protected-access
|
||
|
||
# Logarithmically spaced realtime slow-down coefficients (percent).
|
||
PERCENT_REALTIME = (
|
||
100, 80, 66, 50, 40, 33, 25, 20, 16, 13,
|
||
10, 8, 6.6, 5, 4, 3.3, 2.5, 2, 1.6, 1.3,
|
||
1, 0.8, 0.66, 0.5, 0.4, 0.33, 0.25, 0.2, 0.16, 0.13,
|
||
0.1
|
||
)
|
||
|
||
# Maximum time mis-alignment before re-sync.
|
||
MAX_SYNC_MISALIGN = 0.1
|
||
|
||
# Fraction of refresh available for simulation.
|
||
SIM_REFRESH_FRACTION = 0.7
|
||
|
||
CallbackType = Callable[[mujoco.MjModel, mujoco.MjData], None]
|
||
LoaderType = Callable[[], Tuple[mujoco.MjModel, mujoco.MjData]]
|
||
|
||
# Loader function that also returns a file path for the GUI to display.
|
||
_LoaderWithPathType = Callable[[], Tuple[mujoco.MjModel, mujoco.MjData, str]]
|
||
_InternalLoaderType = Union[LoaderType, _LoaderWithPathType]
|
||
|
||
Simulate = _simulate.Simulate
|
||
|
||
|
||
# Abstract base dispatcher class for systems that require UI calls to be made
|
||
# on a specific thread (e.g. macOS). This is subclassed by system-specific
|
||
# Python launcher (mjpython) to implement the required dispatching mechanism.
|
||
class _MjPythonBase(metaclass=abc.ABCMeta):
|
||
|
||
def launch_on_ui_thread(self, model: mujoco.MjModel, data: mujoco.MjData):
|
||
pass
|
||
|
||
# When running under mjpython, the launcher initializes this object.
|
||
_MJPYTHON: Optional[_MjPythonBase] = None
|
||
|
||
|
||
def _file_loader(path: str) -> _LoaderWithPathType:
|
||
"""Loads an MJCF model from file path."""
|
||
|
||
def load(path=path) -> Tuple[mujoco.MjModel, mujoco.MjData, str]:
|
||
m = mujoco.MjModel.from_xml_path(path)
|
||
d = mujoco.MjData(m)
|
||
return m, d, path
|
||
|
||
return load
|
||
|
||
|
||
def _reload(
|
||
simulate: Simulate, loader: _InternalLoaderType
|
||
) -> Optional[Tuple[mujoco.MjModel, mujoco.MjData]]:
|
||
"""Internal function for reloading a model in the viewer."""
|
||
try:
|
||
load_tuple = loader()
|
||
except Exception as e: # pylint: disable=broad-except
|
||
simulate.load_error = str(e)
|
||
else:
|
||
m, d = load_tuple[:2]
|
||
|
||
# If the loader does not raise an exception then we assume that it
|
||
# successfully created mjModel and mjData. This is specified in the type
|
||
# annotation, but we perform a runtime assertion here as well to prevent
|
||
# possible segmentation faults.
|
||
assert m is not None and d is not None
|
||
|
||
path = load_tuple[2] if len(load_tuple) == 3 else ''
|
||
simulate.load(path, m, d)
|
||
mujoco.mj_forward(m, d)
|
||
|
||
return m, d
|
||
|
||
|
||
def _physics_loop(simulate: Simulate, loader: Optional[_InternalLoaderType]):
|
||
"""Physics loop for the GUI, to be run in a separate thread."""
|
||
m: mujoco.MjModel = None
|
||
d: mujoco.MjData = None
|
||
ctrlnoise = np.array([])
|
||
reload = True
|
||
|
||
# CPU-sim synchronization point.
|
||
synccpu = 0.0
|
||
syncsim = 0.0
|
||
|
||
# Run until asked to exit.
|
||
while not simulate.exitrequest:
|
||
if simulate.droploadrequest:
|
||
simulate.droploadrequest = 0
|
||
loader = _file_loader(simulate.dropfilename)
|
||
reload = True
|
||
|
||
if simulate.uiloadrequest:
|
||
simulate.uiloadrequest_decrement()
|
||
reload = True
|
||
|
||
if reload and loader is not None:
|
||
result = _reload(simulate, loader)
|
||
if result is not None:
|
||
m, d = result
|
||
ctrlnoise = np.zeros((m.nu,))
|
||
|
||
reload = False
|
||
|
||
# Sleep for 1 ms or yield, to let main thread run.
|
||
if simulate.run != 0 and simulate.busywait != 0:
|
||
time.sleep(0)
|
||
else:
|
||
time.sleep(0.001)
|
||
|
||
with simulate.lock():
|
||
if m is not None:
|
||
assert d is not None
|
||
if simulate.run:
|
||
# Record CPU time at start of iteration.
|
||
startcpu = glfw.get_time()
|
||
|
||
elapsedcpu = startcpu - synccpu
|
||
elapsedsim = d.time - syncsim
|
||
|
||
# Inject noise.
|
||
if simulate.ctrlnoisestd != 0.0:
|
||
# Convert rate and scale to discrete time (Ornstein–Uhlenbeck).
|
||
rate = math.exp(-m.opt.timestep /
|
||
max(simulate.ctrlnoiserate, mujoco.mjMINVAL))
|
||
scale = simulate.ctrlnoisestd * math.sqrt(1 - rate * rate)
|
||
|
||
for i in range(m.nu):
|
||
# Update noise.
|
||
ctrlnoise[i] = (
|
||
rate * ctrlnoise[i] + scale * mujoco.mju_standardNormal(None))
|
||
|
||
# Apply noise.
|
||
d.ctrl[i] = ctrlnoise[i]
|
||
|
||
# Requested slow-down factor.
|
||
slowdown = 100 / PERCENT_REALTIME[simulate.real_time_index]
|
||
|
||
# Misalignment: distance from target sim time > MAX_SYNC_MISALIGN.
|
||
misaligned = abs(elapsedcpu / slowdown -
|
||
elapsedsim) > MAX_SYNC_MISALIGN
|
||
|
||
# Out-of-sync (for any reason): reset sync times, step.
|
||
if (elapsedsim < 0 or elapsedcpu < 0 or synccpu == 0 or misaligned or
|
||
simulate.speed_changed):
|
||
# Re-sync.
|
||
synccpu = startcpu
|
||
syncsim = d.time
|
||
simulate.speed_changed = False
|
||
|
||
# Clear old perturbations, apply new.
|
||
d.xfrc_applied[:, :] = 0
|
||
simulate.applyposepertubations(0) # Move mocap bodies only.
|
||
simulate.applyforceperturbations()
|
||
|
||
# Run single step, let next iteration deal with timing.
|
||
mujoco.mj_step(m, d)
|
||
|
||
# In-sync: step until ahead of cpu.
|
||
else:
|
||
measured = False
|
||
prevsim = d.time
|
||
refreshtime = SIM_REFRESH_FRACTION / simulate.refresh_rate
|
||
# Step while sim lags behind CPU and within refreshtime.
|
||
while (((d.time - syncsim) * slowdown <
|
||
(glfw.get_time() - synccpu)) and
|
||
((glfw.get_time() - startcpu) < refreshtime)):
|
||
# Measure slowdown before first step.
|
||
if not measured and elapsedsim:
|
||
simulate.measured_slowdown = elapsedcpu / elapsedsim
|
||
measured = True
|
||
|
||
# Clear old perturbations, apply new.
|
||
d.xfrc_applied[:, :] = 0
|
||
simulate.applyposepertubations(0) # Move mocap bodies only.
|
||
simulate.applyforceperturbations()
|
||
|
||
# Call mj_step.
|
||
mujoco.mj_step(m, d)
|
||
|
||
# Break if reset.
|
||
if d.time < prevsim:
|
||
break
|
||
else: # simulate.run is False: GUI is paused.
|
||
# Apply pose perturbation.
|
||
simulate.applyposepertubations(1) # Move mocap and dynamic bodies.
|
||
|
||
# Run mj_forward, to update rendering and joint sliders.
|
||
mujoco.mj_forward(m, d)
|
||
|
||
|
||
def _launch_internal(model: Optional[mujoco.MjModel] = None,
|
||
data: Optional[mujoco.MjData] = None,
|
||
*,
|
||
run_physics_thread: bool = True,
|
||
loader: Optional[_InternalLoaderType] = None,
|
||
simulate: Optional[Simulate] = None) -> None:
|
||
"""Internal API, so that the public API has more readable type annotations."""
|
||
if model is None and data is not None:
|
||
raise ValueError('mjData is specified but mjModel is not')
|
||
elif callable(model) and data is not None:
|
||
raise ValueError(
|
||
'mjData should not be specified when an mjModel loader is used')
|
||
elif loader is not None and model is not None:
|
||
raise ValueError('model and loader are both specified')
|
||
|
||
if loader is None and model is not None:
|
||
|
||
def _loader(m=model, d=data) -> Tuple[mujoco.MjModel, mujoco.MjData]:
|
||
if d is None:
|
||
d = mujoco.MjData(m)
|
||
return m, d
|
||
|
||
loader = _loader
|
||
|
||
# The simulate object encapsulates the UI.
|
||
if simulate is None:
|
||
simulate = Simulate()
|
||
|
||
# Initialize GLFW if not using mjpython.
|
||
if _MJPYTHON is None:
|
||
if not glfw.init():
|
||
raise mujoco.FatalError('could not initialize GLFW')
|
||
atexit.register(glfw.terminate)
|
||
|
||
side_thread = None
|
||
if run_physics_thread:
|
||
side_thread = threading.Thread(
|
||
target=_physics_loop, args=(simulate, loader))
|
||
else:
|
||
side_thread = threading.Thread(
|
||
target=_reload, args=(simulate, loader))
|
||
|
||
def make_exit_requester(simulate):
|
||
def exit_requester():
|
||
simulate.exitrequest = True
|
||
return exit_requester
|
||
|
||
exit_requester = make_exit_requester(simulate)
|
||
atexit.register(exit_requester)
|
||
|
||
side_thread.start()
|
||
simulate.renderloop()
|
||
atexit.unregister(exit_requester)
|
||
side_thread.join()
|
||
|
||
|
||
def launch(model: Optional[mujoco.MjModel] = None,
|
||
data: Optional[mujoco.MjData] = None,
|
||
*,
|
||
run_physics_thread: bool = True,
|
||
loader: Optional[LoaderType] = None) -> None:
|
||
"""Launches the Simulate GUI."""
|
||
_launch_internal(
|
||
model, data, run_physics_thread=run_physics_thread, loader=loader)
|
||
|
||
|
||
def launch_from_path(path: str) -> None:
|
||
"""Launches the Simulate GUI from file path."""
|
||
_launch_internal(loader=_file_loader(path))
|
||
|
||
|
||
def launch_passive(model: mujoco.MjModel, data: mujoco.MjData) -> None:
|
||
"""Launches a passive Simulate GUI without blocking the running thread."""
|
||
if not isinstance(model, mujoco.MjModel):
|
||
raise ValueError(f'`model` is not a mujoco.MjModel: got {model!r}')
|
||
if not isinstance(data, mujoco.MjData):
|
||
raise ValueError(f'`data` is not a mujoco.MjData: got {data!r}')
|
||
if sys.platform != 'darwin':
|
||
thread = threading.Thread(
|
||
target=_launch_internal,
|
||
args=(model, data),
|
||
kwargs=dict(run_physics_thread=False),
|
||
)
|
||
thread.daemon = True
|
||
thread.start()
|
||
else:
|
||
if not isinstance(_MJPYTHON, _MjPythonBase):
|
||
raise RuntimeError(
|
||
'`launch_passive` requires that the Python script be run under '
|
||
'`mjpython`')
|
||
_MJPYTHON.launch_on_ui_thread(model, data)
|
||
|
||
|
||
def launch_repl(model: mujoco.MjModel, data: mujoco.MjData) -> None:
|
||
"""Launches the Simulate GUI in REPL mode."""
|
||
ipython_shell = None
|
||
try:
|
||
import IPython # pylint: disable=g-import-not-at-top
|
||
ipython_shell = IPython.get_ipython()
|
||
ipython_is_terminal_interactive_shell = isinstance(
|
||
ipython_shell,
|
||
IPython.terminal.interactiveshell.TerminalInteractiveShell)
|
||
except ImportError:
|
||
ipython_is_terminal_interactive_shell = False
|
||
|
||
simulate = Simulate()
|
||
viewer_is_running = True
|
||
|
||
def start_shell(global_variables):
|
||
if ipython_is_terminal_interactive_shell:
|
||
ipython_shell.execution_count += 1
|
||
|
||
# A SQLite connection can only be used on the same thread that opened it.
|
||
# We cache the existing connection and reopen on the current thread.
|
||
old_db = ipython_shell.history_manager.db
|
||
ipython_shell.history_manager.init_db()
|
||
ipython_shell.history_manager.new_session()
|
||
|
||
try:
|
||
# Replicate IPython main loop without exiting on keyboard interrupt,
|
||
# unless the viewer window has already been closed.
|
||
# (https://github.com/ipython/ipython/blob/8.9.0/IPython/terminal/interactiveshell.py#L701)
|
||
while viewer_is_running and ipython_shell.keep_running:
|
||
print(ipython_shell.separate_in, end='')
|
||
try:
|
||
c = ipython_shell.prompt_for_code()
|
||
except EOFError:
|
||
if not ipython_shell.confirm_exit or ipython_shell.ask_yes_no(
|
||
'Do you really want to exit ([y]/n)?', 'y', 'n'):
|
||
ipython_shell.ask_exit()
|
||
if not ipython_shell.keep_running and simulate is not None:
|
||
simulate.exitrequest = True
|
||
else:
|
||
if c:
|
||
ipython_shell.run_cell(c, store_history=True)
|
||
finally:
|
||
# Close the temporary history DB connection and restore the old one.
|
||
ipython_shell.history_manager.end_session()
|
||
ipython_shell.history_manager.db.close()
|
||
ipython_shell.history_manager.db = old_db
|
||
ipython_shell.execution_count -= 1
|
||
else:
|
||
code.InteractiveConsole(locals=global_variables).interact()
|
||
|
||
# End IPython history session on the main thread. We will need to open
|
||
# a new session in the REPL thread.
|
||
if ipython_is_terminal_interactive_shell:
|
||
ipython_shell.history_manager.end_session()
|
||
|
||
try:
|
||
# Continue the IPython REPL session in a separate thread.
|
||
repl_thread = threading.Thread(
|
||
target=start_shell, args=(inspect.stack()[1][0].f_globals,))
|
||
repl_thread.start()
|
||
|
||
# Launch the viewer on the main thread.
|
||
_launch_internal(
|
||
model, data, run_physics_thread=False, simulate=simulate)
|
||
simulate = None
|
||
|
||
# Wait until the REPL thread quits, then restore the IPython history
|
||
# DB session on the main thread.
|
||
viewer_is_running = False
|
||
repl_thread.join()
|
||
finally:
|
||
if ipython_is_terminal_interactive_shell:
|
||
ipython_shell.history_manager.new_session()
|
||
|
||
|
||
if __name__ == '__main__':
|
||
from absl import app # pylint: disable=g-import-not-at-top
|
||
from absl import flags # pylint: disable=g-import-not-at-top
|
||
|
||
_MJCF_PATH = flags.DEFINE_string('mjcf', None, 'Path to MJCF file.')
|
||
|
||
def main(argv) -> None:
|
||
del argv
|
||
if _MJCF_PATH.value is not None:
|
||
launch_from_path(os.path.expanduser(_MJCF_PATH.value))
|
||
else:
|
||
launch()
|
||
|
||
app.run(main)
|