X-Git-Url: http://dolda2000.com/gitweb/?p=utils.git;a=blobdiff_plain;f=planime;h=ed79ec9c29a7f52742624d1d86c4c283f508ec6f;hp=41332ae3c369b71a37dae46b3c6a033ee27bf81f;hb=83d0edbb4ed4641ad1b7452a53aa6a66f8d55a83;hpb=4c7a7e7043150ed7b1d49ceba84f9d67785d4185 diff --git a/planime b/planime index 41332ae..ed79ec9 100755 --- a/planime +++ b/planime @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash isnum() { grep -xq '[0-9]\+' <<<"$1" @@ -34,7 +34,8 @@ findfile() { return 1 } -cmdline=(mplayer -fs) +origargs=("$0" "$@") +cmdline=(mplayer -fs -ass) while [ "${1:0:1}" = - ]; do a="$1" @@ -47,6 +48,16 @@ while [ "${1:0:1}" = - ]; do -t) cmdline=("${cmdline[@]}" -ao oss:/dev/dsp1) ;; + -A) + while :; do + a="$1" + shift + if [ "$a" = \; ]; then + break; + fi + cmdline=("${cmdline[@]}" "$a") + done + ;; -s) savepar="$1" shift @@ -62,6 +73,9 @@ file= tqual= if [ $# -eq 0 ]; then nextep=y + if [ -r curser ]; then + base="$base $(&2 @@ -110,22 +134,31 @@ case "${file##*.}" in ;; esac -ifile=".${ep}.info" +ifile=".${file}.info" if [ -n "$savepar" ]; then if [ -r "$ifile" ]; then - egrep -v "^${savepar}:" "$ifile" >"$ifile.new" + egrep -v "^${savepar} " "$ifile" >"$ifile.new" mv -f "$ifile.new" "$ifile" fi - echo "$savepar: $saveval" >>"$ifile" + echo "$savepar $saveval" >>"$ifile" exit 0 fi unset delay if [ -r "$ifile" ]; then - delay="`sed -n 's/delay *: *\([^ ]*\)$/\1/p' <"$ifile"`" - cmdline=("${cmdline[@]}" -delay "$delay") + exec 3<&0 + exec 0<"$ifile" + while read par arg; do + if [ "$par" = delay ]; then + cmdline=("${cmdline[@]}" -delay "$arg") + elif [ "$par" = aspect ]; then + cmdline=("${cmdline[@]}" -aspect "$arg") + fi + done + exec 0<&3 + exec 3<&- else cmdline=("${cmdline[@]}" "${defopts[@]}") fi @@ -134,3 +167,34 @@ if [ "`hostname`" = pc6 ]; then chwp=y; fi if [ "$chwp" = y ]; then (sleep 2; randomwp) & fi "${cmdline[@]}" "$file" + +if [ "$nextep" = y ]; then + echo "0. Save and continue (or Space)" + echo "1. Continue without saving" + echo "2. Save and exit (or Enter)" + echo "3. Exit without saving (or any key)" + IFS= read -sn1 c + save=n + cont=n + case "$c" in + 0|" ") + save=y + cont=y + ;; + 1) + cont=y + ;; + 2|"") + save=y + ;; + esac + if [ "$save" = y ]; then + let ep++ + echo "$ep" >nextep + fi + if [ "$cont" = y ]; then + exec "${origargs[@]}" + else + echo "nextep is $ep" + fi +fi