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

Comparing deliantra/maps/perl/chat.ext (file contents):
Revision 1.21 by root, Wed Jul 19 22:20:07 2006 UTC vs.
Revision 1.31 by root, Fri Aug 25 13:24:05 2006 UTC

2 2
3# implement a replacement for the built-in say/chat/shout/tell/reply commands 3# implement a replacement for the built-in say/chat/shout/tell/reply commands
4# adds ignore/unignore functionality 4# adds ignore/unignore functionality
5 5
6use NPC_Dialogue; 6use NPC_Dialogue;
7use POSIX (); # for strftime only
7 8
8sub clean_timeouts($) { 9sub clean_timeouts($) {
9 my ($player) = @_; 10 my ($player) = @_;
10 my $NOW = time; 11 my $NOW = time;
11 12
12 for my $hash (@$player{qw(ext_ignore_shout ext_ignore_tell)}) { 13 for my $hash (@$player{qw(ext_ignore_shout ext_ignore_tell)}) {
13 while (my ($k, $v) = each %$hash) { 14 while (my ($k, $v) = each %$hash) {
14 if ($v < $NOW) { 15 if ($v < $NOW) {
15 $player->message ("Your ignore on $k has expired.", cf::NDI_GREEN | cf::NDI_UNIQUE); 16 $player->message ("Your ignore on $k has expired.", cf::NDI_GREEN | cf::NDI_UNIQUE);
16 delete $hash->{$k}; 17 delete $hash->{$k};
17 } elsif (!valid_user $k) { 18 } elsif (!cf::player::exists $k) {
18 $player->message ("Your ignore on $k is no longer valid (no such user).", cf::NDI_GREEN | cf::NDI_UNIQUE); 19 $player->message ("Your ignore on $k is no longer valid (no such user).", cf::NDI_GREEN | cf::NDI_UNIQUE);
19 delete $hash->{$k}; 20 delete $hash->{$k};
20 } 21 }
21 } 22 }
22 } 23 }
23} 24}
24 25
25sub on_logout { 26sub on_login {
26 my ($pl, $host) = @_; 27 my ($pl) = @_;
27 28
28 clean_timeouts $pl->ob; 29 clean_timeouts $pl->ob;
29} 30}
30 31
31cf::register_command listen => 0, sub { 32cf::register_command listen => 0, sub {
46}; 47};
47 48
48cf::register_command say => 0, sub { 49cf::register_command say => 0, sub {
49 my ($who, $msg) = @_; 50 my ($who, $msg) = @_;
50 51
52 utf8::decode $msg;
53
51 if ($msg) { 54 if ($msg) {
52 my $name = $who->name; 55 my $name = $who->name;
53 56
57 utf8::encode $msg; # ->message not yet utf8-ified
54 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE) 58 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE)
55 for grep $who->on_same_map_as ($_->ob), cf::player::list; 59 for grep $who->on_same_map_as ($_->ob), cf::player::list;
60 utf8::decode $msg;
56 61
57 # npcs, magic_ears etc. 62 # npcs, magic_ears etc.
58 # first find all objects and their inventories within a 5x5 square 63 # first find all objects and their inventories within a 5x5 square
59 # that have something resembling dialogue 64 # that have something resembling dialogue
60 my ($map, $x, $y) = ($who->map, $who->x - 2, $who->y - 2); 65 my ($map, $x, $y) = ($who->map, $who->x - 2, $who->y - 2);
68 ) { 73 ) {
69 # if some listener teleported us somewhere else, stop right here 74 # if some listener teleported us somewhere else, stop right here
70 last unless $map->path == $who->map->path; 75 last unless $map->path == $who->map->path;
71 76
72 my $dialog = new NPC_Dialogue ob => $who, npc => $npc; 77 my $dialog = new NPC_Dialogue ob => $who, npc => $npc;
73 my $reply = $dialog->tell ($msg); 78 my ($reply, @kw) = $dialog->tell ($msg);
74 79
75 if (defined $reply) { 80 if (defined $reply) {
76 if ($npc->type == cf::MAGIC_EAR) { 81 if ($npc->type == cf::MAGIC_EAR) {
77 if (length $reply) { 82 if (length $reply) {
78 $_->ob->message ($reply, cf::NDI_BROWN | cf::NDI_UNIQUE) 83 $_->ob->message ($reply, cf::NDI_BROWN | cf::NDI_UNIQUE)
84 $_->ob->message ($npc->name . " says: $reply", cf::NDI_BROWN | cf::NDI_UNIQUE) 89 $_->ob->message ($npc->name . " says: $reply", cf::NDI_BROWN | cf::NDI_UNIQUE)
85 for grep $who->on_same_map_as ($_->ob), cf::player::list; 90 for grep $who->on_same_map_as ($_->ob), cf::player::list;
86 } 91 }
87 } 92 }
88 } 93 }
94
95 if (@kw) {
96 $_->ob->message ("[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN | cf::NDI_UNIQUE)
97 for grep $who->on_same_map_as ($_->ob), cf::player::list;
98 }
89 } 99 }
90 100
91 } else { 101 } else {
92 $who->message ("What do you want to say?", cf::NDI_UNIQUE); 102 $who->message ("What do you want to say?", cf::NDI_UNIQUE);
93 } 103 }
94}; 104};
95 105
96cf::register_command chat => 0, sub { 106cf::register_command chat => 0, sub {
97 my ($who, $msg) = @_; 107 my ($who, $msg) = @_;
108
109 utf8::decode $msg;
98 110
99 if ($msg) { 111 if ($msg) {
100 my $name = $who->name; 112 my $name = $who->name;
101 my $NOW = time; 113 my $NOW = time;
102 114
115 utf8::encode $msg; # ->message not yet utf8-ified
103 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg; 116# cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
117 cf::ext::schmorp_irc::do_notice (sprintf "[%s] %s", $name, $msg);
104 118
105 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) 119 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE)
106 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list; 120 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
107 121
108 } else { 122 } else {
110 } 124 }
111}; 125};
112 126
113cf::register_command shout => 0, sub { 127cf::register_command shout => 0, sub {
114 my ($who, $msg) = @_; 128 my ($who, $msg) = @_;
129
130 utf8::decode $msg;
115 131
116 if ($msg) { 132 if ($msg) {
117 my $NOW = time; 133 my $NOW = time;
118 my $name = $who->name; 134 my $name = $who->name;
119 135
120 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg; 136# cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg;
137 cf::ext::schmorp_irc::do_notice (sprintf "{%s} %s\n", $name, $msg);
121 138
139 utf8::encode $msg; # ->message not yet utf8-ified
122 $_->ob->message ("$name shouts: $msg", cf::NDI_RED) 140 $_->ob->message ("$name shouts: $msg", cf::NDI_RED)
123 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list; 141 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list;
124 142
125 } else { 143 } else {
126 $who->message ("Shout what?", cf::NDI_UNIQUE); 144 $who->message ("Shout what?", cf::NDI_UNIQUE);
129}; 147};
130 148
131cf::register_command tell => 0, sub { 149cf::register_command tell => 0, sub {
132 my ($who, $args) = @_; 150 my ($who, $args) = @_;
133 my ($target, $msg) = split /\s+/, $args, 2; 151 my ($target, $msg) = split /\s+/, $args, 2;
152
153 utf8::decode $msg;
134 154
135 my $name = $who->name; 155 my $name = $who->name;
136 156
137 if (my $other = cf::player::find $target) { 157 if (my $other = cf::player::find $target) {
138 158
140 if ($target eq $name) { 160 if ($target eq $name) {
141 $who->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE); 161 $who->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE);
142 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) { 162 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
143 $who->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE); 163 $who->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE);
144 } else { 164 } else {
165 utf8::encode $msg; # ->message not yet utf8-ified
145 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg; 166 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg;
146 167
147 $who->message ("You tell $target: $msg"); 168 $who->message ("You tell $target: $msg");
148 $other->ob->message ("$name tells you: $msg"); 169 $other->ob->message ("$name tells you: $msg");
149 $other->ob->{ext_last_tell} = $name; 170 $other->ob->{ext_last_tell} = $name;
159 180
160cf::register_command reply => 0, sub { 181cf::register_command reply => 0, sub {
161 my ($who, $args) = @_; 182 my ($who, $args) = @_;
162 my $name = $who->name; 183 my $name = $who->name;
163 184
185 utf8::decode $args;
186
164 if (my $other = cf::player::find $who->{ext_last_tell}) { 187 if (my $other = cf::player::find $who->{ext_last_tell}) {
165 if ($args) { 188 if ($args) {
166 189
167 $other->ob->{ext_ignore_tell}{$name} >= time 190 $other->ob->{ext_ignore_tell}{$name} >= time
168 or delete $other->ob->{ext_ignore_tell}{$name}; 191 or delete $other->ob->{ext_ignore_tell}{$name};
169 192
170 if ($other->ob->{ext_ignore_tell}{$name} < time) { 193 if ($other->ob->{ext_ignore_tell}{$name} < time) {
194 utf8::encode $args; # ->message not yet utf8-ified
171 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args; 195 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args;
172 196
173 $who->message ("You tell " . $other->ob->name . ": $args"); 197 $who->message ("You tell " . $other->ob->name . ": $args");
174 $other->ob->message ("$name tells you: $args"); 198 $other->ob->message ("$name tells you: $args");
175 $who->{ext_last_tell} = $other->ob->name; 199 $who->{ext_last_tell} = $other->ob->name;
206 } elsif ($target && $type) { 230 } elsif ($target && $type) {
207 231
208 $timeout ne "" or $timeout = 24; 232 $timeout ne "" or $timeout = 24;
209 my $absolute_timeout = time + $timeout * 3600; 233 my $absolute_timeout = time + $timeout * 3600;
210 234
211 if (valid_user $target) { 235 if (cf::player::exists $target) {
212 if ($type eq "tell") { 236 if ($type eq "tell") {
213 $who->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_UNIQUE); 237 $who->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_UNIQUE);
214 $who->{ext_ignore_tell}{$target} = $absolute_timeout; 238 $who->{ext_ignore_tell}{$target} = $absolute_timeout;
215 } elsif ($type eq "shout") { 239 } elsif ($type eq "shout") {
216 $who->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_UNIQUE); 240 $who->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_UNIQUE);
225 } else { 249 } else {
226 $who->message ("No such player: $target", cf::NDI_UNIQUE); 250 $who->message ("No such player: $target", cf::NDI_UNIQUE);
227 } 251 }
228 252
229 } else { 253 } else {
230 $who->message ("Usage: ignore <player> <tell | shout | all> <timeout>\n" 254 $who->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n"
231 . "will ignore a player for <timeout> hours.\n" 255 . "will ignore a player for <timeout> hours.\n"
232 . "Usage: ignore list\n" 256 . "Usage: ignore list\n"
233 . "will show you a list of players currently ignored.", cf::NDI_UNIQUE); 257 . "will show you a list of players currently ignored.", cf::NDI_UNIQUE);
234 } 258 }
235}; 259};
246 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_shout} }), cf::NDI_UNIQUE); 270 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_shout} }), cf::NDI_UNIQUE);
247 } else { 271 } else {
248 $who->message ("Not ignoring anyone", cf::NDI_UNIQUE); 272 $who->message ("Not ignoring anyone", cf::NDI_UNIQUE);
249 } 273 }
250 } else { 274 } else {
251 275 if (cf::player::exists $target) {
252 if (valid_user $target) {
253 if ($type eq "tell") { 276 if ($type eq "tell") {
254 $who->message ("Not ignoring private messages from $target anymore.", cf::NDI_UNIQUE); 277 $who->message ("Not ignoring private messages from $target anymore.", cf::NDI_UNIQUE);
255 delete $who->{ext_ignore_tell} {$target}; 278 delete $who->{ext_ignore_tell} {$target};
256 } elsif ($type eq "shout") { 279 } elsif ($type eq "shout") {
257 $who->message ("Not ignoring shouts from $target anymore.", cf::NDI_UNIQUE); 280 $who->message ("Not ignoring shouts from $target anymore.", cf::NDI_UNIQUE);
264 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE); 287 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE);
265 } 288 }
266 } else { 289 } else {
267 $who->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 290 $who->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE);
268 } 291 }
269
270 } 292 }
271}; 293};
272 294
295cf::register_command seen => 0, sub {
296 my ($who, $args) = @_;
297
298 if (my ($login) = $args =~ /(\S+)/) {
299 if ($login eq $who->name) {
300 $who->message ("Very funny, $login. Ha. Ha.", cf::NDI_UNIQUE);
301 } elsif (cf::player::find $login) {
302 $who->message ("$login is right here on this server!", cf::NDI_UNIQUE);
303 } elsif (cf::player::exists $login
304 and stat sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($login) x 2) {
305 my $time = (stat _)[9];
306
307 $who->message ("$login was last seen here "
308 . (POSIX::strftime "%Y-%m-%d %H:%M:%S +0000", gmtime $time)
309 . " which was " . (int +(time - $time) / 3600) . " hours ago.", cf::NDI_UNIQUE);
310 } else {
311 $who->message ("No player named $login is known to me.", cf::NDI_UNIQUE);
312 }
313 } else {
314 $who->message ("Usage: seen <player>", cf::NDI_UNIQUE);
315 }
316};
317

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines