X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=planime;h=b2b14ddde14f54c4bf4c6a747e9f4f59c0d1091d;hb=d740b990e5e6202dc9f4b5976de67342504add62;hp=32d79058f9e08940df2f51767c06006310163b8a;hpb=251d97caa7aeb7e855efa183798c65163506b1f0;p=utils.git diff --git a/planime b/planime index 32d7905..b2b14dd 100755 --- a/planime +++ b/planime @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash isnum() { grep -xq '[0-9]\+' <<<"$1" @@ -35,7 +35,7 @@ findfile() { } origargs=("$0" "$@") -cmdline=(mplayer -fs) +cmdline=(mplayer -fs -ass) while [ "${1:0:1}" = - ]; do a="$1" @@ -48,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 @@ -63,6 +73,9 @@ file= tqual= if [ $# -eq 0 ]; then nextep=y + if [ -r curser ]; then + base="$base $(&2 @@ -104,31 +127,63 @@ fi case "${file##*.}" in ogm) - defopts=(-aid 1 -sid 0) + aid=1 + sid=0 ;; mkv) - defopts=(-slang eng -alang jpn) + alang=jpn + slang=eng ;; 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") -else - cmdline=("${cmdline[@]}" "${defopts[@]}") + 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") + elif [ "$par" = alang ]; then + unset alang aid + alang="$arg" + elif [ "$par" = aid ]; then + unset alang aid + aid="$arg" + elif [ "$par" = slang ]; then + unset slang sid + slang="$arg" + elif [ "$par" = sid ]; then + unset slang sid + sid="$arg" + fi + done + exec 0<&3 + exec 3<&- +fi + +if [ -n "$alang" ]; then + cmdline=("${cmdline[@]}" -alang "$alang") +elif [ -n "$aid" ]; then + cmdline=("${cmdline[@]}" -aid "$aid") +fi +if [ -n "$slang" ]; then + cmdline=("${cmdline[@]}" -slang "$slang") +elif [ -n "$sid" ]; then + cmdline=("${cmdline[@]}" -sid "$sid") fi if [ "`hostname`" = pc6 ]; then chwp=y; fi @@ -137,10 +192,10 @@ if [ "$chwp" = y ]; then (sleep 2; randomwp) & fi "${cmdline[@]}" "$file" if [ "$nextep" = y ]; then - echo "0. Save and continue" + echo "0. Save and continue (or Space)" echo "1. Continue without saving" - echo "2. Save and exit" - echo "3. Exit 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 @@ -152,14 +207,17 @@ if [ "$nextep" = y ]; then 1) cont=y ;; - 2|$'\e') + 2|"") save=y ;; esac if [ "$save" = y ]; then - echo "$(($ep + 1))" >nextep + let ep++ + echo "$ep" >nextep fi if [ "$cont" = y ]; then exec "${origargs[@]}" + else + echo "nextep is $ep" fi fi