2014-06-08 13:52:20 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
# Generate ZSH completion
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
my $mpv = $ARGV[0] || 'mpv';
|
|
|
|
|
2014-06-29 05:54:48 +00:00
|
|
|
my @opts = parse_opts("$mpv --list-options", '^ (\-\-[^\s\*]*)\*?\s*(.*)', 1);
|
2014-06-08 13:52:20 +00:00
|
|
|
|
|
|
|
my @ao = parse_opts("$mpv --ao=help", '^ ([^\s\:]*)\s*: (.*)');
|
|
|
|
my @vo = parse_opts("$mpv --vo=help", '^ ([^\s\:]*)\s*: (.*)');
|
|
|
|
|
|
|
|
my @af = parse_opts("$mpv --af=help", '^ ([^\s\:]*)\s*: (.*)');
|
|
|
|
my @vf = parse_opts("$mpv --vf=help", '^ ([^\s\:]*)\s*: (.*)');
|
|
|
|
|
2014-07-01 00:42:00 +00:00
|
|
|
my @protos = parse_opts("$mpv --list-protocols", '^ ([^\s]*)');
|
|
|
|
|
|
|
|
my ($opts_str, $ao_str, $vo_str, $af_str, $vf_str, $protos_str);
|
2014-06-08 13:52:20 +00:00
|
|
|
|
2014-06-29 05:54:48 +00:00
|
|
|
$opts_str .= qq{ '$_' \\\n} foreach (@opts);
|
2014-06-08 13:52:20 +00:00
|
|
|
chomp $opts_str;
|
|
|
|
|
|
|
|
$ao_str .= qq{ '$_' \\\n} foreach (@ao);
|
|
|
|
chomp $ao_str;
|
|
|
|
|
|
|
|
$vo_str .= qq{ '$_' \\\n} foreach (@vo);
|
|
|
|
chomp $vo_str;
|
|
|
|
|
|
|
|
$af_str .= qq{ '$_' \\\n} foreach (@af);
|
|
|
|
chomp $af_str;
|
|
|
|
|
|
|
|
$vf_str .= qq{ '$_' \\\n} foreach (@vf);
|
|
|
|
chomp $vf_str;
|
|
|
|
|
2014-07-01 00:42:00 +00:00
|
|
|
$protos_str .= qq{$_ } foreach (@protos);
|
|
|
|
chomp $protos_str;
|
|
|
|
|
2014-06-08 13:52:20 +00:00
|
|
|
my $tmpl = <<"EOS";
|
|
|
|
#compdef mpv
|
|
|
|
|
|
|
|
# mpv zsh completion
|
|
|
|
|
2014-06-29 19:08:40 +00:00
|
|
|
_arguments -C -S \\
|
2014-06-08 13:52:20 +00:00
|
|
|
$opts_str
|
|
|
|
'*:files:->mfiles'
|
|
|
|
|
|
|
|
case \$state in
|
|
|
|
ao)
|
|
|
|
local -a values
|
|
|
|
values=(
|
|
|
|
$ao_str
|
|
|
|
)
|
|
|
|
|
|
|
|
_describe -t values 'audio outputs' values
|
|
|
|
;;
|
|
|
|
|
|
|
|
vo)
|
|
|
|
local -a values
|
|
|
|
values=(
|
|
|
|
$vo_str
|
|
|
|
)
|
|
|
|
|
|
|
|
_describe -t values 'video outputs' values
|
|
|
|
;;
|
|
|
|
|
|
|
|
af)
|
|
|
|
local -a values
|
|
|
|
values=(
|
|
|
|
$af_str
|
|
|
|
)
|
|
|
|
|
|
|
|
_describe -t values 'audio filters' values
|
|
|
|
;;
|
|
|
|
|
|
|
|
vf)
|
|
|
|
local -a values
|
|
|
|
values=(
|
|
|
|
$vf_str
|
|
|
|
)
|
|
|
|
|
|
|
|
_describe -t values 'video filters' values
|
|
|
|
;;
|
|
|
|
|
|
|
|
mfiles)
|
|
|
|
_tags files urls
|
|
|
|
while _tags; do
|
|
|
|
_requested files expl 'media file' _files -g \\
|
|
|
|
"*.(#i)(asf|asx|avi|flac|flv|m1v|m2p|m2v|m4v|mjpg|mka|mkv|mov|mp3|mp4|mpe|mpeg|mpg|ogg|ogm|ogv|qt|rm|ts|vob|wav|webm|wma|wmv)(-.)" && ret=0
|
|
|
|
if _requested urls; then
|
|
|
|
while _next_label urls expl URL; do
|
|
|
|
_urls "\$expl[@]" && ret=0
|
2014-07-01 00:42:00 +00:00
|
|
|
compadd -S '' "\$expl[@]" $protos_str && ret=0
|
2014-06-08 13:52:20 +00:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
(( ret )) || return 0
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
EOS
|
|
|
|
|
|
|
|
print $tmpl;
|
|
|
|
|
|
|
|
sub parse_opts {
|
2014-06-29 21:24:27 +00:00
|
|
|
my ($cmd, $regex, $parsing_main_options) = @_;
|
2014-06-08 13:52:20 +00:00
|
|
|
|
2014-06-29 21:24:27 +00:00
|
|
|
my @list;
|
|
|
|
my @lines = split /\n/, `$cmd`;
|
2014-06-08 13:52:20 +00:00
|
|
|
|
2014-06-29 21:24:27 +00:00
|
|
|
foreach my $line (@lines) {
|
|
|
|
if ($line !~ /^$regex/) {
|
|
|
|
next;
|
|
|
|
}
|
2014-06-08 13:52:20 +00:00
|
|
|
|
2014-06-29 21:24:27 +00:00
|
|
|
my $entry = $1;
|
2014-06-29 05:54:48 +00:00
|
|
|
|
2014-06-29 21:24:27 +00:00
|
|
|
if ($parsing_main_options) {
|
|
|
|
$entry .= '=-';
|
|
|
|
}
|
2014-06-08 13:52:20 +00:00
|
|
|
|
2014-06-29 21:24:27 +00:00
|
|
|
if (defined $2) {
|
|
|
|
my $desc = $2;
|
|
|
|
$desc =~ s/\:/\\:/g;
|
2014-06-08 13:52:20 +00:00
|
|
|
|
2014-06-29 21:24:27 +00:00
|
|
|
$entry .= ':' . $desc;
|
|
|
|
}
|
2014-06-08 13:52:20 +00:00
|
|
|
|
2014-06-29 21:24:27 +00:00
|
|
|
if ($parsing_main_options) {
|
|
|
|
$entry .= ':';
|
2014-06-29 05:54:48 +00:00
|
|
|
|
2014-06-29 21:24:27 +00:00
|
|
|
$entry .= '->ao' if ($1 eq '--ao');
|
|
|
|
$entry .= '->vo' if ($1 eq '--vo');
|
|
|
|
$entry .= '->af' if ($1 eq '--af');
|
|
|
|
$entry .= '->vf' if ($1 eq '--vf');
|
|
|
|
}
|
2014-06-08 13:52:20 +00:00
|
|
|
|
2014-06-29 21:24:27 +00:00
|
|
|
push @list, $entry
|
|
|
|
}
|
2014-06-08 13:52:20 +00:00
|
|
|
|
2014-06-29 21:26:14 +00:00
|
|
|
if ($parsing_main_options) {
|
|
|
|
@list = sort {
|
|
|
|
$a =~ /(.*?)\:/; my $ma = $1;
|
|
|
|
$b =~ /(.*?)\:/; my $mb = $1;
|
|
|
|
|
|
|
|
length($mb) <=> length($ma)
|
|
|
|
} @list;
|
|
|
|
}
|
|
|
|
|
2014-06-29 21:24:27 +00:00
|
|
|
return @list;
|
2014-06-08 13:52:20 +00:00
|
|
|
}
|