ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/chat.ext
Revision: 1.35
Committed: Sat Oct 20 05:16:44 2007 UTC (16 years, 7 months ago) by root
Branch: MAIN
Changes since 1.34: +3 -2 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #! perl # depends=irc mandatory
2
3 # implement a replacement for the built-in say/chat/shout/tell/reply commands
4 # adds ignore/unignore functionality
5
6 use NPC_Dialogue;
7 use POSIX (); # for strftime only
8
9 our $SAY_CHANNEL = {
10 id => "say",
11 title => "Map",
12 reply => "say ",
13 tooltip => "Things said to and replied from npcs near you and other players on the same map only.",
14 };
15
16 our $CHAT_CHANNEL = {
17 id => "chat",
18 title => "Chat",
19 reply => "chat ",
20 tooltip => "Player chat and shouts, global to the server.",
21 };
22
23 sub tell_channel($) {
24 my ($target) = @_;
25
26 {
27 id => "tell-$target",
28 title => "$target",
29 reply => "tell $target ",
30 tooltip => "Private messages from/to $target",
31 }
32 }
33
34 sub send_msg($$$$$) {
35 my ($pl, $channel, $msg, $flags, $sound) = @_;
36 $pl->play_sound (cf::sound::find $sound) if defined $sound;
37 $pl->send_msg ($channel, $msg, $flags);
38 ()
39 }
40
41 sub clean_timeouts($) {
42 my ($player) = @_;
43 my $NOW = time;
44
45 for my $hash (@$player{qw(ext_ignore_shout ext_ignore_tell)}) {
46 while (my ($k, $v) = each %$hash) {
47 if ($v < $NOW) {
48 $player->message ("Your ignore on $k has expired.", cf::NDI_GREEN);
49 delete $hash->{$k};
50 } elsif (!cf::player::exists $k) {
51 $player->message ("Your ignore on $k is no longer valid (no such user).", cf::NDI_GREEN);
52 delete $hash->{$k};
53 }
54 }
55 }
56 }
57
58 # send_irc ($format, @args, $msg)
59 # make sure the last argument is the message!
60 sub send_irc {
61 my ($format, @args) = @_;
62 my $msg = pop @args;
63 for (split /\n/, $msg) {
64 ext::irc::do_notice (sprintf $format, @args, $_)
65 }
66 }
67
68 cf::player->attach (
69 prio => -1000,
70 on_login => sub {
71 my ($pl) = @_;
72
73 clean_timeouts $pl->ob;
74
75 $pl->send_msg ($SAY_CHANNEL);
76 $pl->send_msg ($CHAT_CHANNEL);
77 },
78 );
79
80 cf::register_command listen => sub {
81 my ($pl, $msg) = @_;
82 my $player = cf::player::find_active $pl->name;
83
84 if ($msg ne "") {
85 $msg = 10 if $msg > 10;
86
87 my $prev_listen = $player->listening;
88 $player->listening ($msg);
89 if ($prev_listen == $player->listening) {
90 $pl->message ("Your verbose level stays at $prev_listen.", cf::NDI_REPLY);
91 } else {
92 $pl->message ("Your verbose level is now " . $player->listening . ". (previously: $prev_listen)", cf::NDI_REPLY);
93 }
94 } else {
95 $pl->message ("Your verbose level is " . $player->listening . ".", cf::NDI_REPLY);
96 }
97 };
98
99 cf::register_command cointoss => sub {
100 my ($ob, $msg) = @_;
101
102 my $pl = $ob->contr;
103 my $name = $ob->name;
104
105 my $coin = int rand 2 ? "Heads" : "Tails";
106
107 send_msg $_, $SAY_CHANNEL => "$name flips a coin.... $coin!", cf::NDI_GREY, "msg_say"
108 for grep { $ob->on_same_map_as ($_->ob) && $_ != $pl} cf::player::list;
109
110 $pl->send_msg ($SAY_CHANNEL => "You flip a coin.... $coin!", cf::NDI_GREY | cf::NDI_REPLY);
111 };
112
113 cf::register_command orcknuckle => sub {
114 my ($ob, $msg) = @_;
115
116 my $pl = $ob->contr;
117 my $name = $ob->name;
118
119 my @orcknuckle = ("beholder", "ghost", "knight", "princess", "dragon", "orc");
120 my ($i, $j, $k, $l) = (rand 5, rand 5, rand 5, rand 6);
121 my $result = "$orcknuckle[$i], $orcknuckle[$j], $orcknuckle[$k], $orcknuckle[$l]";
122
123 send_msg $_, $SAY_CHANNEL => "$name throws his orc-knuckles and rolls $result!", cf::NDI_GREY, "msg_say"
124 for grep { $ob->on_same_map_as ($_->ob) && $_ != $pl} cf::player::list;
125
126 $pl->send_msg ($SAY_CHANNEL => "You roll $result!", cf::NDI_GREY | cf::NDI_REPLY);
127 };
128
129 my $emotes = {
130 growl => {
131 noparams => {
132 other => "<self> growls.",
133 self => "Grrrrrrrrr....",
134 },
135 params => {
136 },
137 self => {
138 },
139 },
140 giggle => {
141 noparams => {
142 other => "<self> giggles.",
143 self => "You giggle.",
144 },
145 params => {
146 },
147 self => {
148 },
149 },
150 shiver => {
151 noparams => {
152 other => "<self> shivers uncomfortably.",
153 self => "Brrrrrrrrr.",
154 },
155 params => {
156 },
157 self => {
158 },
159 },
160 chuckle => {
161 noparams => {
162 other => "<self> chuckles politely.",
163 self => "You chuckle politely",
164 },
165 params => {
166 },
167 self => {
168 },
169 },
170 sigh => {
171 noparams => {
172 other => "<self> sighs loudly.",
173 self => "You sigh.",
174 },
175 params => {
176 },
177 self => {
178 },
179 },
180 scream => {
181 noparams => {
182 other => "<self> screams at the top of his lungs!",
183 self => "ARRRRRRRRRRGH!!!!!",
184 },
185 params => {
186 },
187 self => {
188 },
189 },
190 puke => {
191 noparams => {
192 other => "<self> pukes.",
193 self => "Bleaaaaaghhhhhhh!",
194 },
195 params => {
196 target => "<self> pukes on your clothes!",
197 other => "<self> pukes on <other>.",
198 self => "You puke on <other>.",
199 },
200 self => {
201 other => "<self> pukes on his clothes.",
202 self => "You puke on yourself.",
203 },
204 },
205 strut => {
206 noparams => {
207 other => "<self> struts proudly.",
208 self => "Strut your stuff.",
209 },
210 params => {
211 },
212 self => {
213 },
214 },
215 cringe => {
216 noparams => {
217 other => "<self> cringes in terror!",
218 self => "You cringe in terror.",
219 },
220 params => {
221 target => "<self> cringes away from <other> in mortal terror.",
222 self => "You cringe away from <other>.",
223 },
224 self => {
225 },
226 },
227 hiccup => {
228 noparams => {
229 other => "<self> hiccups.",
230 self => "*HIC*",
231 },
232 params => {
233 },
234 self => {
235 },
236 },
237 clap => {
238 noparams => {
239 other => "<self> gives a round of applause.",
240 self => "Clap, clap, clap.",
241 },
242 params => {
243 },
244 self => {
245 },
246 },
247 kiss => {
248 noparams => {
249 other => "<self> makes a weird facial contortion",
250 self => "All the lonely people..",
251 },
252 params => {
253 target => "<self> kisses you.",
254 other => "<self> kisses <other>.",
255 self => "You kiss <other>.",
256 },
257 self => {
258 },
259 },
260 wink => {
261 noparams => {
262 other => "<self> winks suggestively.",
263 self => "Have you got something in your eye?",
264 },
265 params => {
266 target => "<self> winks at you.",
267 other => "<self> winks at <other>.",
268 self => "You wink suggestively at <other>.",
269 },
270 self => {
271 other => "<self> winks at himself - something strange is going on...",
272 self => "You wink at yourself?? What are you up to?",
273 },
274 },
275 pout => {
276 noparams => {
277 other => "<self> pouts.",
278 self => "Aww, don't take it so hard.",
279 },
280 params => {
281 },
282 self => {
283 },
284 },
285 cackle => {
286 noparams => {
287 other => "<self> throws back his head and cackles with insane glee!",
288 self => "You cackle gleefully.",
289 },
290 params => {
291 },
292 self => {
293 },
294 },
295 sniff => {
296 noparams => {
297 other => "<self> sniffs sadly.",
298 self => "You sniff sadly. *SNIFF*",
299 },
300 params => {
301 target => "<self> sniffs you.",
302 other => "<self> sniffs <other>",
303 self => "You sniff <other>.",
304 },
305 self => {
306 other => "<self> sniffs himself.",
307 self => "You sniff yourself.",
308 },
309 },
310 nod => {
311 noparams => {
312 other => "<self> nods solemnly.",
313 self => "You nod solemnly.",
314 },
315 params => {
316 target => "<self> nods solemnly to you.",
317 other => "<self> nods solemnly to <other>.",
318 self => "You nod solemnly to <other>.",
319 },
320 self => {
321 },
322 },
323 frown => {
324 noparams => {
325 other => "<self> frowns.",
326 self => "What's bothering you?",
327 },
328 params => {
329 target => "<self> frowns darkly at you.",
330 other => "<self> frowns darkly at <other>.",
331 self => "You frown darkly at <other>.",
332 },
333 self => {
334 other => "<self> frowns at himself.",
335 self => "You frown at yourself.",
336 },
337 },
338 snicker => {
339 noparams => {
340 other => "<self> snickers softly.",
341 self => "You snicker softly.",
342 },
343 params => {
344 },
345 self => {
346 },
347 },
348 shrug => {
349 noparams => {
350 other => "<self> shrugs helplessly.",
351 self => "You shrug.",
352 },
353 params => {
354 target => "<self> shrugs at you.",
355 other => "<self> shrugs at <other>.",
356 self => "You shrug at <other>.",
357 },
358 self => {
359 },
360 },
361 bleed => {
362 noparams => {
363 other => "<self> is bleeding all over the carpet - got a spare tourniquet?",
364 self => "You bleed all over your nice new armour.",
365 },
366 params => {
367 target => "<self> slashes his wrist and bleeds all over you.",
368 other => "<self> slashes his wrist and bleeds all over <other>.",
369 self => "You slash your wrist and bleed all over <other>",
370 },
371 self => {
372 other => "<self> performs some satanic ritual while wiping his blood on himself.",
373 self => "Very impressive! You wipe your blood all over yourself.",
374 },
375 },
376 twiddle => {
377 noparams => {
378 other => "<self> patiently twiddles his thumbs.",
379 self => "You patiently twiddle your thumbs.",
380 },
381 params => {
382 },
383 self => {
384 },
385 },
386 spit => {
387 noparams => {
388 other => "<self> spits over his left shoulder.",
389 self => "You spit over your left shoulder.",
390 },
391 params => {
392 target => "<self> spits in your face!",
393 other => "<self> spits in <other>'s face.",
394 self => "You spit on <other>.",
395 },
396 self => {
397 other => "<self> drools all over himself.",
398 self => "You drool all over yourself.",
399 },
400 },
401 glare => {
402 noparams => {
403 other => "<self> glares around him.",
404 self => "You glare at nothing in particular.",
405 },
406 params => {
407 target => "<self> glares icily at you, you feel cold to your bones.",
408 other => "<self> glares at <other>.",
409 self => "You glare icily at <other>.",
410 },
411 self => {
412 other => "<self> glares at his feet, what is bothering him?",
413 self => "You glare icily at your feet, they are suddenly very cold.",
414 },
415 },
416 bow => {
417 noparams => {
418 other => "<self> bows deeply.",
419 self => "You bow deeply.",
420 },
421 params => {
422 target => "<self> bows before you.",
423 other => "<self> bows before <other>.",
424 self => "You bow before <other>.",
425 },
426 self => {
427 other => "<self> folds up like a jackknife and kisses his own toes.",
428 self => "You kiss your toes.",
429 },
430 },
431 dance => {
432 noparams => {
433 other => "<self> expresses himself through interpretive dance.",
434 self => "You dance with glee.",
435 },
436 params => {
437 target => "<self> grabs you, and begins dancing!",
438 other => "Yipe! <self> and <other> are doing the Macarena!",
439 self => "You grab <other> and begin doing the Cha-Cha!",
440 },
441 self => {
442 other => "<self> embraces himself and begins to dance!",
443 self => "You skip and dance around by yourself.",
444 },
445 },
446 snore => {
447 noparams => {
448 other => "<self> snores loudly.",
449 self => "Zzzzzzzzzzzzzzz.",
450 },
451 params => {
452 },
453 self => {
454 },
455 },
456 blush => {
457 noparams => {
458 other => "<self> blushes.",
459 self => "Your cheeks are burning.",
460 },
461 params => {
462 },
463 self => {
464 },
465 },
466 snap => {
467 noparams => {
468 other => "<self> snaps his fingers.",
469 self => "PRONTO! you snap your fingers.",
470 },
471 params => {
472 },
473 self => {
474 },
475 },
476 wave => {
477 noparams => {
478 other => "<self> waves happily.",
479 self => "You wave.",
480 },
481 params => {
482 target => "<self> waves goodbye to you. Have a good journey.",
483 other => "<self> waves goodbye to <other>.",
484 self => "You wave goodbye to <other>.",
485 },
486 self => {
487 other => "<self> waves goodbye to himself.",
488 self => "Are you going on adventures as well??",
489 },
490 },
491 smile => {
492 noparams => {
493 other => "<self> smiles happily.",
494 self => "You smile happily.",
495 },
496 params => {
497 target => "<self> smiles at you.",
498 other => "<self> beams a smile at <other>.",
499 self => "You smile at <other>.",
500 },
501 self => {
502 },
503 },
504 sneeze => {
505 noparams => {
506 other => "<self> sneezes.",
507 self => "Gesundheit!",
508 },
509 params => {
510 target => "<self> sneezes on you, you feel the snot cover you. EEEEEEW.",
511 other => "<self> sneezes on <other> and a film of snot covers him.",
512 self => "You sneeze at <other> and a film of snot shoots onto him.",
513 },
514 self => {
515 other => "<self> sneezes, and covers himself in a slimy substance.",
516 self => "You sneeze on yourself, what a mess!",
517 },
518 },
519 bounce => {
520 noparams => {
521 other => "<self> bounces around.",
522 self => "BOIINNNNNNGG!",
523 },
524 params => {
525 target => "<self> bounces around the room with you.",
526 other => "<self> bounces around the room with <other>.",
527 self => "You bounce around the room with <other>.",
528 },
529 self => {
530 },
531 },
532 shake => {
533 noparams => {
534 other => "<self> shakes his head.",
535 self => "You shake your head.",
536 },
537 params => {
538 target => "<self> shakes your hand.",
539 other => "<self> shakes <other>'s hand.",
540 self => "You shake <other>'s hand.",
541 },
542 self => {
543 other => "<self> shakes and quivers like a bowlful of jelly.",
544 self => "You are shaken by yourself.",
545 },
546 },
547 lick => {
548 noparams => {
549 other => "<self> licks his mouth and smiles.",
550 self => "You lick your mouth and smile.",
551 },
552 params => {
553 target => "<self> licks you.",
554 other => "<self> licks <other>.",
555 self => "You lick <other>.",
556 },
557 self => {
558 other => "<self> licks himself - YUCK.",
559 self => "You lick yourself.",
560 },
561 },
562 flip => {
563 noparams => {
564 other => "<self> flips head over heels.",
565 self => "You flip head over heels.",
566 },
567 params => {
568 },
569 self => {
570 },
571 },
572 think => {
573 noparams => {
574 other => "<self> closes his eyes and thinks really hard.",
575 self => "Anything in particular that you'd care to think about?",
576 },
577 params => {
578 },
579 self => {
580 },
581 },
582 yawn => {
583 noparams => {
584 other => "<self> yawns sleepily.",
585 self => "You open up your yap and let out a big breeze of stale air.",
586 },
587 params => {
588 },
589 self => {
590 },
591 },
592 laugh => {
593 noparams => {
594 other => "<self> falls down laughing.",
595 self => "You fall down laughing.",
596 },
597 params => {
598 target => "<self> looks at you and falls down on the ground laughing.",
599 other => "<self> looks at <other> and falls down on the ground laughing.",
600 self => "You take one look at <other> and fall down laughing.",
601 },
602 self => {
603 other => "<self> is laughing at something.",
604 self => "Laugh at yourself all you want, the others won't understand.",
605 },
606 },
607 burp => {
608 noparams => {
609 other => "<self> burps loudly.",
610 self => "You burp loudly.",
611 },
612 params => {
613 },
614 self => {
615 },
616 },
617 gasp => {
618 noparams => {
619 other => "<self> gasps in astonishment.",
620 self => "You gasp in astonishment.",
621 },
622 params => {
623 },
624 self => {
625 },
626 },
627 smirk => {
628 noparams => {
629 other => "<self> smirks.",
630 self => "You smirk.",
631 },
632 params => {
633 },
634 self => {
635 },
636 },
637 cry => {
638 noparams => {
639 other => "<self> bursts into tears.",
640 self => "Waaaaaaahhh..",
641 },
642 params => {
643 target => "<self> cries on your shoulder.",
644 other => "<self> cries on <other>'s shoulder.",
645 self => "You cry on <other>'s shoulder.",
646 },
647 self => {
648 other => "<self> sobs quietly to himself.",
649 self => "You cry to yourself.",
650 },
651 },
652 sulk => {
653 noparams => {
654 other => "<self> sulks in the corner.",
655 self => "You sulk.",
656 },
657 params => {
658 },
659 self => {
660 },
661 },
662 whistle => {
663 noparams => {
664 other => "<self> whistles appreciatively.",
665 self => "You whistle appreciatively.",
666 },
667 params => {
668 target => "<self> whistles at <other>.",
669 self => "You whistle at <other>.",
670 },
671 self => {
672 other => "<self> whistles to himself in boredom.",
673 self => "You whistle while you work.",
674 },
675 },
676 groan => {
677 noparams => {
678 other => "<self> groans loudly.",
679 self => "You groan loudly.",
680 },
681 params => {
682 },
683 self => {
684 },
685 },
686 cough => {
687 noparams => {
688 other => "<self> coughs loudly.",
689 self => "Yuck, try to cover your mouth next time!",
690 },
691 params => {
692 },
693 self => {
694 },
695 },
696 grin => {
697 noparams => {
698 other => "<self> grins evilly.",
699 self => "You grin evilly.",
700 },
701 params => {
702 target => "<self> grins evilly at you.",
703 other => "<self> grins evilly at <other>.",
704 self => "You grin at <other>.",
705 },
706 self => {
707 },
708 },
709 };
710
711 for my $emotion (keys %$emotes) {
712 cf::register_command $emotion => sub {
713 my ($ob, $tname) = @_;
714
715 my $pl = $ob->contr;
716
717 cf::async {
718 my $name = $ob->name;
719 $Coro::current->{desc} = "emote handler for $name";
720
721 if ($tname eq $name) {
722 my %emote = %{ $emotes->{$emotion}->{self} || {} };
723
724 $emote{other} ||= "You look away from <self>.";
725 $emote{self} ||= "My god! Is that LEGAL?";
726
727 $emote{other} =~ s/<self>/$name/;
728
729 send_msg $_, $CHAT_CHANNEL, $emote{other}, cf::NDI_GREY, "msg_chat"
730 for grep { $ob->on_same_map_as ($_->ob) && $_ != $ob} cf::player::list;
731
732 $pl->send_msg ($emote{self}, cf::NDI_GREY | cf::NDI_REPLY);
733 } elsif ($tname) {
734 my $target = cf::player::find $tname
735 or return send_msg $pl, tell_channel $tname, "$tname is not around.", cf::NDI_DK_ORANGE | cf::NDI_REPLY, "msg_chat";
736
737 my %emote = %{ $emotes->{$emotion}->{params} || {} };
738
739 $emote{other} ||= "<self> is eyeing <other> quizzically.";
740 $emote{self} ||= "You are still nuts.";
741 $emote{target} ||= "You get the distinct feeling that <other> is nuts.";
742
743 $emote{self} =~ s/<other>/$tname/;
744 $emote{target} =~ s/<self>/$name/;
745 $emote{other} =~ s/<other>/$tname/;
746 $emote{other} =~ s/<self>/$name/;
747
748 send_msg $_, $CHAT_CHANNEL, $emote{other}, cf::NDI_GREY, "msg_chat"
749 for grep { $_ != $pl && $_ != $target && $ob->on_same_map_as ($_->ob) } cf::player::list;
750
751 send_msg $target, tell_channel $name, $emote{target}, cf::NDI_GREY, "msg_shout";
752 $pl->send_msg (tell_channel $tname, $emote{self}, cf::NDI_GREY | cf::NDI_REPLY);
753 } else {
754 my %emote = %{ $emotes->{$emotion}->{noparams} || {} };
755
756 $emote{other} ||= "<self> dances with glee.";
757 $emote{self} ||= "You are a nut.";
758
759 $emote{other} =~ s/<self>/$name/;
760
761 send_msg $_, $CHAT_CHANNEL, $emote{other}, cf::NDI_GREY, "msg_chat"
762 for grep { $ob->on_same_map_as ($_->ob) && $_ != $pl } cf::player::list;
763
764 $pl->send_msg ($CHAT_CHANNEL, $emote{self}, cf::NDI_GREY | cf::NDI_REPLY);
765 }
766 };
767 };
768 }
769
770 cf::register_command me => sub {
771 my ($pl, $msg) = @_;
772
773 my $name = $pl->name;
774
775 send_msg $pl, $SAY_CHANNEL => "* $name $msg", cf::NDI_GREY | cf::NDI_DEF | ($_ == $pl ? cf::NDI_REPLY : 0), "msg_say"
776 for grep $pl->on_same_map_as ($_->ob), cf::player::list;
777 };
778
779 cf::register_command say => sub {
780 my ($ob, $msg) = @_;
781
782 utf8::decode $msg;
783
784 return if $ob->contr->invoke (cf::EVENT_PLAYER_SAY, $msg);
785
786 if ($msg) {
787 my $name = $ob->name;
788 my @plonmap = grep $ob->on_same_map_as ($_->ob), cf::player::list;
789
790 send_msg $_, $SAY_CHANNEL => "$name says: $msg", cf::NDI_GREY, "msg_say"
791 for grep $_ != $ob->contr, @plonmap;
792 $ob->contr->send_msg ($SAY_CHANNEL => "$name says: $msg", cf::NDI_GREY | cf::NDI_REPLY);
793
794 # npcs, magic_ears etc.
795 # first find all objects and their first-level inventories
796 # within a 5x5 square that have something resembling
797 # dialogue or support on_say.
798 my ($map, $x, $y) = ($ob->map, $ob->x - 2, $ob->y - 2);
799
800 for my $npc (
801 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $ob->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_,
802 map +($_, $_->inv),
803 grep $_,
804 map $map->at ($x + $_ % 5, $y + (int $_ / 5)),
805 0..24
806 ) {
807 # if some listener teleported us somewhere else, stop right here
808 last unless $map->path == $ob->map->path;
809
810 my $dialog = new NPC_Dialogue pl => $ob->contr, npc => $npc;
811 my ($reply, @kw) = $dialog->tell ($msg);
812
813 if (defined $reply) {
814 if ($npc->type == cf::MAGIC_EAR) {
815 if (length $reply) {
816 send_msg $_, $SAY_CHANNEL => $reply, cf::NDI_BROWN, "msg_say"
817 for @plonmap;
818 }
819 $npc->use_trigger;
820 } else {
821 if (length $reply) {
822 send_msg $_, $SAY_CHANNEL => $npc->name . " says: $reply", cf::NDI_BROWN, "msg_say"
823 for @plonmap;
824 }
825 }
826 }
827
828 if (@kw) {
829 $_->send_msg ($SAY_CHANNEL => "[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN)
830 for @plonmap;
831 }
832 }
833
834 } else {
835 $ob->send_msg ($SAY_CHANNEL => "What do you want to say?", cf::NDI_GREY | cf::NDI_REPLY);
836 }
837 };
838
839 cf::register_command chat => sub {
840 my ($ob, $msg) = @_;
841
842 utf8::decode $msg;
843
844 my $pl = $ob->contr;
845
846 return if $pl->invoke (cf::EVENT_PLAYER_CHAT, $msg);
847
848 if ($msg) {
849 my $name = $ob->name;
850 my $NOW = time;
851
852 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
853 send_irc ("[%s] %s", $name, $msg);
854
855 send_msg $_, $CHAT_CHANNEL => "$name chats: $msg", cf::NDI_BLUE | cf::NDI_DEF | ($_ == $pl ? cf::NDI_REPLY : 0), "msg_chat"
856 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
857
858 } else {
859 $pl->send_msg ($CHAT_CHANNEL => "Chat what?", cf::NDI_BLUE | cf::NDI_DEF | cf::NDI_REPLY);
860 }
861 };
862
863 cf::register_command shout => sub {
864 my ($ob, $msg) = @_;
865
866 utf8::decode $msg;
867
868 my $pl = $ob->contr;
869
870 return if $pl->invoke (cf::EVENT_PLAYER_SHOUT, $msg);
871
872 if ($msg) {
873 my $NOW = time;
874 my $name = $ob->name;
875
876 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg;
877 send_irc ("\007\0034{%s} %s\n", $name, $msg);
878
879 send_msg $_, $CHAT_CHANNEL => "$name shouts: $msg", cf::NDI_RED | cf::NDI_DEF | ($_ == $pl ? cf::NDI_REPLY : 0), "msg_shout"
880 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list;
881
882 } else {
883 $pl->send_msg ($CHAT_CHANNEL => "Shout what?", cf::NDI_RED | cf::NDI_DEF | cf::NDI_REPLY);
884 }
885 };
886
887 cf::register_command tell => sub {
888 my ($ob, $args) = @_;
889 my ($target, $msg) = split /\s+/, $args, 2;
890
891 utf8::decode $msg;
892
893 my $pl = $ob->contr;
894 my $ns = $pl->ns
895 or return;
896 my $name = $ob->name;
897
898 return if $pl->invoke (cf::EVENT_PLAYER_TELL, $target, $msg);
899
900 my $pl_channel = tell_channel $target;
901
902 if ($target =~ /irc\//) {
903 my (undef, $nick) = split /\//, $target, 2;
904 $ns->send_msg ($pl_channel => "You tell $target: $args", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
905 send_irc ("(%s) %s: %s\n", $name, $nick, $msg);
906
907 } elsif (my $other = cf::player::find_active $target) {
908 my $other_channel = tell_channel $name;
909
910 if ($msg) {
911 if ($target eq $name) {
912 $ns->send_msg ($pl_channel => "You are talking to yourself, you freak!", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
913 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
914 $ns->send_msg ($pl_channel => "$target ignores what you say. Give up on it.", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
915 } else {
916 return if $other->invoke (cf::EVENT_PLAYER_TOLD, $pl, $msg);
917 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg;
918
919 $ns->send_msg ($pl_channel => "You tell $target: $msg", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
920 send_msg $other, $other_channel => "$name tells you: $msg", cf::NDI_DK_ORANGE | cf::NDI_DEF, "msg_tell";
921 }
922 } else {
923 $ns->send_msg ($pl_channel => "What do you want to tell $target?", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
924 }
925
926 } else {
927 $ns->send_msg ($pl_channel => "No such player. Your message: $msg", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
928 }
929 };
930
931 cf::register_command ignore => sub {
932 my ($pl, $args) = @_;
933 my ($target, $type, $timeout) = split /\s+/, $args;
934
935 if ($args eq "list") {
936 clean_timeouts $pl;
937
938 if ((my @ignored_tell = sort keys %{$pl->{ext_ignore_tell}})
939 + (my @ignored_shout = sort keys %{$pl->{ext_ignore_shout}})) {
940 $pl->message ("Currently ignoring private messages from: ", cf::NDI_REPLY);
941 $pl->message ((join ", ", @ignored_tell), cf::NDI_REPLY);
942 $pl->message ("Currently ignoring shouts from: ", cf::NDI_REPLY);
943 $pl->message ((join ", ", @ignored_shout), cf::NDI_REPLY);
944 $pl->message ("To stop ignoring one, use unignore.", cf::NDI_REPLY);
945 } else {
946 $pl->message ("Not ignoring anyone", cf::NDI_REPLY);
947 }
948
949 } elsif ($target && $type) {
950
951 $timeout ne "" or $timeout = 24;
952 my $absolute_timeout = time + $timeout * 3600;
953
954 if (cf::player::exists $target) {
955 if ($type eq "tell") {
956 $pl->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_REPLY);
957 $pl->{ext_ignore_tell}{$target} = $absolute_timeout;
958 } elsif ($type eq "shout") {
959 $pl->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_REPLY);
960 $pl->{ext_ignore_shout}{$target} = $absolute_timeout;
961 } elsif ($type eq "all") {
962 $pl->message ("Now ignoring everything from $target for $timeout hours.", cf::NDI_REPLY);
963 $pl->{ext_ignore_tell}{$target} = $absolute_timeout;
964 $pl->{ext_ignore_shout}{$target} = $absolute_timeout;
965 } else {
966 $pl->message ("You need to specify tell, shout or all.", cf::NDI_REPLY);
967 }
968 } else {
969 $pl->message ("No such player: $target", cf::NDI_REPLY);
970 }
971
972 } else {
973 $pl->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n"
974 . "will ignore a player for <timeout> hours.\n"
975 . "Usage: ignore list\n"
976 . "will show you a list of players currently ignored.", cf::NDI_REPLY);
977 }
978 };
979
980 cf::register_command unignore => sub {
981 my ($pl, $args) = @_;
982 my ($target, $type) = split /\s+/, $args;
983
984 if ($args eq "") {
985 if ($pl->{ext_ignore_tell}) {
986 $pl->message ("Currently ignoring private messages from: ", cf::NDI_REPLY);
987 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_tell} }), cf::NDI_REPLY);
988 $pl->message ("Currently ignoring shouts from: ", cf::NDI_REPLY);
989 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_shout} }), cf::NDI_REPLY);
990 } else {
991 $pl->message ("Not ignoring anyone", cf::NDI_REPLY);
992 }
993 } else {
994 if (cf::player::exists $target) {
995 if ($type eq "tell") {
996 $pl->message ("Not ignoring private messages from $target anymore.", cf::NDI_REPLY);
997 delete $pl->{ext_ignore_tell} {$target};
998 } elsif ($type eq "shout") {
999 $pl->message ("Not ignoring shouts from $target anymore.", cf::NDI_REPLY);
1000 delete $pl->{ext_ignore_shout}{$target};
1001 } elsif ($type eq "all") {
1002 $pl->message ("Not ignoring anything from $target anymore.", cf::NDI_REPLY);
1003 delete $pl->{ext_ignore_tell} {$target};
1004 delete $pl->{ext_ignore_shout}{$target};
1005 } else {
1006 $pl->message ("You need to specify tell, shout or all.", cf::NDI_REPLY);
1007 }
1008 } else {
1009 $pl->message ("No such player or ambiguous name: $target", cf::NDI_REPLY);
1010 }
1011 }
1012 };
1013