# # This script adds Mitsuba to the current path. # It works with both Bash and Zsh. # # NOTE: this script must be sourced and not run, i.e. # . setpath.sh for Bash # source setpath.sh for Zsh or Bash # if [ "$BASH_VERSION" ]; then MITSUBA_DIR=$(dirname "$BASH_SOURCE") export MITSUBA_DIR=$(builtin cd "$MITSUBA_DIR"; builtin pwd) elif [ "$ZSH_VERSION" ]; then export MITSUBA_DIR=$(dirname "$0:A") fi pyver=`python --version 2>&1 | grep -oE '([[:digit:]].[[:digit:]])'` if [[ "$(uname)" == 'Darwin' ]]; then export PYTHONPATH="$MITSUBA_DIR/Mitsuba.app/python/$pyver:$PYTHONPATH" mitsuba_plugin_dir="$MITSUBA_DIR/Mitsuba.app/plugins" else export PYTHONPATH="$MITSUBA_DIR/dist/python:$MITSUBA_DIR/dist/python/$pyver:$PYTHONPATH" mitsuba_plugin_dir="$MITSUBA_DIR/dist/plugins" fi unset pyver if [[ ! -z "$ZSH_VERSION" && -d "$mitsuba_plugin_dir" ]]; then # Zsh autocomplete for mitsuba, mtsutil, and mtssrv mitsuba_plugins=$(ls -1 "$mitsuba_plugin_dir" | grep -oE '\w+(\.so|\.dylib)' | sed 's/.so$//;s/.dylib$//') compdef "_arguments '-c[connect to host(s)]:host:_hosts' '-s[connect to list of hosts in a file]:hostfile:_files' '-o[output file]:out:_files' '*:scene:_files -g \*.\(xml\|XML\)'" mitsuba compdef "_arguments '-c[connect to host(s)]:host:_hosts' '-s[connect to list of hosts in a file]:hostfile:_files' '1:plugins:($mitsuba_plugins)' '*:utilargs:_files'" mtsutil compdef "_arguments '-c[connect to host(s)]:host:_hosts' '-s[connect to list of hosts in a file]:hostfile:_files'" mtssrv unset mitsuba_plugins fi unset mitsuba_plugin_dir if [[ "$(uname)" == 'Darwin' ]]; then export PATH="$MITSUBA_DIR/Mitsuba.app/Contents/MacOS:$PATH" else export LD_LIBRARY_PATH="$MITSUBA_DIR/dist:$LD_LIBRARY_PATH" export PATH="$MITSUBA_DIR/dist:$PATH" # Generate core dumps if something goes wrong ulimit -c 1000000000 fi