1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
|
#! /bin/bash -e
#set -x
#####################################################################
# #
# Compiles Faust programs to Max6/7/8 externals #
# using double precision samples #
# (c) Grame, 2012-2024 #
# #
#####################################################################
. faustpath
. faustoptflags
. usage.sh
CXXFLAGS+=" $MYGCCFLAGSGENERIC" # So that additional CXXFLAGS can be used
OSCDEFS=""
OSCLIB=""
POLY=""
NOPATCH="0"
NVOICES=-1
EFFECT=""
UNIVERSAL="0"
SOUNDFILE="0"
SOUNDFILEDEFS=""
SOUNDFILELIBS=""
MC=""
OPT=""
US="0"
DS="0"
FILTER="0"
FAUSTFLOAT="double" # By default since Max6
POST="-DPOST"
# path to max SDK
# MAXSDK is declared in faustpath
MAXINC=$MAXSDK/max-includes
MSPINC=$MAXSDK/msp-includes
LINK_FLAGS="-Wl,-U,_object_post,-U,_object_new_imp,-U,_atom_getlong,-U,_atom_getobj,-U,_atom_getsym,-U,_atom_gettype,-U,_atom_setfloat,-U,_atom_setsym,-U,_class_addmethod,-U,_class_new,-U,_class_register,-U,_common_symbols_gettable,-U,_dictionary_appendlong,-U,_dictionary_appendstring,-U,_dictionary_getlong,-U,_dictionary_getstring,-U,_gensym,-U,_jbox_get_color,-U,_jbox_get_nextobject,-U,_jbox_get_object,-U,_jbox_get_varname,-U,_jbox_set_varname,-U,_jmouse_getposition_global,-U,_jpatcher_get_firstobject,-U,_jpatcher_set_dirty,-U,_jpopupmenu_additem,-U,_jpopupmenu_create,-U,_jpopupmenu_destroy,-U,_jpopupmenu_popup,-U,_jrgba_set,-U,_locatefile_extended,-U,_object_alloc,-U,_object_attr_setchar,-U,_object_attr_setsym,-U,_object_classname,-U,_object_classname_compare,-U,_object_error_obtrusive,-U,_object_free,-U,_object_method_imp,-U,_object_method_typed,-U,_object_obex_lookup,-U,_open_dialog,-U,_outlet_append,-U,_outlet_bang,-U,_outlet_delete,-U,_outlet_int,-U,_outlet_list,-U,_outlet_nth,-U,_path_createsysfile,-U,_path_opensysfile,-U,_path_setdefault,-U,_path_topathname,-U,_post,-U,_proxy_getinlet,-U,_saveas_dialog,-U,_strncpy_zero,-U,_sysfile_close,-U,_sysfile_readtextfile,-U,_sysfile_setpos,-U,_sysfile_writetextfile,-U,_sysmem_copyptr,-U,_sysmem_freehandle,-U,_sysmem_handlesize,-U,_sysmem_newhandle,-U,_sysmem_newhandleclear,-U,_jbox_set_color,-U,_path_getdefault,-U,_attr_args_process,-U,_attr_offset_new,-U,_class_addattr,-U,_class_attr_get,-U,_outlet_new,-U,_systhread_mutex_free,-U,_systhread_mutex_lock,-U,_systhread_mutex_new,-U,_systhread_mutex_trylock,-U,_systhread_mutex_unlock"
JSFILE_PATH="ui.js"
createInfoPList()
{
(
echo '<?xml version="1.0" encoding="UTF-8"?>'
echo '<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">'
echo '<plist version="1.0">'
echo '<dict>'
echo ' <key>CFBundleDevelopmentRegion</key>'
echo ' <string>English</string>'
echo ' <key>CFBundleExecutable</key>'
echo " <string>$1</string>"
echo ' <key>CFBundleIconFile</key>'
echo ' <string></string>'
echo ' <key>CFBundleIdentifier</key>'
echo " <string>com.grame.$1</string>"
echo ' <key>CFBundleInfoDictionaryVersion</key>'
echo ' <string>1.0.0</string>'
echo ' <key>CFBundlePackageType</key>'
echo ' <string>iLaX</string>'
echo ' <key>CFBundleSignature</key>'
echo ' <string>max2</string>'
echo ' <key>CFBundleVersion</key>'
echo ' <string>1.0.0</string>'
echo ' <key>CFBundleShortVersionString</key>'
echo ' <string>1.0.0</string>'
echo ' <key>CFBundleLongVersionString</key>'
echo " <string>$1 1.0.0, Copyright 2012-2024 Grame</string>"
echo ' <key>CSResourcesFileMapped</key>'
echo ' <true/>'
echo '</dict>'
echo '</plist>'
) > "$2"
}
echoHelp()
{
usage faust2max6 "[options] [Faust options] <file.dsp>"
require Max/MSP SDK
echo "Compiles Faust programs to Max6 externals using double precision samples (see https://github.com/grame-cncm/faust/tree/master-dev/architecture/max-msp)"
option
options -osc -midi -soundfile
option -soundfile-dynamic "similar to -soundfile, but using the installed libsndfile (so possibly using dynamic link)."
option "-opt native|generic" "activates the best compilation options for the native or generic CPU."
option "-nvoices <num>"
option "-us <factor>"
option "-ds <factor>"
option "-filter <filter>"
option "-effect <effect.dsp>"
option -mc "to activate multi-channels model"
option -native "to compile for the native CPU (otherwise the 'generic' mode is used by default)"
option -universal "to generate a universal (arm/intel) external"
option -nopatch "to deactivate patch generation"
option -nopost "to disable Faust messages to Max console"
option "Faust options"
exit
}
if [ "$#" -eq 0 ]; then
echo 'Please, provide a Faust file to process !'
echo ''
echoHelp
fi
#-------------------------------------------------------------------
# Analyze command arguments :
# faust options -> OPTIONS
# if -omp : -openmp or -fopenmp -> OPENMP
# existing *.dsp files -> FILES
#
#PHASE 2 : dispatch command arguments
while [ $1 ]
do
p=$1
if [ $p = "-help" ] || [ $p = "-h" ]; then
echoHelp
elif [ $p = "-opt" ]; then
shift
OPT=$1
elif [ $p = "-nvoices" ]; then
POLY="POLY1"
shift
NVOICES=$1
if [ $NVOICES -ge 0 ]; then
CXXFLAGS="$CXXFLAGS -DNVOICES=$NVOICES"
fi
elif [ $p = "-effect" ]; then
POLYDEFS="-DPOLY2"
shift
EFFECT=$1
elif [ $p = "-midi" ]; then
MIDIDEFS="-DMIDICTRL"
elif [ $p = "-universal" ]; then
UNIVERSAL="1"
elif [ $p = "-mc" ]; then
MC="-DMC_VERSION"
elif [ $p = "-soundfile-dynamic" ]; then
SOUNDFILE="1"
SOUNDFILEDEFS="-DSOUNDFILE"
SOUNDFILELIBS=`pkg-config --cflags --static --libs sndfile`
elif [ $p = "-soundfile" ]; then
SOUNDFILE="1"
SOUNDFILEDEFS="-DSOUNDFILE -I$FAUSTARCH/max-msp/sndfile"
SFDIR=$FAUSTARCH/max-msp/sndfile
SOUNDFILELIBS_ARM="$SFDIR/arm/libsndfile.a"
SOUNDFILELIBS_INTEL="$SFDIR/intel/libsndfile.a"
elif [ $p = "-osc" ]; then
OSCDEFS="-DOSCCTRL"
OSCLIBS="-lOSCFaust"
elif [ $p = "-nopost" ]; then
POST=""
elif [ $p = "-nopatch" ]; then
NOPATCH="1"
elif [ $p = "-native" ]; then
CXXFLAGS=$MYGCCFLAGS
elif [ $p = "-single" ]; then
FAUSTFLOAT="float"
elif [ $p = "-us" ]; then
shift
US=$1
elif [ $p = "-ds" ]; then
shift
DS=$1
elif [ $p = "-filter" ]; then
shift
FILTER=$1
# '-A path' also added as '-I path' in the C++ command
elif [ $p = "-A" ]; then
shift
CXXFLAGS="$CXXFLAGS -I $1"
OPTIONS="$OPTIONS -A $1"
elif [ ${p:0:1} = "-" ]; then
OPTIONS="$OPTIONS $p"
elif [[ -f "$p" ]] && [ ${p: -4} == ".dsp" ]; then
FILES="$FILES $p"
else
OPTIONS="$OPTIONS $p"
fi
shift
done
#look for polyphonic "nvoices" metadata in the DSP file
grep "declare nvoices" $FILES && POLY="POLY1" 2>/dev/null
#customize CXXFLAGS
CXXFLAGS+=" -fbracket-depth=512"
#-------------------------------------------------------------------
# Check darwin specifics
#
if [[ $(uname) == Darwin || $CROSSTARGET == Darwin ]]; then
EXT="~.mxo"
fi
#-------------------------------------------------------------------
# compile the *.dsp files
#
PATH=$PATH:/usr/local/bin
for p in $FILES; do
CUR=$(pwd)
f=$(basename "$p")
SRCDIR=$(dirname "$p")
# creates a temporary dir
TDR=$(mktemp -d faust.XXX)
TMP="$TDR/${f%.dsp}"
mkdir "$TMP"
# discover best compilation options
if [ "$OPT" = "generic" ]; then
echo "Look for best compilation options in 'generic' mode..."
OPTIONS="$OPTIONS $(faustbench-llvm -notrace -generic $OPTIONS $f)"
echo $OPTIONS
elif [ "$OPT" = "native" ]; then
echo "Look for best compilation options in 'native' mode..."
OPTIONS="$OPTIONS $(faustbench-llvm -notrace $OPTIONS $f)"
echo $OPTIONS
fi
# -double is used by default
if [ "$FAUSTFLOAT" = "double" ]; then
OPTIONS="$OPTIONS -double"
fi
# compile Faust to c++
if [ "$EFFECT" = "" ]; then
faust -i -cn ${f%.dsp} -json -a $FAUSTARCH/max-msp/max-msp64.cpp $OPTIONS "$SRCDIR/$f" -o "$TMP/${f%.dsp}.cpp" || exit
else
faust -i -cn ${f%.dsp} -json -a $FAUSTARCH/max-msp/max-msp64.cpp $OPTIONS "$SRCDIR/$f" -o "$TMP/${f%.dsp}.cpp" || exit
faust -i -cn effect -a $FAUSTARCH/minimal-effect.cpp $OPTIONS "$SRCDIR/$EFFECT" -o "$TMP/effect.h" || exit
fi
# compile self-contained expansion (without $OPTIONS which is not needed)
faust -e "$SRCDIR/$f" $OPTIONS -o "$TMP/${f%.dsp}-exp.dsp"
# compile c++ to binary
(
# FAUST_FILE_NAME is always added
cd "$TMP"
install -d "${f%.dsp}$EXT/Contents/MacOS"
# universal binaries produced on M1
if [[ $(uname -p) = arm || "$UNIVERSAL" = "1" ]]; then
$CXX $CXXFLAGS -DFAUST_FILE_NAME="\"$f\"" -arch arm64 -mmacosx-version-min=10.9 -Wfatal-errors -framework Carbon $MC $POLYDEFS $MIDIDEFS $SOUNDFILEDEFS $OSCDEFS $POST -DDOWN_SAMPLING=$DS -DUP_SAMPLING=$US -DFILTER_TYPE=$FILTER -DFAUSTFLOAT=$FAUSTFLOAT -I ../../ -I"$MAXINC" -I"$MSPINC" -F"$MAXINC" -F"$MSPINC" -framework MaxAudioAPI $SOUNDFILELIBS $SOUNDFILELIBS_ARM $OSCLIBS $LINK_FLAGS -bundle "${f%.dsp}.cpp" -o "${f%.dsp}$EXT/Contents/MacOS/${f%.dsp}~.arm64"
$CXX $CXXFLAGS -DFAUST_FILE_NAME="\"$f\"" -arch x86_64 -mmacosx-version-min=10.9 -Wfatal-errors -framework Carbon $MC $POLYDEFS $MIDIDEFS $SOUNDFILEDEFS $OSCDEFS $POST -DDOWN_SAMPLING=$DS -DUP_SAMPLING=$US -DFILTER_TYPE=$FILTER -DFAUSTFLOAT=$FAUSTFLOAT -I ../../ -I"$MAXINC" -I"$MSPINC" -F"$MAXINC" -F"$MSPINC" -framework MaxAudioAPI $SOUNDFILELIBS $SOUNDFILELIBS_INTEL $OSCLIBS $LINK_FLAGS -bundle "${f%.dsp}.cpp" -o "${f%.dsp}$EXT/Contents/MacOS/${f%.dsp}~.x86_64"
$LIPO -create "${f%.dsp}$EXT/Contents/MacOS/${f%.dsp}~.arm64" "${f%.dsp}$EXT/Contents/MacOS/${f%.dsp}~.x86_64" -output "${f%.dsp}$EXT/Contents/MacOS/${f%.dsp}~" || exit
else
# native target
$CXX $CXXFLAGS -DFAUST_FILE_NAME="\"$f\"" -mmacosx-version-min=10.9 -Wfatal-errors -framework Carbon $MC $POLYDEFS $MIDIDEFS $SOUNDFILEDEFS $OSCDEFS $POST -DDOWN_SAMPLING=$DS -DUP_SAMPLING=$US -DFILTER_TYPE=$FILTER -DFAUSTFLOAT=$FAUSTFLOAT -I ../../ -I"$MAXINC" -I"$MSPINC" -F"$MAXINC" -F"$MSPINC" -framework MaxAudioAPI $SOUNDFILELIBS $SOUNDFILELIBS_INTEL $OSCLIBS $LINK_FLAGS -bundle "${f%.dsp}.cpp" -o "${f%.dsp}$EXT/Contents/MacOS/${f%.dsp}~"
fi
if which codesign > /dev/null; then
codesign --sign - --deep --force "${f%.dsp}$EXT"
fi
) > /dev/null || exit
rm -rf "$SRCDIR/${f%.dsp}$EXT"
# Keep .dsp, self-contained expanded .dsp and self-contained .cpp files in the plugin
cp "$TMP/${f%.dsp}.cpp" "$TMP/${f%.dsp}$EXT"
cp "$TMP/${f%.dsp}-exp.dsp" "$TMP/${f%.dsp}$EXT"
cp "$SRCDIR/$f" "$TMP/${f%.dsp}$EXT"
# Create Info.plist
createInfoPList "${f%.dsp}~" "$TMP/${f%.dsp}$EXT/Contents/Info.plist"
if [ "$SOUNDFILE" = "1" ]; then
# get all soundfiles from the JSON file
cat $p.json | awk '
BEGIN { FS=":"; SOFI=0; }
/"soundfile"/ { SOFI=1; }
/"url"/ {
if (SOFI) {
match($2, /"[^"]*/);
split(substr($2, RSTART+2, RLENGTH-3), res, ";");
for (x in res) print substr(res[x], 2, length(res[x])-2);
SOFI=0;
}
}
' > $p-tmp.txt
# copy found soundfiles in the final binary
for snd in $(cat $p-tmp.txt); do
if [ -f $snd ]; then
if [ ${snd:0:1} = "/" ]; then
echo "Warning: soundfile with absolute path is not copied !"
else
#create destination path and possibly create directory
sfpath="$TMP/${f%.dsp}$EXT/$(dirname $snd)/"
if ! [ -d $sfpath ]; then
echo "Create $sfpath"
mkdir $sfpath
fi
echo "Copy $snd in ${f%.dsp}$EXT"
cp $snd $sfpath
fi
else
echo "Error: file $snd not found !"
fi
done
rm $p-tmp.txt
fi
cp -r "$TMP/${f%.dsp}$EXT" "$SRCDIR/${f%.dsp}$EXT"
rm -rf "$TDR"
rm -f $p.json
# collect binary file name for FaustGIDE
BINARIES="$BINARIES$SRCDIR/${f%.dsp}$EXT;"
# create Max patch
if [ "$NOPATCH" = "0" ]; then
if [ "$POLY" = "POLY1" ]; then
if [ $MC = "-DMC_VERSION" ]; then
cat $FAUSTARCH/max-msp/mc-wrapper-poly.maxpat > ${f%.dsp}-temp1.maxpat
else
cat $FAUSTARCH/max-msp/wrapper-poly.maxpat > ${f%.dsp}-temp1.maxpat
fi
else
if [ $MC = "-DMC_VERSION" ]; then
cat $FAUSTARCH/max-msp/mc-wrapper.maxpat > ${f%.dsp}-temp1.maxpat
else
cat $FAUSTARCH/max-msp/wrapper.maxpat > ${f%.dsp}-temp1.maxpat
fi
fi
sed -e "s/DSP_NAME/"${f%.dsp}"~/g" ${f%.dsp}-temp1.maxpat >> ${f%.dsp}-temp2.maxpat
sed -e "s/UI_FILE/"$JSFILE_PATH"/g" ${f%.dsp}-temp2.maxpat > ${f%.dsp}.maxpat
# copy JavaScript UI file
cp $FAUSTARCH/max-msp/$JSFILE_PATH .
rm ${f%.dsp}-temp1.maxpat
rm ${f%.dsp}-temp2.maxpat
fi
done
if [ "$NOPATCH" = "0" ]; then
BINARIES="$BINARIES ${f%.dsp}.maxpat $JSFILE_PATH"
fi
echo $BINARIES
|