weechat-opal/scripts/play.pl

137 lines
3.8 KiB
Perl
Raw Normal View History

2016-10-02 01:24:28 -07:00
use strict;
use warnings;
use File::Find::Rule;
no strict 'subs';
my $SCRIPT_NAME = 'play';
my $SCRIPT_AUTHOR = 'The Krusty Krab <wowaname@volatile.ch>';
2016-10-02 14:53:44 -07:00
my $SCRIPT_VERSION = '1.1';
2016-10-02 01:24:28 -07:00
my $SCRIPT_LICENCE = 'Public domain';
my $SCRIPT_DESC = 'Play ASCII art';
2016-10-02 03:44:45 -07:00
our (%queue, %timer);
2016-10-02 01:24:28 -07:00
if (weechat::register($SCRIPT_NAME, $SCRIPT_AUTHOR, $SCRIPT_VERSION,
$SCRIPT_LICENCE, $SCRIPT_DESC, '', '')) {
weechat::hook_command('play', 'Play ASCII art',
2016-10-21 13:10:17 -07:00
qq([-delay ms] [-find] [-pipe "command"] [-fmt "text"] filename\n-stop),
2016-10-02 01:24:28 -07:00
"-delay: delay in milliseconds between lines\n".
"-find: list matching files, don't play\n".
"-pipe: pipe output into command\n".
2016-10-21 13:10:17 -07:00
"-fmt: treat file as a format string and replace with text\n".
2016-10-02 03:44:45 -07:00
"filename: file to play. Supports wildcards. By default, searches\n".
" subdirectories as well unless '/' is found in the filename\n".
"-stop: stop currently playing file in buffer",
2016-10-02 01:24:28 -07:00
'', 'cmd_play', '');
my %OPTIONS = (
delay => ['Default delay between lines', 0],
dir => ['Art directory',
weechat::info_get('weechat_dir', '').'/ascii'],
);
for my $option (keys %OPTIONS) {
weechat::config_set_plugin($option, $OPTIONS{$option}[1])
unless weechat::config_is_set_plugin($option);
weechat::config_set_desc_plugin($option, $OPTIONS{$option}[0]);
}
}
sub parse {
2016-10-21 13:10:17 -07:00
my ($input, $delay, $pipe, $find, $repeat, $fmt) =
(shift, weechat::config_get_plugin('delay'), '/msg *', 0, 1, '');
2016-10-02 01:24:28 -07:00
if ($input =~ / *-delay +([0-9]+) /) {
$delay = $1;
2016-10-02 14:53:44 -07:00
$input =~ s/-delay +[0-9]+//;
2016-10-02 01:24:28 -07:00
}
if ($input =~ / *-find /) {
$find = 1;
2016-10-02 14:53:44 -07:00
$input =~ s/-find//;
}
2016-10-21 13:10:17 -07:00
if ($input =~ / *-fmt +("(?:[^"\\]|\\.)+"|[^ ]+) /) {
$fmt = $1;
$fmt =~ s/^"(.+)"$/$1/ if $fmt =~ /^".+"$/;
$input =~ s/-fmt +("(?:[^"\\]|\\.)+"|[^ ]+)//;
}
2016-10-02 14:53:44 -07:00
if ($input =~ / *-repeat +([0-9]+) /) {
$repeat = $1;
$input =~ s/-repeat +[0-9]+//;
2016-10-02 01:24:28 -07:00
}
2016-10-21 13:10:17 -07:00
if ($input =~ / *-pipe +("(?:[^"\\]|\\.)+"|[^ ]+) /) {
2016-10-02 01:24:28 -07:00
$pipe = $1;
$pipe =~ s/^"(.+)"$/$1/ if $pipe =~ /^".+"$/;
2016-10-21 13:10:17 -07:00
$input =~ s/-pipe +("(?:[^"\\]|\\.)+"|[^ ]+)//;
2016-10-02 01:24:28 -07:00
}
2016-10-21 13:10:17 -07:00
return ($delay, $pipe, $find, $repeat, $fmt, $input =~ s/^ +| +$//r);
2016-10-02 01:24:28 -07:00
}
sub play {
2016-10-02 03:44:45 -07:00
my $buffer = shift;
2016-10-02 01:24:28 -07:00
2016-10-02 03:44:45 -07:00
weechat::command($buffer, shift @{ $queue{$buffer} });
delete $queue{$buffer} unless @{ $queue{$buffer} };
2016-10-02 01:24:28 -07:00
return weechat::WEECHAT_RC_OK;
}
sub cmd_play {
my $buffer = $_[1];
2016-10-02 03:44:45 -07:00
2016-10-21 13:10:17 -07:00
if ($_[2] eq '-stop') {
if (exists $timer{$buffer}) {
weechat::unhook($timer{$buffer});
delete $queue{$buffer};
}
2016-10-02 03:44:45 -07:00
return weechat::WEECHAT_RC_OK;
}
2016-10-21 13:10:17 -07:00
my ($delay, $pipe, $find, $repeat, $fmt, $file) = parse($_[2]);
2016-10-02 01:24:28 -07:00
my $server = weechat::info_get($buffer, 'localvar_server');
my ($prio_s, $prio_d) = (
weechat::config_get("irc.server.$server.anti_flood_prio_high"),
weechat::config_get("irc.server_default.anti_flood_prio_high"),
);
$delay = ($delay or 1000 * (
weechat::config_option_is_null($prio_s)
? weechat::config_integer($prio_d)
: weechat::config_integer($prio_s)
) or 10);
2016-10-02 18:01:48 -07:00
my $rule = File::Find::Rule->file->name($file)
2016-10-02 01:24:28 -07:00
->start(weechat::config_get_plugin('dir'));
if ($find) {
2016-10-02 18:01:48 -07:00
weechat::print($buffer, " \t$_") while defined( $_ = $rule->match );
weechat::print($buffer, " \tEnd of file listing for '$file'");
2016-10-02 01:24:28 -07:00
return weechat::WEECHAT_RC_OK;
}
2016-10-02 18:01:48 -07:00
my $path;
if ($file =~ m"/") { $path = weechat::config_get_plugin('dir')."/$file" }
else { $path = $rule->match }
if ($path and open FH, "<", $path) {
2016-10-02 14:53:44 -07:00
my @lines;
2016-10-21 13:10:17 -07:00
while (<FH>) {
$_ = sprintf $_, split ' ', $fmt if $fmt;
push @lines, s/[\r\n]*$//r
}
2016-10-02 01:24:28 -07:00
close FH;
2016-10-02 14:53:44 -07:00
for (1 .. $repeat) {
push @{ $queue{$buffer} }, "$pipe \x0f$_\x0f" for @lines;
}
2016-10-02 03:44:45 -07:00
weechat::unhook($timer{$buffer}) if exists $timer{$buffer};
$timer{$buffer} =
weechat::hook_timer($delay, 0, scalar @{ $queue{$buffer} },
'play', $buffer);
2016-10-02 01:24:28 -07:00
} else {
weechat::print($buffer, weechat::prefix('error').
"Cannot open '$file'".($! ? ": $!" : ""));
2016-10-02 01:24:28 -07:00
return weechat::WEECHAT_RC_ERROR;
}
return weechat::WEECHAT_RC_OK;
}