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

Comparing deliantra/server/ext/chat.ext (file contents):
Revision 1.12 by pippijn, Fri Mar 2 00:29:08 2007 UTC vs.
Revision 1.45 by root, Tue Sep 23 00:24:52 2008 UTC

1#! perl 1#! perl # depends=irc mandatory
2#CONVERSION: PARTIAL
3 2
4# 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 commands
5# adds ignore/unignore functionality 4# adds ignore/unignore functionality
6 5
7use NPC_Dialogue; 6use NPC_Dialogue;
8use POSIX (); # for strftime only 7use POSIX (); # for strftime only
8
9sub tell_channel($) {
10 my ($target) = @_;
11
12 {
13 id => "tell-$target",
14 title => "$target",
15 reply => "tell $target ",
16 tooltip => "Private messages from/to $target",
17 }
18}
19
20sub send_msg($$$$$) {
21 my ($pl, $channel, $msg, $flags, $sound) = @_;
22 $pl->play_sound (cf::sound::find $sound) if defined $sound;
23 $pl->send_msg ($channel, $msg, $flags);
24 ()
25}
9 26
10sub clean_timeouts($) { 27sub clean_timeouts($) {
11 my ($player) = @_; 28 my ($player) = @_;
12 my $NOW = time; 29 my $NOW = time;
13 30
14 for my $hash (@$player{qw(ext_ignore_shout ext_ignore_tell)}) { 31 for my $hash (@$player{qw(ext_ignore_shout ext_ignore_tell)}) {
15 while (my ($k, $v) = each %$hash) { 32 while (my ($k, $v) = each %$hash) {
16 if ($v < $NOW) { 33 if ($v < $NOW) {
17 $player->message ("Your ignore on $k has expired.", cf::NDI_GREEN | cf::NDI_UNIQUE); 34 $player->message ("Your ignore on $k has expired.", cf::NDI_GREEN);
18 delete $hash->{$k}; 35 delete $hash->{$k};
19 } elsif (!cf::player::exists $k) { 36 } elsif (!cf::player::exists $k) {
20 $player->message ("Your ignore on $k is no longer valid (no such user).", cf::NDI_GREEN | cf::NDI_UNIQUE); 37 $player->message ("Your ignore on $k is no longer valid (no such user).", cf::NDI_GREEN);
21 delete $hash->{$k}; 38 delete $hash->{$k};
22 } 39 }
23 } 40 }
24 } 41 }
25} 42}
26 43
44# send_irc ($format, @args, $msg)
45# make sure the last argument is the message!
46sub send_irc {
47 my ($format, @args) = @_;
48 my $msg = pop @args;
49 for (split /\n/, $msg) {
50 ext::irc::do_notice (sprintf $format, @args, $_)
51 }
52}
53
27cf::player->attach ( 54cf::player->attach (
28 prio => -1000, 55 prio => -1000,
29 on_login => sub { 56 on_login => sub {
30 my ($pl) = @_; 57 my ($pl) = @_;
31 58
59 cf::async {
32 clean_timeouts $pl->ob; 60 clean_timeouts $pl->ob;
61 };
62
63 $pl->send_msg ($cf::SAY_CHANNEL);
64 $pl->send_msg ($cf::CHAT_CHANNEL);
33 }, 65 },
34); 66);
35 67
68# TODO: remove once safe
36cf::register_command listen => sub { 69cf::register_command listen => sub {
37 my ($pl, $msg) = @_;
38 my $player = cf::player::find_active $pl->name;
39
40 if ($msg ne "") {
41 my $prev_listen = $player->listening;
42 $player->listening ($msg);
43 if ($prev_listen == $player->listening) {
44 $pl->message ("Your verbose level stayed $prev_listen.", cf::NDI_UNIQUE);
45 } else {
46 $pl->message ("Your verbose level is now " . $player->listening . ". (previously: $prev_listen)", cf::NDI_UNIQUE);
47 }
48 } else {
49 $pl->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE);
50 }
51}; 70};
52 71
53cf::register_command cointoss => sub { 72cf::register_command cointoss => sub {
54 my ($pl, $msg) = @_; 73 my ($ob, $msg) = @_;
55 74
75 my $pl = $ob->contr;
56 my $name = $pl->name; 76 my $name = $ob->name;
57 77
58 if (int rand 2) { 78 my $coin = int rand 2 ? "Heads" : "Tails";
79
80 send_msg $_, $cf::SAY_CHANNEL => "$name flips a coin.... $coin!", cf::NDI_GREY, "msg_say"
59 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) { 81 for grep { $ob->on_same_map_as ($_->ob) && $_ != $pl} cf::player::list;
60 next
61 if $other->ob == $pl;
62 $other->ob->message ("$name flips a coin.... Heads!", cf::NDI_GREY | cf::NDI_UNIQUE);
63 }
64
65 $pl->message ("You flip a coin.... Heads!", cf::NDI_GREY | cf::NDI_UNIQUE);
66 } else {
67 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) {
68 next
69 if $other->ob == $pl;
70 $other->ob->message ("$name flips a coin.... Tails!", cf::NDI_GREY | cf::NDI_UNIQUE);
71 }
72
73 $pl->message ("You flip a coin.... Tails!", cf::NDI_GREY | cf::NDI_UNIQUE);
74 } 82
83 $pl->send_msg ($cf::SAY_CHANNEL => "You flip a coin.... $coin!", cf::NDI_GREY | cf::NDI_REPLY);
75}; 84};
76 85
77cf::register_command orcknuckle => sub { 86cf::register_command orcknuckle => sub {
78 my ($pl, $msg) = @_; 87 my ($ob, $msg) = @_;
88
89 my $pl = $ob->contr;
90 my $name = $ob->name;
91
79 my @orcknuckle = ("none", "beholder", "ghost", "knight", "princess", "dragon", "orc"); 92 my @orcknuckle = ("beholder", "ghost", "knight", "princess", "dragon", "orc");
80 93 my ($i, $j, $k, $l) = (rand 5, rand 5, rand 5, rand 6);
81 my $name = $pl->name;
82
83 my ($i, $j, $k, $l) = ((int rand 5) + 1, (int rand 5) + 1, (int rand 5) + 1, (int rand 6) + 1);
84 my $result = "$orcknuckle[$i], $orcknuckle[$j], $orcknuckle[$k], $orcknuckle[$l]"; 94 my $result = "$orcknuckle[$i], $orcknuckle[$j], $orcknuckle[$k], $orcknuckle[$l]";
85 95
96 send_msg $_, $cf::SAY_CHANNEL => "$name throws his orc-knuckles and rolls $result!", cf::NDI_GREY, "msg_say"
86 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) { 97 for grep { $ob->on_same_map_as ($_->ob) && $_ != $pl} cf::player::list;
87 next
88 if $other->ob == $pl;
89 $other->ob->message ("$name rolls $result!", cf::NDI_GREY | cf::NDI_UNIQUE);
90 } 98
91
92 $pl->message ("You roll $result!", cf::NDI_GREY | cf::NDI_UNIQUE); 99 $pl->send_msg ($cf::SAY_CHANNEL => "You roll $result!", cf::NDI_GREY | cf::NDI_REPLY);
93}; 100};
94 101
95my $emotes = { 102my $emotes = {
96 growl => { 103 growl => {
97 noparams => { 104 noparams => {
143 self => { 150 self => {
144 }, 151 },
145 }, 152 },
146 scream => { 153 scream => {
147 noparams => { 154 noparams => {
148 other => "<self> screams at the top of his lungs!", 155 other => "<self> screams at the top of G<his|her> lungs!",
149 self => "ARRRRRRRRRRGH!!!!!", 156 self => "ARRRRRRRRRRGH!!!!!",
150 }, 157 },
151 params => { 158 params => {
152 }, 159 },
153 self => { 160 self => {
162 target => "<self> pukes on your clothes!", 169 target => "<self> pukes on your clothes!",
163 other => "<self> pukes on <other>.", 170 other => "<self> pukes on <other>.",
164 self => "You puke on <other>.", 171 self => "You puke on <other>.",
165 }, 172 },
166 self => { 173 self => {
167 other => "<self> pukes on his clothes.", 174 other => "<self> pukes on G<his|her> clothes.",
168 self => "You puke on yourself.", 175 self => "You puke on yourself.",
169 }, 176 },
170 }, 177 },
171 strut => { 178 strut => {
172 noparams => { 179 noparams => {
221 self => "You kiss <other>.", 228 self => "You kiss <other>.",
222 }, 229 },
223 self => { 230 self => {
224 }, 231 },
225 }, 232 },
233 smother => {
234 noparams => {
235 other => "<self> makes weird facial contortions",
236 self => "All the lonely people..",
237 },
238 params => {
239 target => "<self> smothers you with kisses.",
240 other => "<self> smothers <other> with kisses.",
241 self => "You smother <other> with kisses.",
242 },
243 self => {
244 },
245 },
226 wink => { 246 wink => {
227 noparams => { 247 noparams => {
228 other => "<self> winks suggestively.", 248 other => "<self> winks suggestively.",
229 self => "Have you got something in your eye?", 249 self => "Have you got something in your eye?",
230 }, 250 },
232 target => "<self> winks at you.", 252 target => "<self> winks at you.",
233 other => "<self> winks at <other>.", 253 other => "<self> winks at <other>.",
234 self => "You wink suggestively at <other>.", 254 self => "You wink suggestively at <other>.",
235 }, 255 },
236 self => { 256 self => {
237 other => "<self> winks at himself - something strange is going on...", 257 other => "<self> winks at G<him|her>self - something strange is going on...",
238 self => "You wink at yourself?? What are you up to?", 258 self => "You wink at yourself?? What are you up to?",
239 }, 259 },
240 }, 260 },
241 pout => { 261 pout => {
242 noparams => { 262 noparams => {
248 self => { 268 self => {
249 }, 269 },
250 }, 270 },
251 cackle => { 271 cackle => {
252 noparams => { 272 noparams => {
253 other => "<self> throws back his head and cackles with insane glee!", 273 other => "<self> throws back G<his|her> head and cackles with insane glee!",
254 self => "You cackle gleefully.", 274 self => "You cackle gleefully.",
255 }, 275 },
256 params => { 276 params => {
257 }, 277 },
258 self => { 278 self => {
267 target => "<self> sniffs you.", 287 target => "<self> sniffs you.",
268 other => "<self> sniffs <other>", 288 other => "<self> sniffs <other>",
269 self => "You sniff <other>.", 289 self => "You sniff <other>.",
270 }, 290 },
271 self => { 291 self => {
272 other => "<self> sniffs himself.", 292 other => "<self> sniffs G<him|her>self.",
273 self => "You sniff yourself.", 293 self => "You sniff yourself.",
274 }, 294 },
275 }, 295 },
276 nod => { 296 nod => {
277 noparams => { 297 noparams => {
278 other => "<self> nods solemnly.", 298 other => "<self> nods solemnly.",
279 self => "You nod solemnly.", 299 self => "You nod solemnly.",
280 }, 300 },
281 params => { 301 params => {
282 target => "<self> nods solemnly to you.", 302 target => "<self> nods solemnly at you.",
283 other => "<self> nods solemnly to <other>.", 303 other => "<self> nods solemnly at <other>.",
284 self => "You nod solemnly to <other>.", 304 self => "You nod solemnly at <other>.",
285 }, 305 },
286 self => { 306 self => {
287 }, 307 },
288 }, 308 },
289 frown => { 309 frown => {
295 target => "<self> frowns darkly at you.", 315 target => "<self> frowns darkly at you.",
296 other => "<self> frowns darkly at <other>.", 316 other => "<self> frowns darkly at <other>.",
297 self => "You frown darkly at <other>.", 317 self => "You frown darkly at <other>.",
298 }, 318 },
299 self => { 319 self => {
300 other => "<self> frowns at himself.", 320 other => "<self> frowns at G<him|her>self.",
301 self => "You frown at yourself.", 321 self => "You frown at yourself.",
302 }, 322 },
303 }, 323 },
304 snicker => { 324 snicker => {
305 noparams => { 325 noparams => {
328 noparams => { 348 noparams => {
329 other => "<self> is bleeding all over the carpet - got a spare tourniquet?", 349 other => "<self> is bleeding all over the carpet - got a spare tourniquet?",
330 self => "You bleed all over your nice new armour.", 350 self => "You bleed all over your nice new armour.",
331 }, 351 },
332 params => { 352 params => {
333 target => "<self> slashes his wrist and bleeds all over you.", 353 target => "<self> slashes G<his|her> wrist and bleeds all over you.",
334 other => "<self> slashes his wrist and bleeds all over <other>.", 354 other => "<self> slashes G<his|her> wrist and bleeds all over <other>.",
335 self => "You slash your wrist and bleed all over <other>", 355 self => "You slash your wrist and bleed all over <other>",
336 }, 356 },
337 self => { 357 self => {
338 other => "<self> performs some satanic ritual while wiping his blood on himself.", 358 other => "<self> performs some satanic ritual while wiping G<his|her> blood on G<him|her>self.",
339 self => "Very impressive! You wipe your blood all over yourself.", 359 self => "Very impressive! You wipe your blood all over yourself.",
340 }, 360 },
341 }, 361 },
342 twiddle => { 362 twiddle => {
343 noparams => { 363 noparams => {
344 other => "<self> patiently twiddles his thumbs.", 364 other => "<self> patiently twiddles G<his|her> thumbs.",
345 self => "You patiently twiddle your thumbs.", 365 self => "You patiently twiddle your thumbs.",
346 }, 366 },
347 params => { 367 params => {
348 }, 368 },
349 self => { 369 self => {
350 }, 370 },
351 }, 371 },
352 spit => { 372 spit => {
353 noparams => { 373 noparams => {
354 other => "<self> spits over his left shoulder.", 374 other => "<self> spits over G<his|her> left shoulder.",
355 self => "You spit over your left shoulder.", 375 self => "You spit over your left shoulder.",
356 }, 376 },
357 params => { 377 params => {
358 target => "<self> spits in your face!", 378 target => "<self> spits in your face!",
359 other => "<self> spits in <other>'s face.", 379 other => "<self> spits in <other>'s face.",
360 self => "You spit on <other>.", 380 self => "You spit on <other>.",
361 }, 381 },
362 self => { 382 self => {
363 other => "<self> drools all over himself.", 383 other => "<self> drools all over G<him|her>self.",
364 self => "You drool all over yourself.", 384 self => "You drool all over yourself.",
365 }, 385 },
366 }, 386 },
367 glare => { 387 glare => {
368 noparams => { 388 noparams => {
369 other => "<self> glares around him.", 389 other => "<self> glares around G<him|her>.",
370 self => "You glare at nothing in particular.", 390 self => "You glare at nothing in particular.",
371 }, 391 },
372 params => { 392 params => {
373 target => "<self> glares icily at you, you feel cold to your bones.", 393 target => "<self> glares icily at you, you feel cold to your bones.",
374 other => "<self> glares at <other>.", 394 other => "<self> glares at <other>.",
375 self => "You glare icily at <other>.", 395 self => "You glare icily at <other>.",
376 }, 396 },
377 self => { 397 self => {
378 other => "<self> glares at his feet, what is bothering him?", 398 other => "<self> glares at G<his|her> feet, what is bothering G<him|her>?",
379 self => "You glare icily at your feet, they are suddenly very cold.", 399 self => "You glare icily at your feet, they are suddenly very cold.",
380 }, 400 },
381 }, 401 },
382 bow => { 402 bow => {
383 noparams => { 403 noparams => {
388 target => "<self> bows before you.", 408 target => "<self> bows before you.",
389 other => "<self> bows before <other>.", 409 other => "<self> bows before <other>.",
390 self => "You bow before <other>.", 410 self => "You bow before <other>.",
391 }, 411 },
392 self => { 412 self => {
393 other => "<self> folds up like a jackknife and kisses his own toes.", 413 other => "<self> folds up like a jackknife and kisses G<his|her> own toes.",
394 self => "You kiss your toes.", 414 self => "You kiss your toes.",
395 }, 415 },
396 }, 416 },
397 dance => { 417 dance => {
398 noparams => { 418 noparams => {
399 other => "<self> expresses himself through interpretive dance.", 419 other => "<self> expresses G<him|her>self through interpretive dance.",
400 self => "You dance with glee.", 420 self => "You dance with glee.",
401 }, 421 },
402 params => { 422 params => {
403 target => "<self> grabs you, and begins dancing!", 423 target => "<self> grabs you, and begins dancing!",
404 other => "Yipe! <self> and <other> are doing the Macarena!", 424 other => "Yipe! <self> and <other> are doing the Macarena!",
405 self => "You grab <other> and begin doing the Cha-Cha!", 425 self => "You grab <other> and begin doing the Cha-Cha!",
406 }, 426 },
407 self => { 427 self => {
408 other => "<self> embraces himself and begins to dance!", 428 other => "<self> embraces G<him|her>self and begins to dance!",
409 self => "You skip and dance around by yourself.", 429 self => "You skip and dance around by yourself.",
410 }, 430 },
411 }, 431 },
412 snore => { 432 snore => {
413 noparams => { 433 noparams => {
429 self => { 449 self => {
430 }, 450 },
431 }, 451 },
432 snap => { 452 snap => {
433 noparams => { 453 noparams => {
434 other => "<self> snaps his fingers.", 454 other => "<self> snaps G<his|her> fingers.",
435 self => "PRONTO! you snap your fingers.", 455 self => "PRONTO! you snap your fingers.",
436 }, 456 },
437 params => { 457 params => {
438 }, 458 },
439 self => { 459 self => {
448 target => "<self> waves goodbye to you. Have a good journey.", 468 target => "<self> waves goodbye to you. Have a good journey.",
449 other => "<self> waves goodbye to <other>.", 469 other => "<self> waves goodbye to <other>.",
450 self => "You wave goodbye to <other>.", 470 self => "You wave goodbye to <other>.",
451 }, 471 },
452 self => { 472 self => {
453 other => "<self> waves goodbye to himself.", 473 other => "<self> waves goodbye to G<him|her>self.",
454 self => "Are you going on adventures as well??", 474 self => "Are you going on adventures as well??",
455 }, 475 },
456 }, 476 },
457 smile => { 477 smile => {
458 noparams => { 478 noparams => {
472 other => "<self> sneezes.", 492 other => "<self> sneezes.",
473 self => "Gesundheit!", 493 self => "Gesundheit!",
474 }, 494 },
475 params => { 495 params => {
476 target => "<self> sneezes on you, you feel the snot cover you. EEEEEEW.", 496 target => "<self> sneezes on you, you feel the snot cover you. EEEEEEW.",
477 other => "<self> sneezes on <other> and a film of snot covers him.", 497 other => "<self> sneezes on <other> and a film of snot covers G<him|her>.",
478 self => "You sneeze at <other> and a film of snot shoots onto him.", 498 self => "You sneeze at <other> and a film of snot shoots onto G<him|her>.",
479 }, 499 },
480 self => { 500 self => {
481 other => "<self> sneezes, and covers himself in a slimy substance.", 501 other => "<self> sneezes, and covers G<him|her>self in a slimy substance.",
482 self => "You sneeze on yourself, what a mess!", 502 self => "You sneeze on yourself, what a mess!",
483 }, 503 },
484 }, 504 },
485 bounce => { 505 bounce => {
486 noparams => { 506 noparams => {
495 self => { 515 self => {
496 }, 516 },
497 }, 517 },
498 shake => { 518 shake => {
499 noparams => { 519 noparams => {
500 other => "<self> shakes his head.", 520 other => "<self> shakes G<his|her> head.",
501 self => "You shake your head.", 521 self => "You shake your head.",
502 }, 522 },
503 params => { 523 params => {
504 target => "<self> shakes your hand.", 524 target => "<self> shakes your hand.",
505 other => "<self> shakes <other>'s hand.", 525 other => "<self> shakes <other>'s hand.",
510 self => "You are shaken by yourself.", 530 self => "You are shaken by yourself.",
511 }, 531 },
512 }, 532 },
513 lick => { 533 lick => {
514 noparams => { 534 noparams => {
515 other => "<self> licks his mouth and smiles.", 535 other => "<self> licks G<his|her> mouth and smiles.",
516 self => "You lick your mouth and smile.", 536 self => "You lick your mouth and smile.",
517 }, 537 },
518 params => { 538 params => {
519 target => "<self> licks you.", 539 target => "<self> licks you.",
520 other => "<self> licks <other>.", 540 other => "<self> licks <other>.",
521 self => "You lick <other>.", 541 self => "You lick <other>.",
522 }, 542 },
523 self => { 543 self => {
524 other => "<self> licks himself - YUCK.", 544 other => "<self> licks G<him|her>self - YUCK.",
525 self => "You lick yourself.", 545 self => "You lick yourself.",
526 }, 546 },
527 }, 547 },
528 flip => { 548 flip => {
529 noparams => { 549 noparams => {
535 self => { 555 self => {
536 }, 556 },
537 }, 557 },
538 think => { 558 think => {
539 noparams => { 559 noparams => {
540 other => "<self> closes his eyes and thinks really hard.", 560 other => "<self> closes G<his|her> eyes and thinks really hard.",
541 self => "Anything in particular that you'd care to think about?", 561 self => "Anything in particular that you'd care to think about?",
542 }, 562 },
543 params => { 563 params => {
544 }, 564 },
545 self => { 565 self => {
609 target => "<self> cries on your shoulder.", 629 target => "<self> cries on your shoulder.",
610 other => "<self> cries on <other>'s shoulder.", 630 other => "<self> cries on <other>'s shoulder.",
611 self => "You cry on <other>'s shoulder.", 631 self => "You cry on <other>'s shoulder.",
612 }, 632 },
613 self => { 633 self => {
614 other => "<self> sobs quietly to himself.", 634 other => "<self> sobs quietly to G<him|her>self.",
615 self => "You cry to yourself.", 635 self => "You cry to yourself.",
616 }, 636 },
617 }, 637 },
618 sulk => { 638 sulk => {
619 noparams => { 639 noparams => {
633 params => { 653 params => {
634 target => "<self> whistles at <other>.", 654 target => "<self> whistles at <other>.",
635 self => "You whistle at <other>.", 655 self => "You whistle at <other>.",
636 }, 656 },
637 self => { 657 self => {
638 other => "<self> whistles to himself in boredom.", 658 other => "<self> whistles to G<him|her>self in boredom.",
639 self => "You whistle while you work.", 659 self => "You whistle while you work.",
640 }, 660 },
641 }, 661 },
642 groan => { 662 groan => {
643 noparams => { 663 noparams => {
674 }, 694 },
675}; 695};
676 696
677for my $emotion (keys %$emotes) { 697for my $emotion (keys %$emotes) {
678 cf::register_command $emotion => sub { 698 cf::register_command $emotion => sub {
679 my ($pl, $tname) = @_; 699 my ($ob, $tname) = @_;
700
701 my $pl = $ob->contr;
680 702
681 cf::async { 703 cf::async {
682 my $name = $pl->name; 704 my $name = $ob->name;
705 $Coro::current->{desc} = "emote handler for $name";
683 706
684 if ($tname eq $name) { 707 if ($tname eq $name) {
685 my $emote = $emotes->{$emotion}->{self}; 708 my %emote = %{ $emotes->{$emotion}->{self} || {} };
686 709
687 $emote->{other} = "You look away from <self>." 710 $emote{other} ||= "You look away from <self>.";
688 if !$emote->{other};
689 $emote->{self} = "My god! Is that LEGAL?" 711 $emote{self} ||= "My god! Is that LEGAL?";
690 if !$emote->{self};
691 712
692 $emote->{other} =~ s/<self>/$name/; 713 $emote{other} =~ s/<self>/$name/;
714
715 $_ = $pl->expand_cfpod ($_)
716 for values %emote;
693 717
718 send_msg $_, $cf::CHAT_CHANNEL, $emote{other}, cf::NDI_GREY | cf::NDI_VERBATIM, "msg_chat"
694 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) { 719 for grep { $ob->on_same_map_as ($_->ob) && $_ != $ob} cf::player::list;
695 next
696 if $other->ob == $pl;
697 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE);
698 }
699 720
700 $pl->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE); 721 $pl->send_msg ($emote{self}, cf::NDI_GREY | cf::NDI_REPLY | cf::NDI_VERBATIM);
701 } elsif ($tname) { 722 } elsif ($tname) {
702 my $target = cf::player::find $tname 723 my $target = cf::player::find $tname
703 or return $pl->reply (undef, "$tname is not around."); 724 or return send_msg $pl, tell_channel $tname, "$tname is not around.", cf::NDI_DK_ORANGE | cf::NDI_REPLY, "msg_chat";
704 725
705 my $emote = $emotes->{$emotion}->{params}; 726 my %emote = %{ $emotes->{$emotion}->{params} || {} };
706 727
707 $emote->{other} = "<self> is eyeing <other> quizzically." 728 $emote{other} ||= "<self> is eyeing <other> quizzically.";
708 if !$emote->{other};
709 $emote->{self} = "You are still nuts." 729 $emote{self} ||= "You are still nuts.";
710 if !$emote->{self};
711 $emote->{target} = "You get the distinct feeling that <other> is nuts." 730 $emote{target} ||= "You get the distinct feeling that <self> is nuts.";
712 if !$emote->{target};
713 731
714 $emote->{self} =~ s/<other>/$tname/; 732 $emote{self} =~ s/<other>/$tname/;
715 $emote->{target} =~ s/<self>/$name/; 733 $emote{target} =~ s/<self>/$name/;
716 $emote->{other} =~ s/<other>/$tname/; 734 $emote{other} =~ s/<other>/$tname/;
717 $emote->{other} =~ s/<self>/$name/; 735 $emote{other} =~ s/<self>/$name/;
718 736
719 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) { 737 $_ = $pl->expand_cfpod ($_)
720 next 738 for values %emote;
721 if $other->ob == $pl or $other == $target;
722 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE);
723 }
724 739
725 $target->ob->message ($emote->{target}, cf::NDI_GREY | cf::NDI_UNIQUE); 740 send_msg $_, $cf::CHAT_CHANNEL, $emote{other}, cf::NDI_GREY | cf::NDI_VERBATIM, "msg_chat"
726 $pl->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE); 741 for grep { $_ != $pl && $_ != $target && $ob->on_same_map_as ($_->ob) } cf::player::list;
742
743 send_msg $target, tell_channel $name, $emote{target}, cf::NDI_GREY | cf::NDI_VERBATIM, "msg_shout";
744 $pl->send_msg (tell_channel $tname, $emote{self}, cf::NDI_GREY | cf::NDI_REPLY | cf::NDI_VERBATIM);
727 } else { 745 } else {
728 my $emote = $emotes->{$emotion}->{noparams}; 746 my %emote = %{ $emotes->{$emotion}->{noparams} || {} };
729 $emote->{other} =~ s/<self>/$name/;
730 747
731 $emote->{other} = "<self> dances with glee." 748 $emote{other} ||= "<self> dances with glee.";
732 if !$emote->{other};
733 $emote->{self} = "You are a nut." 749 $emote{self} ||= "You are a nut.";
734 if !$emote->{self};
735 750
751 $emote{other} =~ s/<self>/$name/;
752
753 $_ = $pl->expand_cfpod ($_)
754 for values %emote;
755
756 send_msg $_, $cf::CHAT_CHANNEL, $emote{other}, cf::NDI_GREY | cf::NDI_VERBATIM, "msg_chat"
736 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) { 757 for grep { $ob->on_same_map_as ($_->ob) && $_ != $pl } cf::player::list;
737 next
738 if $other->ob == $pl;
739 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE);
740 }
741 758
742 $pl->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE); 759 $pl->send_msg ($cf::CHAT_CHANNEL, $emote{self}, cf::NDI_GREY | cf::NDI_REPLY | cf::NDI_VERBATIM);
743 } 760 }
744 }; 761 };
745 }; 762 };
746} 763}
747 764
748cf::register_command me => sub { 765cf::register_command me => sub {
749 my ($pl, $msg) = @_; 766 my ($pl, $msg) = @_;
750 767
751 my $name = $pl->name; 768 my $name = $pl->name;
752 769
753 $_->ob->message ("* $name $msg", cf::NDI_GREY | cf::NDI_UNIQUE) 770 send_msg $_, $cf::SAY_CHANNEL => "* $name $msg", cf::NDI_GREY | cf::NDI_DEF | ($_ == $pl ? cf::NDI_REPLY : 0), "msg_say"
754 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 771 for grep $pl->on_same_map_as ($_->ob), cf::player::list;
755}; 772};
756 773
757cf::register_command say => sub { 774cf::register_command say => sub {
758 my ($pl, $msg) = @_; 775 my ($ob, $msg) = @_;
759 776
760 utf8::decode $msg; 777 utf8::decode $msg;
761 778
762 return if $pl->contr->invoke (cf::EVENT_PLAYER_SAY, $msg); 779 return if $ob->contr->invoke (cf::EVENT_PLAYER_SAY, $msg);
763 780
764 if ($msg) { 781 if ($msg) {
765 my $name = $pl->name; 782 my $name = $ob->name;
766
767 utf8::encode $msg; # ->message not yet utf8-ified
768 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE)
769 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 783 my @plonmap = grep $ob->on_same_map_as ($_->ob), cf::player::list;
770 utf8::decode $msg; 784
785 send_msg $_, $cf::SAY_CHANNEL => "$name says: $msg", cf::NDI_GREY, "msg_say"
786 for grep $_ != $ob->contr, @plonmap;
787 $ob->contr->send_msg ($cf::SAY_CHANNEL => "$name says: $msg", cf::NDI_GREY | cf::NDI_REPLY);
771 788
772 # npcs, magic_ears etc. 789 # npcs, magic_ears etc.
773 # first find all objects and theirt-level inventories 790 # first find all objects and their first-level inventories
774 # within a 5x5 square # that have something resembling 791 # within a 5x5 square that have something resembling
775 # dialogue or support on_say. 792 # dialogue or support on_say.
776 my ($map, $x, $y) = ($pl->map, $pl->x - 2, $pl->y - 2); 793 my ($map, $x, $y) = ($ob->map, $ob->x - 2, $ob->y - 2);
777 794
778 for my $npc ( 795 for my $npc (
779 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $pl->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_, 796 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $ob->contr, $msg) && return) || $_->has_dialogue,
780 map +($_, $_->inv), 797 map +($_, $_->inv),
781 grep $_, 798 grep $_,
782 map $map->at ($x + $_ % 5, $y + (int $_ / 5)), 799 map $map->at ($x + $_ % 5, $y + (int $_ / 5)),
783 0..24 800 0..24
784 ) { 801 ) {
785 # if some listener teleported us somewhere else, stop right here 802 # if some listener teleported us somewhere else, stop right here
786 last unless $map->path == $pl->map->path; 803 last unless $map->path == $ob->map->path;
787 804
788 my $dialog = new NPC_Dialogue ob => $pl, npc => $npc; 805 my $dialog = new NPC_Dialogue pl => $ob->contr, npc => $npc;
789 my ($reply, @kw) = $dialog->tell ($msg); 806 my ($reply, @kw) = $dialog->tell ($msg);
790 807
791 if (defined $reply) { 808 if (defined $reply) {
792 if ($npc->type == cf::MAGIC_EAR) { 809 if ($npc->type == cf::MAGIC_EAR) {
793 if (length $reply) { 810 if (length $reply) {
794 $_->ob->message ($reply, cf::NDI_BROWN | cf::NDI_UNIQUE) 811 send_msg $_, $cf::SAY_CHANNEL => $reply, cf::NDI_BROWN, "msg_say"
795 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 812 for @plonmap;
796 } 813 }
797 $npc->use_trigger; 814 $npc->use_trigger;
798 } else { 815 } else {
799 if (length $reply) { 816 if (length $reply) {
800 $_->ob->message ($npc->name . " says: $reply", cf::NDI_BROWN | cf::NDI_UNIQUE) 817 send_msg $_, $cf::SAY_CHANNEL => $npc->name . " says: $reply", cf::NDI_BROWN, "msg_say"
801 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 818 for @plonmap;
802 } 819 }
803 } 820 }
804 } 821 }
805 822
806 if (@kw) { 823 if (@kw) {
807 $_->ob->message ("[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN | cf::NDI_UNIQUE) 824 $_->send_msg ($cf::SAY_CHANNEL => "[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN)
808 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 825 for @plonmap;
809 } 826 }
810 } 827 }
811 828
812 } else { 829 } else {
813 $pl->message ("What do you want to say?", cf::NDI_UNIQUE); 830 $ob->send_msg ($cf::SAY_CHANNEL => "What do you want to say?", cf::NDI_GREY | cf::NDI_REPLY);
814 } 831 }
815}; 832};
816 833
817cf::register_command chat => sub { 834cf::register_command chat => sub {
818 my ($pl, $msg) = @_; 835 my ($ob, $msg) = @_;
819 836
820 utf8::decode $msg; 837 utf8::decode $msg;
821 838
839 my $pl = $ob->contr;
840
822 return if $pl->contr->invoke (cf::EVENT_PLAYER_CHAT, $msg); 841 return if $pl->invoke (cf::EVENT_PLAYER_CHAT, $msg);
823 842
824 if ($msg) { 843 if ($msg) {
825 my $name = $pl->name; 844 my $name = $ob->name;
826 my $NOW = time; 845 my $NOW = time;
827 846
828 utf8::encode $msg; # ->message not yet utf8-ified
829 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg; 847 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
830 ext::schmorp_irc::do_notice (sprintf "[%s] %s", $name, $msg); 848 send_irc ("[%s] %s", $name, $msg);
831 849
832 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) 850 send_msg $_, $cf::CHAT_CHANNEL => "$name chats: $msg", cf::NDI_BLUE | cf::NDI_DEF | ($_ == $pl ? cf::NDI_REPLY : 0), "msg_chat"
833 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list; 851 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW } cf::player::list;
834 852
835 } else { 853 } else {
836 $pl->message ("Chat what?", cf::NDI_UNIQUE); 854 $pl->send_msg ($cf::CHAT_CHANNEL => "Chat what?", cf::NDI_BLUE | cf::NDI_DEF | cf::NDI_REPLY);
837 } 855 }
838}; 856};
839 857
840cf::register_command shout => sub { 858cf::register_command shout => sub {
841 my ($pl, $msg) = @_; 859 my ($ob, $msg) = @_;
842 860
843 utf8::decode $msg; 861 utf8::decode $msg;
844 862
863 my $pl = $ob->contr;
864
845 return if $pl->contr->invoke (cf::EVENT_PLAYER_SHOUT, $msg); 865 return if $pl->invoke (cf::EVENT_PLAYER_SHOUT, $msg);
846 866
847 if ($msg) { 867 if ($msg) {
848 my $NOW = time; 868 my $NOW = time;
849 my $name = $pl->name; 869 my $name = $ob->name;
850 870
851 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg; 871 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg;
852 ext::schmorp_irc::do_notice (sprintf "\007\0034{%s} %s\n", $name, $msg); 872 send_irc ("\007\0034{%s} %s\n", $name, $msg);
853 873
854 utf8::encode $msg; # ->message not yet utf8-ified 874 send_msg $_, $cf::CHAT_CHANNEL => "$name shouts: $msg", cf::NDI_RED | cf::NDI_DEF | ($_ == $pl ? cf::NDI_REPLY : 0), "msg_shout"
855 $_->ob->message ("$name shouts: $msg", cf::NDI_RED)
856 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list; 875 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW } cf::player::list;
857 876
858 } else { 877 } else {
859 $pl->message ("Shout what?", cf::NDI_UNIQUE); 878 $pl->send_msg ($cf::CHAT_CHANNEL => "Shout what?", cf::NDI_RED | cf::NDI_DEF | cf::NDI_REPLY);
860 } 879 }
861}; 880};
862 881
863cf::register_command tell => sub { 882cf::register_command tell => sub {
864 my ($pl, $args) = @_; 883 my ($ob, $args) = @_;
865 my ($target, $msg) = split /\s+/, $args, 2; 884 my ($target, $msg) = split /\s+/, $args, 2;
866 885
867 utf8::decode $msg; 886 utf8::decode $msg;
868 887
888 my $pl = $ob->contr;
889 my $ns = $pl->ns
890 or return;
891 my $name = $ob->name;
892
869 return if $pl->contr->invoke (cf::EVENT_PLAYER_TELL, $target, $msg); 893 return if $pl->invoke (cf::EVENT_PLAYER_TELL, $target, $msg);
870 894
871 my $name = $pl->name; 895 my $pl_channel = tell_channel $target;
872 896
873 if ($target =~ /irc\//) { 897 if ($target =~ /irc\//) {
874 my (undef, $nick) = split /\//, $target, 2; 898 my (undef, $nick) = split /\//, $target, 2;
875 $pl->message ("You tell $target: $args"); 899 $ns->send_msg ($pl_channel => "You tell $target: $args", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
876 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $msg); 900 send_irc ("(%s) %s: %s\n", $name, $nick, $msg);
901
877 } elsif (my $other = cf::player::find_active $target) { 902 } elsif (my $other = cf::player::find_active $target) {
903 my $other_channel = tell_channel $name;
878 904
879 if ($msg) { 905 if ($msg) {
880 if ($target eq $name) { 906 if ($target eq $name) {
881 $pl->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE); 907 $ns->send_msg ($pl_channel => "You are talking to yourself, you freak!", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
882 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) { 908 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
883 $pl->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE); 909 $ns->send_msg ($pl_channel => "$target ignores what you say. Give up on it.", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
884 } else { 910 } else {
885 return if $other->invoke (cf::EVENT_PLAYER_TOLD, $pl->contr, $msg); 911 return if $other->invoke (cf::EVENT_PLAYER_TOLD, $pl, $msg);
886 utf8::encode $msg; # ->message not yet utf8-ified
887 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg; 912 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg;
888 913
889 $pl->message ("You tell $target: $msg"); 914 $ns->send_msg ($pl_channel => "You tell $target: $msg", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
890 $other->ob->message ("$name tells you: $msg"); 915 send_msg $other, $other_channel => "$name tells you: $msg", cf::NDI_DK_ORANGE | cf::NDI_DEF, "msg_tell";
891 $other->ob->{ext_last_tell} = $name;
892 } 916 }
893 } else { 917 } else {
894 $pl->message ("What do you want to tell $target?", cf::NDI_UNIQUE); 918 $ns->send_msg ($pl_channel => "What do you want to tell $target?", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
895 } 919 }
896 920
897 } else { 921 } else {
898 $pl->message ("No such player. Your message: $msg", cf::NDI_UNIQUE); 922 $ns->send_msg ($pl_channel => "No such player. Your message: $msg", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
899 }
900};
901
902cf::register_command reply => sub {
903 my ($pl, $args) = @_;
904 my $name = $pl->name;
905
906 utf8::decode $args;
907
908 return if $pl->contr->invoke (cf::EVENT_PLAYER_TELL, $pl->{ext_last_tell}, $args);
909
910 if ($pl->{ext_last_tell} =~ /irc\//) {
911 my (undef, $nick) = split /\//, $pl->{ext_last_tell}, 2;
912 $pl->message ("You tell " . $pl->{ext_last_tell} . ": $args");
913 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $args);
914 } elsif (my $other = cf::player::find_active $pl->{ext_last_tell}) {
915
916 if ($args) {
917 $other->ob->{ext_ignore_tell}{$name} >= time
918 or delete $other->ob->{ext_ignore_tell}{$name};
919
920 if ($other->ob->{ext_ignore_tell}{$name} < time) {
921 utf8::encode $args; # ->message not yet utf8-ified
922 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args;
923
924 $pl->message ("You tell " . $other->ob->name . ": $args");
925 $other->ob->message ("$name tells you: $args");
926 $pl->{ext_last_tell} = $other->ob->name;
927 } else {
928 $pl->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE);
929 }
930 } else {
931 $pl->message ("What do you want to tell ".$other->ob->name."?", cf::NDI_UNIQUE);
932 }
933
934 } else {
935 $pl->message ("Can't reply, player left. Your message: $args".$pl->{ext_last_tell}, cf::NDI_UNIQUE);
936 } 923 }
937}; 924};
938 925
939cf::register_command ignore => sub { 926cf::register_command ignore => sub {
940 my ($pl, $args) = @_; 927 my ($pl, $args) = @_;
941 my ($target, $type, $timeout) = split /\s+/, $args; 928 my ($target, $type, $timeout) = split /\s+/, $args;
942 929
930 cf::async {
943 if ($args eq "list") { 931 if ($args eq "list") {
944 clean_timeouts $pl; 932 clean_timeouts $pl;
945 933
946 if ((my @ignored_tell = sort keys %{$pl->{ext_ignore_tell}}) 934 if ((my @ignored_tell = sort keys %{$pl->{ext_ignore_tell}})
947 + (my @ignored_shout = sort keys %{$pl->{ext_ignore_shout}})) { 935 + (my @ignored_shout = sort keys %{$pl->{ext_ignore_shout}})) {
948 $pl->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE); 936 $pl->message ("Currently ignoring private messages from: ", cf::NDI_REPLY);
949 $pl->message ((join ", ", @ignored_tell), cf::NDI_UNIQUE); 937 $pl->message ((join ", ", @ignored_tell), cf::NDI_REPLY);
950 $pl->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE); 938 $pl->message ("Currently ignoring shouts from: ", cf::NDI_REPLY);
951 $pl->message ((join ", ", @ignored_shout), cf::NDI_UNIQUE); 939 $pl->message ((join ", ", @ignored_shout), cf::NDI_REPLY);
952 $pl->message ("To stop ignoring one, use unignore.", cf::NDI_UNIQUE); 940 $pl->message ("To stop ignoring one, use unignore.", cf::NDI_REPLY);
941 } else {
942 $pl->message ("Not ignoring anyone", cf::NDI_REPLY);
943 }
944
945 } elsif ($target && $type) {
946 $timeout ne "" or $timeout = 24;
947 my $absolute_timeout = time + $timeout * 3600;
948
949 if (cf::player::exists $target) {
950 if ($type eq "tell") {
951 $pl->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_REPLY);
952 $pl->{ext_ignore_tell}{$target} = $absolute_timeout;
953 } elsif ($type eq "shout") {
954 $pl->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_REPLY);
955 $pl->{ext_ignore_shout}{$target} = $absolute_timeout;
956 } elsif ($type eq "all") {
957 $pl->message ("Now ignoring everything from $target for $timeout hours.", cf::NDI_REPLY);
958 $pl->{ext_ignore_tell}{$target} = $absolute_timeout;
959 $pl->{ext_ignore_shout}{$target} = $absolute_timeout;
960 } else {
961 $pl->message ("You need to specify tell, shout or all.", cf::NDI_REPLY);
962 }
963 } else {
964 $pl->message ("No such player: $target", cf::NDI_REPLY);
965 }
966
953 } else { 967 } else {
954 $pl->message ("Not ignoring anyone", cf::NDI_UNIQUE); 968 $pl->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n"
969 . "will ignore a player for <timeout> hours.\n"
970 . "Usage: ignore list\n"
971 . "will show you a list of players currently ignored.", cf::NDI_REPLY);
955 } 972 }
956
957 } elsif ($target && $type) {
958
959 $timeout ne "" or $timeout = 24;
960 my $absolute_timeout = time + $timeout * 3600;
961
962 if (cf::player::exists $target) {
963 if ($type eq "tell") {
964 $pl->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_UNIQUE);
965 $pl->{ext_ignore_tell}{$target} = $absolute_timeout;
966 } elsif ($type eq "shout") {
967 $pl->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_UNIQUE);
968 $pl->{ext_ignore_shout}{$target} = $absolute_timeout;
969 } elsif ($type eq "all") {
970 $pl->message ("Now ignoring everything from $target for $timeout hours.", cf::NDI_UNIQUE);
971 $pl->{ext_ignore_tell}{$target} = $absolute_timeout;
972 $pl->{ext_ignore_shout}{$target} = $absolute_timeout;
973 } else {
974 $pl->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE);
975 }
976 } else {
977 $pl->message ("No such player: $target", cf::NDI_UNIQUE);
978 }
979
980 } else {
981 $pl->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n"
982 . "will ignore a player for <timeout> hours.\n"
983 . "Usage: ignore list\n"
984 . "will show you a list of players currently ignored.", cf::NDI_UNIQUE);
985 } 973 };
986}; 974};
987 975
988cf::register_command unignore => sub { 976cf::register_command unignore => sub {
989 my ($pl, $args) = @_; 977 my ($pl, $args) = @_;
990 my ($target, $type) = split /\s+/, $args; 978 my ($target, $type) = split /\s+/, $args;
991 979
980 cf::async {
992 if ($args eq "") { 981 if ($args eq "") {
993 if ($pl->{ext_ignore_tell}) { 982 if ($pl->{ext_ignore_tell}) {
994 $pl->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE); 983 $pl->message ("Currently ignoring private messages from: ", cf::NDI_REPLY);
995 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_tell} }), cf::NDI_UNIQUE); 984 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_tell} }), cf::NDI_REPLY);
996 $pl->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE); 985 $pl->message ("Currently ignoring shouts from: ", cf::NDI_REPLY);
997 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_shout} }), cf::NDI_UNIQUE); 986 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_shout} }), cf::NDI_REPLY);
998 } else {
999 $pl->message ("Not ignoring anyone", cf::NDI_UNIQUE);
1000 }
1001 } else {
1002 if (cf::player::exists $target) {
1003 if ($type eq "tell") {
1004 $pl->message ("Not ignoring private messages from $target anymore.", cf::NDI_UNIQUE);
1005 delete $pl->{ext_ignore_tell} {$target};
1006 } elsif ($type eq "shout") {
1007 $pl->message ("Not ignoring shouts from $target anymore.", cf::NDI_UNIQUE);
1008 delete $pl->{ext_ignore_shout}{$target};
1009 } elsif ($type eq "all") {
1010 $pl->message ("Not ignoring anything from $target anymore.", cf::NDI_UNIQUE);
1011 delete $pl->{ext_ignore_tell} {$target};
1012 delete $pl->{ext_ignore_shout}{$target};
1013 } else { 987 } else {
1014 $pl->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE); 988 $pl->message ("Not ignoring anyone", cf::NDI_REPLY);
1015 } 989 }
1016 } else { 990 } else {
991 if (cf::player::exists $target) {
992 if ($type eq "tell") {
993 $pl->message ("Not ignoring private messages from $target anymore.", cf::NDI_REPLY);
994 delete $pl->{ext_ignore_tell} {$target};
995 } elsif ($type eq "shout") {
996 $pl->message ("Not ignoring shouts from $target anymore.", cf::NDI_REPLY);
997 delete $pl->{ext_ignore_shout}{$target};
998 } elsif ($type eq "all") {
999 $pl->message ("Not ignoring anything from $target anymore.", cf::NDI_REPLY);
1000 delete $pl->{ext_ignore_tell} {$target};
1001 delete $pl->{ext_ignore_shout}{$target};
1002 } else {
1003 $pl->message ("You need to specify tell, shout or all.", cf::NDI_REPLY);
1004 }
1005 } else {
1017 $pl->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 1006 $pl->message ("No such player or ambiguous name: $target", cf::NDI_REPLY);
1007 }
1018 } 1008 }
1019 } 1009 };
1020}; 1010};
1021 1011
1022cf::register_command seen => sub {
1023 my ($pl, $args) = @_;
1024
1025 if (my ($login) = $args =~ /(\S+)/) {
1026 if ($login eq $pl->name) {
1027 $pl->message ("Very funny, $login. Ha. Ha.", cf::NDI_UNIQUE);
1028 } elsif (cf::player::find_active $login) {
1029 $pl->message ("$login is right here on this server!", cf::NDI_UNIQUE);
1030 } elsif (cf::player::exists $login
1031 and stat sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($login) x 2) {
1032 my $time = (stat _)[9];
1033
1034 $pl->message ("$login was last seen here "
1035 . (POSIX::strftime "%Y-%m-%d %H:%M:%S +0000", gmtime $time)
1036 . " which was " . (int +(time - $time) / 3600) . " hours ago.", cf::NDI_UNIQUE);
1037 } else {
1038 $pl->message ("No player named $login is known to me.", cf::NDI_UNIQUE);
1039 }
1040 } else {
1041 $pl->message ("Usage: seen <player>", cf::NDI_UNIQUE);
1042 }
1043};
1044

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines