ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/schmorp-irc.ext
(Generate patch)

Comparing deliantra/maps/perl/schmorp-irc.ext (file contents):
Revision 1.15 by elmex, Tue Sep 26 22:19:48 2006 UTC vs.
Revision 1.19 by root, Sun Nov 26 02:37:53 2006 UTC

1#! perl 1#! perl
2 2
3use Time::HiRes; 3use Time::HiRes;
4use Net::IRC3::Client::Connection; 4use Net::IRC3::Client::Connection;
5 5
6my $BOTSERVER = 'localhost'; 6# requires: commands.ext
7my $BOTPORT = '6667'; 7
8my $BOTNAME = 'cfbot'; 8return unless exists $cf::CFG{irc_server};
9my $BOTCHAN = '#cf'; 9
10my $BOTSERVER = $cf::CFG{irc_server};
11my $BOTPORT = $cf::CFG{irc_port};
12my $BOTNAME = $cf::CFG{irc_nick};
13my $BOTCHAN = $cf::CFG{irc_chan};
10 14
11my $CON; # the connection 15my $CON; # the connection
12 16
13sub unload { 17sub unload {
14 $CON->disconnect if $CON; 18 $CON->disconnect if $CON;
19 my ($msg) = @_; 23 my ($msg) = @_;
20 $CON->send_chan ($BOTCHAN, NOTICE => $msg, $BOTCHAN) 24 $CON->send_chan ($BOTCHAN, NOTICE => $msg, $BOTCHAN)
21 if $CON; 25 if $CON;
22} 26}
23 27
28sub users {
29 $CON
30 ? grep $_ ne $CON->nick, keys %{ $CON->channel_list->{$BOTCHAN} || {} }
31 : ()
32}
33
24sub handle_fcmd { 34sub handle_fcmd {
25 my ($name, $me, $msg) = @_; 35 my ($name, $me, $msg) = @_;
26 36
27 if ($msg eq "!who") { 37 if ($msg eq "!who") {
28 my ($numplayers, $numwiz, @plist) = (0, 0); 38 $CON->send_chan ($BOTCHAN, NOTICE => $_, $BOTCHAN)
39 for ext::commands::who_listing ();
29 40
30 foreach my $pl (cf::player::list) {
31 $numplayers++;
32 $numwiz++
33 if ($pl->ob->flag (cf::FLAG_WIZ));
34 push (@plist, $pl);
35 }
36
37 $CON->send_chan ($BOTCHAN, NOTICE => "Total Players in The World. ($numplayers) -- WIZ($numwiz)", $BOTCHAN);
38
39 if ($numplayers > 0) {
40 foreach my $pl (@plist) {
41 $CON->send_chan ($BOTCHAN, NOTICE =>
42 "* " . $pl->ob->name . "/" . $pl->ob->level . " " . ( length $pl->own_title ? $pl->own_title : "the " . $pl->title ) . " "
43 .($pl->ob->flag (cf::FLAG_WIZ) ? " [WIZ] " : "")
44 ." [" . ($pl->ob->map ? $pl->ob->map->path : "NULL") . "]", $BOTCHAN);
45 }
46 }
47 } elsif ($msg =~ /^\!tell/) { 41 } elsif ($msg =~ /^\!tell/) {
48 my (undef, $target, $tmsg) = split / /, $msg, 3; 42 my (undef, $target, $tmsg) = split / /, $msg, 3;
49 43
50 if (my $other = cf::player::find $target) { 44 if (my $other = cf::player::find $target) {
51 45
103 0; 97 0;
104 } 98 }
105 ); 99 );
106} 100}
107 101
108my $timer; 102Event->timer (after => 1, interval => 30, cb => \&check_connection);
109 103
110sub new_timer {
111 $timer = AnyEvent->timer (after => 10, cb => sub {
112 check_connection ();
113 &new_timer; # and restart the time
114 });
115}
116
117new_timer; # create first timer
118check_connection ();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines