1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package Plugin::Random;
use strict;
use warnings;
use List::Util;
sub configure {
my $self = shift;
my $cmdref = shift;
$cmdref->($self, "shuffle", sub { $self->shuffle(@_); } );
$cmdref->($self, "choose", sub { $self->choose(@_); } );
return $self;
}
sub shuffle {
my ($self, $irc, $logger, $who, $where, $ided, $rest, $no_reenter, @arguments) = @_;
return join " ", List::Util::shuffle(@arguments);
}
sub choose {
my ($self, $irc, $logger, $who, $where, $ided, $rest, $no_reenter, @arguments) = @_;
return (List::Util::shuffle(@arguments))[0];
}
1;
|