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.10 by pippijn, Sun Sep 17 22:53:35 2006 UTC vs.
Revision 1.17 by root, Sun Oct 1 18:18:34 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 $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;
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
24sub handle_fcmd { 28sub handle_fcmd {
25 my ($msg) = @_; 29 my ($name, $me, $msg) = @_;
26 30
27 if ($msg eq "!who") { 31 if ($msg eq "!who") {
28 my ($numplayers, $numwiz, @plist) = (0, 0); 32 $CON->send_chan ($BOTCHAN, NOTICE => $_, $BOTCHAN)
33 for ext::commands::who_listing ();
29 34
30 foreach my $pl (cf::player::list) { 35 } elsif ($msg =~ /^\!tell/) {
31 $numplayers++; 36 my (undef, $target, $tmsg) = split / /, $msg, 3;
32 $numwiz++
33 if ($pl->ob->flag (cf::FLAG_WIZ));
34 push (@plist, $pl);
35 }
36 37
37 $CON->send_chan ($BOTCHAN, NOTICE => "Total Players in The World. ($numplayers) -- WIZ($numwiz)", $BOTCHAN); 38 if (my $other = cf::player::find $target) {
38 39
39 if ($numplayers > 0) { 40 if ($tmsg) {
40 foreach my $pl (@plist) { 41 if ($me eq $target) {
41 $CON->send_chan ($BOTCHAN, NOTICE => 42 $CON->send_chan ($BOTCHAN, NOTICE => "$me: You are talking to yourself, you freak!", $BOTCHAN);
42 "* " . $pl->ob->name . "/" . $pl->ob->level 43 } elsif ($other->ob->{ext_ignore_tell}{$me} >= time) {
43 ." [" . ($pl->ob->map ? $pl->ob->map->path : "NULL") . "]", $BOTCHAN); 44 $CON->send_chan ($BOTCHAN, NOTICE => "$me: $target ignores what you say. Give up on it.", $BOTCHAN);
45 } else {
46 utf8::encode $tmsg; # ->message not yet utf8-ified
47 cf::LOG cf::llevDebug, sprintf "TELL [%s/%s>%s] %s\n", $name, $me, $target, $tmsg;
48
49 $other->ob->message ("$name/$me tells you: $tmsg");
50 $other->ob->{ext_last_tell} = "$name/$me";
51 }
52 } else {
53 $CON->send_chan ($BOTCHAN, NOTICE => "$me: What do you want to tell $target?", cf::NDI_UNIQUE);
44 } 54 }
55
45 } 56 }
46 } 57 }
47} 58}
48 59
49sub check_connection { 60sub check_connection {
56 $CON->reg_cb ( 67 $CON->reg_cb (
57 #d# 'irc_*' => sub { warn "IRC $_[1]->{trailing}\n"; 1 }, 68 #d# 'irc_*' => sub { warn "IRC $_[1]->{trailing}\n"; 1 },
58 irc_privmsg => sub { 69 irc_privmsg => sub {
59 my ($con, $msg) = @_; 70 my ($con, $msg) = @_;
60 my $name = 'irc'; 71 my $name = 'irc';
72 my $nick = Net::IRC3::Util::prefix_nick ($msg);
61 my $NOW = Time::HiRes::time; 73 my $NOW = Time::HiRes::time;
62 my $tmsg = $msg->{trailing}; 74 my $tmsg = $msg->{trailing};
63 $tmsg =~ s/\x01[^\x01]*\x01//g; 75 $tmsg =~ s/\x01[^\x01]*\x01//g;
76 $tmsg =~ s/\015?\012/ /g;
64 if ($tmsg =~ /^\!/) { 77 if ($tmsg =~ /^\!/) {
65 handle_fcmd ($tmsg); 78 handle_fcmd ($name, $nick, $tmsg);
66 } elsif ($tmsg =~ m/\S/) { 79 } elsif ($tmsg =~ m/\S/) {
67 $_->ob->message ( 80 $_->ob->message (
68 "$name/".Net::IRC3::Util::prefix_nick ($msg)." chats: $tmsg", cf::NDI_BLUE 81 "$name/".$nick." chats: $tmsg", cf::NDI_BLUE
69 ) for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list; 82 ) for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
70 } 83 }
71 1; 84 1;
72 }, 85 },
73# registered => sub { 86# registered => sub {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines