ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/chat.ext
Revision: 1.39
Committed: Fri Apr 11 01:15:49 2008 UTC (16 years, 1 month ago) by root
Branch: MAIN
CVS Tags: rel-2_5, rel-2_52
Changes since 1.38: +1 -1 lines
Log Message:
improve help

File Contents

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