ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/schmorp-irc.ext
Revision: 1.17
Committed: Sun Oct 1 18:18:34 2006 UTC (17 years, 7 months ago) by root
Branch: MAIN
Changes since 1.16: +6 -4 lines
Log Message:
client editor support and more configurability for irc extension

File Contents

# Content
1 #! perl
2
3 use Time::HiRes;
4 use Net::IRC3::Client::Connection;
5
6 # requires: commands.ext
7
8 return unless $cf::CFG{irc_server};
9
10 my $BOTSERVER = $cf::CFG{irc_server};
11 my $BOTPORT = $cf::CFG{irc_port};
12 my $BOTNAME = $cf::CFG{irc_nick};
13 my $BOTCHAN = $cf::CFG{irc_chan};
14
15 my $CON; # the connection
16
17 sub unload {
18 $CON->disconnect if $CON;
19 undef $CON;
20 }
21
22 sub do_notice {
23 my ($msg) = @_;
24 $CON->send_chan ($BOTCHAN, NOTICE => $msg, $BOTCHAN)
25 if $CON;
26 }
27
28 sub handle_fcmd {
29 my ($name, $me, $msg) = @_;
30
31 if ($msg eq "!who") {
32 $CON->send_chan ($BOTCHAN, NOTICE => $_, $BOTCHAN)
33 for ext::commands::who_listing ();
34
35 } elsif ($msg =~ /^\!tell/) {
36 my (undef, $target, $tmsg) = split / /, $msg, 3;
37
38 if (my $other = cf::player::find $target) {
39
40 if ($tmsg) {
41 if ($me eq $target) {
42 $CON->send_chan ($BOTCHAN, NOTICE => "$me: You are talking to yourself, you freak!", $BOTCHAN);
43 } elsif ($other->ob->{ext_ignore_tell}{$me} >= time) {
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);
54 }
55
56 }
57 }
58 }
59
60 sub check_connection {
61 return if $CON;
62
63 $CON = Net::IRC3::Client::Connection->new;
64 $CON->connect ($BOTSERVER, $BOTPORT);
65 $CON->send_srv (JOIN => undef, $BOTCHAN);
66 $CON->register ($BOTNAME, $BOTNAME, 'crossfire connection');
67 $CON->reg_cb (
68 #d# 'irc_*' => sub { warn "IRC $_[1]->{trailing}\n"; 1 },
69 irc_privmsg => sub {
70 my ($con, $msg) = @_;
71 my $name = 'irc';
72 my $nick = Net::IRC3::Util::prefix_nick ($msg);
73 my $NOW = Time::HiRes::time;
74 my $tmsg = $msg->{trailing};
75 $tmsg =~ s/\x01[^\x01]*\x01//g;
76 $tmsg =~ s/\015?\012/ /g;
77 if ($tmsg =~ /^\!/) {
78 handle_fcmd ($name, $nick, $tmsg);
79 } elsif ($tmsg =~ m/\S/) {
80 $_->ob->message (
81 "$name/".$nick." chats: $tmsg", cf::NDI_BLUE
82 ) for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
83 }
84 1;
85 },
86 # registered => sub {
87 # 1;
88 # },
89 disconnect => sub {
90 undef $CON;
91 0;
92 }
93 );
94 }
95
96 my $timer;
97
98 sub new_timer {
99 $timer = AnyEvent->timer (after => 10, cb => sub {
100 check_connection ();
101 &new_timer; # and restart the time
102 });
103 }
104
105 new_timer; # create first timer
106 check_connection ();