X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=planime;h=3dab1dd4c5d4c588bb5e106f9178a691280b4872;hb=3b1899b8ef7b606ae925831c7164942da8713267;hp=90896f7c337b5dd2e75a1e0d33ed6bb8cff49c04;hpb=932c90a8c3184647e719d0e25de4dbf098758490;p=utils.git diff --git a/planime b/planime index 90896f7..3dab1dd 100755 --- a/planime +++ b/planime @@ -4,8 +4,20 @@ isnum() { grep -xq '[0-9]\+' <<<"$1" } +scorefile() { + if [ "${1##*.}" = mkv ]; then + echo 10 + elif [ "${1##*.}" = ogm ]; then + echo 5 + else + echo 0 + fi +} + findfile() { - local file tail eq eqt m + if [ -n "$debug" ]; then echo "finding base='$1', ep='$2', qual='$3'" >&2; fi + local file tail eq eqt m matches max score + matches=() for file in "$1"*; do tail="${file#$1}" eq="${tail%.*}" @@ -26,26 +38,41 @@ findfile() { fi if [ "$m" = y ]; then if [ "$eqt" = "$3" -o "$eqt" = "($3)" ]; then - echo "$file" - return 0 + matches=("${matches[@]}" "$file") fi fi done - return 1 + if [ ${#matches[@]} -lt 1 ]; then return 1; fi + max= + for m in "${matches[@]}"; do + score="$(scorefile "$m")" + if [ -n "$debug" ]; then echo "found \`$m': score $score" >&2; fi + if [ -z "$max" ] || [ "$score" -gt "$max" ]; then + max="$score" + file="$m" + fi + done + if [ -n "$debug" ]; then echo "using \`$file'" >&2; fi + echo "$file" + return 0 } origargs=("$0" "$@") cmdline=(mplayer -fs -ass) -unset pretend +debug= +unset pretend printfile while [ "${1:0:1}" = - ]; do a="$1" shift case "$a" in -h) - echo "usage: planime [-htC] [-s PAR VAL] [NAME-QUAL] [EP|.] [TYPE-QUAL]" >&2 + echo "usage: planime [-fdhtC] [-A PLAYER-ARGS... ;] [-s PAR VAL] [--] [NAME-QUAL] [EP|.] [TYPE-QUAL]" >&2 exit 0 ;; + -d) + debug=y + ;; -t) cmdline=("${cmdline[@]}" -ao oss:/dev/dsp1) ;; @@ -68,6 +95,16 @@ while [ "${1:0:1}" = - ]; do saveval="$1" shift ;; + -f) + printfile=y + ;; + --) + break + ;; + *) + echo "planime: unknown option \`$a'" + exit 1 + ;; esac done @@ -196,6 +233,8 @@ if [ "`hostname`" = pc6 -o "`hostname`" = pc7 -a "$DISPLAY" = :1 ]; then chwp=y; if [ -n "$pretend" ]; then echo "${cmdline[@]}" "$file" +elif [ -n "$printfile" ]; then + echo "$file" else if [ "$chwp" = y ]; then (sleep 2; randomwp) & fi "${cmdline[@]}" "$file"