Commit | Line | Data |
---|---|---|
94bf9c94 | 1 | #!/bin/bash |
40777a19 | 2 | |
25378dd8 | 3 | isnum() { |
4 | grep -xq '[0-9]\+' <<<"$1" | |
5 | } | |
6 | ||
9fc0aa3b | 7 | scorefile() { |
8 | if [ "${1##*.}" = mkv ]; then | |
9 | echo 10 | |
10 | elif [ "${1##*.}" = ogm ]; then | |
11 | echo 5 | |
12 | else | |
13 | echo 0 | |
14 | fi | |
15 | } | |
16 | ||
d67a5cdd FT |
17 | findbase() { |
18 | if [ -r aliases ]; then | |
19 | while read alias rest; do | |
20 | if [ "$alias" = "$1" ]; then | |
21 | echo "$rest" | |
22 | return | |
23 | fi | |
24 | done <aliases | |
25 | fi | |
26 | echo "$1" | |
27 | } | |
28 | ||
25378dd8 | 29 | findfile() { |
dc508f57 | 30 | if [ -n "$debug" ]; then echo "finding base='$1', ep='$2', qual='$3'" >&2; fi |
d67a5cdd | 31 | local base file tail eq eqt m matches max score |
9fc0aa3b | 32 | matches=() |
d67a5cdd FT |
33 | base="$(findbase "$1")" |
34 | for file in "$base"*; do | |
35 | tail="${file#"$base"}" | |
25378dd8 | 36 | eq="${tail%.*}" |
37 | m=n | |
38 | if [ "${eq%% *}" -eq "$2" ] 2>/dev/null; then | |
39 | if [[ "$eq" == *\ * ]]; then | |
40 | eqt="${eq#* }" | |
41 | else | |
42 | eqt= | |
43 | fi | |
44 | m=y | |
45 | elif [ "${eq:0:${#2}}" = "$2" ]; then | |
46 | eqt="${eq:${#2}}" | |
47 | if [ "${eqt:0:1}" = " " -o -z "$eqt" ]; then | |
48 | eqt="${eqt# }" | |
49 | m=y | |
50 | fi | |
51 | fi | |
52 | if [ "$m" = y ]; then | |
53 | if [ "$eqt" = "$3" -o "$eqt" = "($3)" ]; then | |
9fc0aa3b | 54 | matches=("${matches[@]}" "$file") |
25378dd8 | 55 | fi |
56 | fi | |
57 | done | |
9fc0aa3b | 58 | if [ ${#matches[@]} -lt 1 ]; then return 1; fi |
59 | max= | |
60 | for m in "${matches[@]}"; do | |
61 | score="$(scorefile "$m")" | |
dc508f57 | 62 | if [ -n "$debug" ]; then echo "found \`$m': score $score" >&2; fi |
9fc0aa3b | 63 | if [ -z "$max" ] || [ "$score" -gt "$max" ]; then |
64 | max="$score" | |
65 | file="$m" | |
66 | fi | |
67 | done | |
dc508f57 | 68 | if [ -n "$debug" ]; then echo "using \`$file'" >&2; fi |
9fc0aa3b | 69 | echo "$file" |
70 | return 0 | |
25378dd8 | 71 | } |
72 | ||
251d97ca | 73 | origargs=("$0" "$@") |
1c19e28f | 74 | cmdline=(mplayer -fs -ass) |
dc508f57 | 75 | debug= |
4f06ae97 | 76 | unset pretend printfile |
40777a19 | 77 | |
78 | while [ "${1:0:1}" = - ]; do | |
79 | a="$1" | |
80 | shift | |
81 | case "$a" in | |
529814da | 82 | -h) |
dc508f57 | 83 | echo "usage: planime [-fdhtC] [-A PLAYER-ARGS... ;] [-s PAR VAL] [--] [NAME-QUAL] [EP|.] [TYPE-QUAL]" >&2 |
529814da | 84 | exit 0 |
85 | ;; | |
dc508f57 | 86 | -d) |
87 | debug=y | |
88 | ;; | |
40777a19 | 89 | -t) |
90 | cmdline=("${cmdline[@]}" -ao oss:/dev/dsp1) | |
91 | ;; | |
932c90a8 | 92 | -C) |
93 | pretend=y | |
94 | ;; | |
5f7e9143 | 95 | -A) |
96 | while :; do | |
f03b6a08 FT |
97 | if [ $# -lt 1 ]; then |
98 | echo "planime: unterminated argument list" >&2 | |
99 | exit 1 | |
100 | fi | |
5f7e9143 | 101 | a="$1" |
102 | shift | |
103 | if [ "$a" = \; ]; then | |
104 | break; | |
105 | fi | |
106 | cmdline=("${cmdline[@]}" "$a") | |
107 | done | |
108 | ;; | |
40777a19 | 109 | -s) |
110 | savepar="$1" | |
111 | shift | |
112 | saveval="$1" | |
113 | shift | |
114 | ;; | |
4f06ae97 | 115 | -f) |
116 | printfile=y | |
117 | ;; | |
dc508f57 | 118 | --) |
119 | break | |
120 | ;; | |
121 | *) | |
122 | echo "planime: unknown option \`$a'" | |
123 | exit 1 | |
124 | ;; | |
40777a19 | 125 | esac |
126 | done | |
127 | ||
44423004 FT |
128 | dirbase="$(basename "$(pwd)")" |
129 | base=. | |
529814da | 130 | nextep=n |
131 | file= | |
132 | tqual= | |
133 | if [ $# -eq 0 ]; then | |
134 | nextep=y | |
135 | elif [ $# -eq 1 ]; then | |
136 | if [ -r "$1" ]; then | |
137 | file="$1" | |
138 | else | |
44423004 FT |
139 | base= |
140 | ep="$1" | |
529814da | 141 | fi |
40777a19 | 142 | elif [ $# -eq 2 ]; then |
44423004 FT |
143 | if findfile "$dirbase - " "$1" "$2" >/dev/null; then |
144 | base="" | |
529814da | 145 | ep="$1" |
146 | tqual="$2" | |
147 | else | |
44423004 | 148 | base="$1" |
529814da | 149 | ep="$2" |
150 | fi | |
151 | else | |
44423004 | 152 | base="$1" |
40777a19 | 153 | ep="$2" |
529814da | 154 | tqual="$3" |
155 | fi | |
156 | if [ "$ep" = . ]; then nextep=y; fi | |
157 | if [ "$nextep" = y -a -r nextep ]; then | |
158 | ep="$(<nextep)" | |
159 | if ! isnum "$ep"; then | |
160 | echo "planime: nextep is non-numeric" >&2 | |
161 | exit 1 | |
162 | fi | |
40777a19 | 163 | fi |
90aff0d0 | 164 | if [ -z "$file" ]; then |
44423004 FT |
165 | if [ "$base" = . ]; then |
166 | if [ -r curser ]; then | |
167 | curser="$(<curser)" | |
168 | else | |
169 | curser= | |
170 | fi | |
171 | else | |
d67a5cdd | 172 | curser="$(findbase "$base")" |
44423004 FT |
173 | fi |
174 | if [ -n "$curser" ]; then | |
175 | file="$(findfile "$dirbase $curser - " "$ep" "$tqual")" || \ | |
176 | file="$(findfile "$curser - " "$ep" "$tqual")" | |
177 | else | |
178 | file="$(findfile "$dirbase - " "$ep" "$tqual")" | |
179 | fi | |
90aff0d0 | 180 | fi |
529814da | 181 | |
4c7a7e70 | 182 | if [ -z "$file" -o ! -r "$file" ]; then |
529814da | 183 | echo "planime: no matching file found" >&2 |
184 | exit 1 | |
185 | fi | |
186 | ||
4c7a7e70 | 187 | case "${file##*.}" in |
188 | ogm) | |
c6fdc541 | 189 | aid=1 |
190 | sid=0 | |
4c7a7e70 | 191 | ;; |
192 | mkv) | |
c6fdc541 | 193 | alang=jpn |
194 | slang=eng | |
4c7a7e70 | 195 | ;; |
196 | esac | |
40777a19 | 197 | |
b8882e5f | 198 | ifile=".${file}.info" |
40777a19 | 199 | |
200 | if [ -n "$savepar" ]; then | |
201 | if [ -r "$ifile" ]; then | |
b8882e5f | 202 | egrep -v "^${savepar} " "$ifile" >"$ifile.new" |
081b510d | 203 | mv -f "$ifile.new" "$ifile" |
40777a19 | 204 | fi |
b8882e5f | 205 | echo "$savepar $saveval" >>"$ifile" |
40777a19 | 206 | exit 0 |
207 | fi | |
208 | ||
209 | unset delay | |
210 | ||
211 | if [ -r "$ifile" ]; then | |
b8882e5f | 212 | exec 3<&0 |
213 | exec 0<"$ifile" | |
214 | while read par arg; do | |
215 | if [ "$par" = delay ]; then | |
216 | cmdline=("${cmdline[@]}" -delay "$arg") | |
217 | elif [ "$par" = aspect ]; then | |
218 | cmdline=("${cmdline[@]}" -aspect "$arg") | |
21e62b99 | 219 | elif [ "$par" = volmod ]; then |
220 | cmdline=("${cmdline[@]}" -af volume="$arg") | |
c6fdc541 | 221 | elif [ "$par" = alang ]; then |
222 | unset alang aid | |
223 | alang="$arg" | |
224 | elif [ "$par" = aid ]; then | |
225 | unset alang aid | |
226 | aid="$arg" | |
227 | elif [ "$par" = slang ]; then | |
228 | unset slang sid | |
229 | slang="$arg" | |
230 | elif [ "$par" = sid ]; then | |
231 | unset slang sid | |
232 | sid="$arg" | |
b8882e5f | 233 | fi |
234 | done | |
235 | exec 0<&3 | |
236 | exec 3<&- | |
c6fdc541 | 237 | fi |
238 | ||
239 | if [ -n "$alang" ]; then | |
240 | cmdline=("${cmdline[@]}" -alang "$alang") | |
241 | elif [ -n "$aid" ]; then | |
242 | cmdline=("${cmdline[@]}" -aid "$aid") | |
243 | fi | |
244 | if [ -n "$slang" ]; then | |
245 | cmdline=("${cmdline[@]}" -slang "$slang") | |
246 | elif [ -n "$sid" ]; then | |
247 | cmdline=("${cmdline[@]}" -sid "$sid") | |
40777a19 | 248 | fi |
249 | ||
21e62b99 | 250 | if [ "`hostname`" = pc6 -o "`hostname`" = pc7 -a "$DISPLAY" = :1 ]; then chwp=y; fi |
40777a19 | 251 | |
932c90a8 | 252 | if [ -n "$pretend" ]; then |
253 | echo "${cmdline[@]}" "$file" | |
4f06ae97 | 254 | elif [ -n "$printfile" ]; then |
255 | echo "$file" | |
932c90a8 | 256 | else |
257 | if [ "$chwp" = y ]; then (sleep 2; randomwp) & fi | |
258 | "${cmdline[@]}" "$file" | |
259 | ||
260 | if [ "$nextep" = y ]; then | |
261 | echo "0. Save and continue (or Space)" | |
262 | echo "1. Continue without saving" | |
263 | echo "2. Save and exit (or Enter)" | |
264 | echo "3. Exit without saving (or any key)" | |
265 | IFS= read -sn1 c | |
266 | save=n | |
267 | cont=n | |
268 | case "$c" in | |
269 | 0|" ") | |
270 | save=y | |
271 | cont=y | |
272 | ;; | |
273 | 1) | |
274 | cont=y | |
275 | ;; | |
276 | 2|"") | |
277 | save=y | |
278 | ;; | |
279 | esac | |
280 | if [ "$save" = y ]; then | |
281 | let ep++ | |
282 | echo "$ep" >nextep | |
283 | fi | |
284 | if [ "$cont" = y ]; then | |
285 | exec "${origargs[@]}" | |
286 | else | |
287 | echo "nextep is $ep" | |
288 | fi | |
251d97ca | 289 | fi |
290 | fi |