version 1.40.130 release
[feisty_meow.git] / scripts / multimedia / sound_play.sh
index f499d30ba349a28b4d868c7c4ab48fafa2a7082f..382d773852adfab8cca3a66c4c990127355efe05 100644 (file)
@@ -2,7 +2,7 @@
 
 # play the sound files specified.
 
-source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"  # provides psfind.
+source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
 
 if [ $# -lt 1 ]; then
   #echo no sound file specified.
@@ -11,18 +11,26 @@ fi
 
 export PLAYCMD=/usr/bin/play
 if [ ! -f "$PLAYCMD" ]; then
-  PLAYCMD=echo
+  PLAYCMD='echo Unknown sound player...'
 fi
 
-if [ ! -z "$(psfind artsd)" ]; then
-  # we see artsd running...
+if [ ! -z "$(which afplay)" ]; then
+#echo we see afplay available...
+  PLAYCMD=afplay
+elif [ ! -z "$(psfind artsd)" ]; then
+#echo we see artsd running...
   PLAYCMD=artsplay
 elif [ ! -z "$(psfind esd)" ]; then
-  # we see esd running...
+#echo  we see esd running...
   PLAYCMD=esdplay
+elif [ ! -z "$(psfind pulseaudio)" ]; then
+#echo we see pulse running...
+  PLAYCMD="padsp aplay"
 elif [ ! -z "$WINDIR" ]; then
-  # kludge for win32; we provide our own sound player.
+#echo kludge for win32; we provide our own sound player.
   PLAYCMD=playsound
+else
+  echo "I don't know how to play sounds for this OS and sound system."
 fi
 
 # play the sounds individually; playsound can handle multiple files, but