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.10 by pippijn, Thu Mar 1 13:14:10 2007 UTC vs.
Revision 1.40 by root, Thu May 1 06:33:19 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
32 clean_timeouts $pl->ob; 59 clean_timeouts $pl->ob;
60
61 $pl->send_msg ($cf::SAY_CHANNEL);
62 $pl->send_msg ($cf::CHAT_CHANNEL);
33 }, 63 },
34); 64);
35 65
36cf::register_command listen => sub { 66cf::register_command listen => sub {
37 my ($pl, $msg) = @_; 67 my ($pl, $msg) = @_;
38 my $player = cf::player::find_active $pl->name; 68 my $player = cf::player::find_active $pl->name;
39 69
40 if ($msg ne "") { 70 if ($msg ne "") {
71 $msg = 10 if $msg > 10;
72
41 my $prev_listen = $player->listening; 73 my $prev_listen = $player->listening;
42 $player->listening ($msg); 74 $player->listening ($msg);
43 if ($prev_listen == $player->listening) { 75 if ($prev_listen == $player->listening) {
44 $pl->message ("Your verbose level stayed $prev_listen.", cf::NDI_UNIQUE); 76 $pl->message ("Your verbose level stays at $prev_listen.", cf::NDI_REPLY);
45 } else { 77 } else {
46 $pl->message ("Your verbose level is now " . $player->listening . ". (previously: $prev_listen)", cf::NDI_UNIQUE); 78 $pl->message ("Your verbose level is now " . $player->listening . ". (previously: $prev_listen)", cf::NDI_REPLY);
47 } 79 }
48 } else { 80 } else {
49 $pl->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE); 81 $pl->message ("Your verbose level is " . $player->listening . ".", cf::NDI_REPLY);
50 } 82 }
51}; 83};
52 84
53cf::register_command cointoss => sub { 85cf::register_command cointoss => sub {
54 my ($pl, $msg) = @_; 86 my ($ob, $msg) = @_;
55 87
88 my $pl = $ob->contr;
56 my $name = $pl->name; 89 my $name = $ob->name;
57 90
58 if (int rand 2) { 91 my $coin = int rand 2 ? "Heads" : "Tails";
92
93 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 ) { 94 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 } 95
96 $pl->send_msg ($cf::SAY_CHANNEL => "You flip a coin.... $coin!", cf::NDI_GREY | cf::NDI_REPLY);
75}; 97};
76 98
77cf::register_command orcknuckle => sub { 99cf::register_command orcknuckle => sub {
78 my ($pl, $msg) = @_; 100 my ($ob, $msg) = @_;
101
102 my $pl = $ob->contr;
103 my $name = $ob->name;
104
79 my @orcknuckle = ("none", "beholder", "ghost", "knight", "princess", "dragon", "orc"); 105 my @orcknuckle = ("beholder", "ghost", "knight", "princess", "dragon", "orc");
80 106 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]"; 107 my $result = "$orcknuckle[$i], $orcknuckle[$j], $orcknuckle[$k], $orcknuckle[$l]";
85 108
109 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 ) { 110 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 } 111
91
92 $pl->message ("You roll $result!", cf::NDI_GREY | cf::NDI_UNIQUE); 112 $pl->send_msg ($cf::SAY_CHANNEL => "You roll $result!", cf::NDI_GREY | cf::NDI_REPLY);
93}; 113};
94 114
95my $emotes = { 115my $emotes = {
96 growl => { 116 growl => {
97 noparams => { 117 noparams => {
221 self => "You kiss <other>.", 241 self => "You kiss <other>.",
222 }, 242 },
223 self => { 243 self => {
224 }, 244 },
225 }, 245 },
246 smother => {
247 noparams => {
248 other => "<self> makes weird facial contortions",
249 self => "All the lonely people..",
250 },
251 params => {
252 target => "<self> smothers you with kisses.",
253 other => "<self> smothers <other> with kisses.",
254 self => "You smother <other> with kisses.",
255 },
256 self => {
257 },
258 },
226 wink => { 259 wink => {
227 noparams => { 260 noparams => {
228 other => "<self> winks suggestively.", 261 other => "<self> winks suggestively.",
229 self => "Have you got something in your eye?", 262 self => "Have you got something in your eye?",
230 }, 263 },
231 params => { 264 params => {
265 target => "<self> winks at you.",
232 target => "<self> winks at <other>.", 266 other => "<self> winks at <other>.",
233 self => "You wink suggestively at <other>.", 267 self => "You wink suggestively at <other>.",
234 }, 268 },
235 self => { 269 self => {
236 other => "<self> winks at himself - something strange is going on...", 270 other => "<self> winks at himself - something strange is going on...",
237 self => "You wink at yourself?? What are you up to?", 271 self => "You wink at yourself?? What are you up to?",
327 noparams => { 361 noparams => {
328 other => "<self> is bleeding all over the carpet - got a spare tourniquet?", 362 other => "<self> is bleeding all over the carpet - got a spare tourniquet?",
329 self => "You bleed all over your nice new armour.", 363 self => "You bleed all over your nice new armour.",
330 }, 364 },
331 params => { 365 params => {
366 target => "<self> slashes his wrist and bleeds all over you.",
332 target => "<self> slashes his wrist and bleeds all over <other>.", 367 other => "<self> slashes his wrist and bleeds all over <other>.",
333 self => "You slash your wrist and bleed all over <other>", 368 self => "You slash your wrist and bleed all over <other>",
334 }, 369 },
335 self => { 370 self => {
336 other => "<self> performs some satanic ritual while wiping his blood on himself.", 371 other => "<self> performs some satanic ritual while wiping his blood on himself.",
337 self => "Very impressive! You wipe your blood all over yourself.", 372 self => "Very impressive! You wipe your blood all over yourself.",
672 }, 707 },
673}; 708};
674 709
675for my $emotion (keys %$emotes) { 710for my $emotion (keys %$emotes) {
676 cf::register_command $emotion => sub { 711 cf::register_command $emotion => sub {
677 my ($pl, $tname) = @_; 712 my ($ob, $tname) = @_;
713
714 my $pl = $ob->contr;
678 715
679 cf::async { 716 cf::async {
680 my $name = $pl->name; 717 my $name = $ob->name;
718 $Coro::current->{desc} = "emote handler for $name";
681 719
682 if ($tname eq $name) { 720 if ($tname eq $name) {
683 my $emote = $emotes->{$emotion}->{self}; 721 my %emote = %{ $emotes->{$emotion}->{self} || {} };
684 722
685 $emote->{other} = "You look away from <self>." 723 $emote{other} ||= "You look away from <self>.";
686 if !$emote->{other};
687 $emote->{self} = "My god! Is that LEGAL?" 724 $emote{self} ||= "My god! Is that LEGAL?";
688 if !$emote->{self};
689 725
690 $emote->{other} =~ s/<self>/$name/; 726 $emote{other} =~ s/<self>/$name/;
691 727
728 send_msg $_, $cf::CHAT_CHANNEL, $emote{other}, cf::NDI_GREY, "msg_chat"
692 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) { 729 for grep { $ob->on_same_map_as ($_->ob) && $_ != $ob} cf::player::list;
693 next
694 if $other->ob == $pl;
695 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE);
696 }
697 730
698 $pl->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE); 731 $pl->send_msg ($emote{self}, cf::NDI_GREY | cf::NDI_REPLY);
699 } elsif ($tname) { 732 } elsif ($tname) {
700 my $target = cf::player::find $tname 733 my $target = cf::player::find $tname
701 or return $pl->reply (undef, "$tname is not around."); 734 or return send_msg $pl, tell_channel $tname, "$tname is not around.", cf::NDI_DK_ORANGE | cf::NDI_REPLY, "msg_chat";
702 735
703 my $emote = $emotes->{$emotion}->{params}; 736 my %emote = %{ $emotes->{$emotion}->{params} || {} };
704 737
705 $emote->{other} = "<self> is eyeing <other> quizzically." 738 $emote{other} ||= "<self> is eyeing <other> quizzically.";
706 if !$emote->{other};
707 $emote->{self} = "You are still nuts." 739 $emote{self} ||= "You are still nuts.";
708 if !$emote->{self};
709 $emote->{target} = "You get the distinct feeling that <other> is nuts." 740 $emote{target} ||= "You get the distinct feeling that <self> is nuts.";
710 if !$emote->{target};
711 741
712 $emote->{self} =~ s/<other>/$tname/; 742 $emote{self} =~ s/<other>/$tname/;
713 $emote->{target} =~ s/<self>/$name/; 743 $emote{target} =~ s/<self>/$name/;
714 $emote->{other} =~ s/<other>/$tname/; 744 $emote{other} =~ s/<other>/$tname/;
715 $emote->{other} =~ s/<self>/$name/; 745 $emote{other} =~ s/<self>/$name/;
716 746
717 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) { 747 send_msg $_, $cf::CHAT_CHANNEL, $emote{other}, cf::NDI_GREY, "msg_chat"
718 next 748 for grep { $_ != $pl && $_ != $target && $ob->on_same_map_as ($_->ob) } cf::player::list;
719 if $other->ob == $pl or $other == $target;
720 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE);
721 }
722 749
723 $target->ob->message ($emote->{target}, cf::NDI_GREY | cf::NDI_UNIQUE); 750 send_msg $target, tell_channel $name, $emote{target}, cf::NDI_GREY, "msg_shout";
724 $pl->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE); 751 $pl->send_msg (tell_channel $tname, $emote{self}, cf::NDI_GREY | cf::NDI_REPLY);
725 } else { 752 } else {
726 my $emote = $emotes->{$emotion}->{noparams}; 753 my %emote = %{ $emotes->{$emotion}->{noparams} || {} };
727 $emote->{other} =~ s/<self>/$name/;
728 754
729 $emote->{other} = "<self> dances with glee." 755 $emote{other} ||= "<self> dances with glee.";
730 if !$emote->{other};
731 $emote->{self} = "You are a nut." 756 $emote{self} ||= "You are a nut.";
732 if !$emote->{self};
733 757
758 $emote{other} =~ s/<self>/$name/;
759
760 send_msg $_, $cf::CHAT_CHANNEL, $emote{other}, cf::NDI_GREY, "msg_chat"
734 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) { 761 for grep { $ob->on_same_map_as ($_->ob) && $_ != $pl } cf::player::list;
735 next
736 if $other->ob == $pl;
737 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE);
738 }
739 762
740 $pl->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE); 763 $pl->send_msg ($cf::CHAT_CHANNEL, $emote{self}, cf::NDI_GREY | cf::NDI_REPLY);
741 } 764 }
742 }; 765 };
743 }; 766 };
744} 767}
745 768
746cf::register_command me => sub { 769cf::register_command me => sub {
747 my ($pl, $msg) = @_; 770 my ($pl, $msg) = @_;
748 771
749 my $name = $pl->name; 772 my $name = $pl->name;
750 773
751 $_->ob->message ("* $name $msg", cf::NDI_GREY | cf::NDI_UNIQUE) 774 send_msg $_, $cf::SAY_CHANNEL => "* $name $msg", cf::NDI_GREY | cf::NDI_DEF | ($_ == $pl ? cf::NDI_REPLY : 0), "msg_say"
752 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 775 for grep $pl->on_same_map_as ($_->ob), cf::player::list;
753}; 776};
754 777
755cf::register_command say => sub { 778cf::register_command say => sub {
756 my ($pl, $msg) = @_; 779 my ($ob, $msg) = @_;
757 780
758 utf8::decode $msg; 781 utf8::decode $msg;
759 782
760 return if $pl->contr->invoke (cf::EVENT_PLAYER_SAY, $msg); 783 return if $ob->contr->invoke (cf::EVENT_PLAYER_SAY, $msg);
761 784
762 if ($msg) { 785 if ($msg) {
763 my $name = $pl->name; 786 my $name = $ob->name;
764
765 utf8::encode $msg; # ->message not yet utf8-ified
766 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE)
767 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 787 my @plonmap = grep $ob->on_same_map_as ($_->ob), cf::player::list;
768 utf8::decode $msg; 788
789 send_msg $_, $cf::SAY_CHANNEL => "$name says: $msg", cf::NDI_GREY, "msg_say"
790 for grep $_ != $ob->contr, @plonmap;
791 $ob->contr->send_msg ($cf::SAY_CHANNEL => "$name says: $msg", cf::NDI_GREY | cf::NDI_REPLY);
769 792
770 # npcs, magic_ears etc. 793 # npcs, magic_ears etc.
771 # first find all objects and theirt-level inventories 794 # first find all objects and their first-level inventories
772 # within a 5x5 square # that have something resembling 795 # within a 5x5 square that have something resembling
773 # dialogue or support on_say. 796 # dialogue or support on_say.
774 my ($map, $x, $y) = ($pl->map, $pl->x - 2, $pl->y - 2); 797 my ($map, $x, $y) = ($ob->map, $ob->x - 2, $ob->y - 2);
775 798
776 for my $npc ( 799 for my $npc (
777 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $pl->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_, 800 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $ob->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_,
778 map +($_, $_->inv), 801 map +($_, $_->inv),
779 grep $_, 802 grep $_,
780 map $map->at ($x + $_ % 5, $y + (int $_ / 5)), 803 map $map->at ($x + $_ % 5, $y + (int $_ / 5)),
781 0..24 804 0..24
782 ) { 805 ) {
783 # if some listener teleported us somewhere else, stop right here 806 # if some listener teleported us somewhere else, stop right here
784 last unless $map->path == $pl->map->path; 807 last unless $map->path == $ob->map->path;
785 808
786 my $dialog = new NPC_Dialogue ob => $pl, npc => $npc; 809 my $dialog = new NPC_Dialogue pl => $ob->contr, npc => $npc;
787 my ($reply, @kw) = $dialog->tell ($msg); 810 my ($reply, @kw) = $dialog->tell ($msg);
788 811
789 if (defined $reply) { 812 if (defined $reply) {
790 if ($npc->type == cf::MAGIC_EAR) { 813 if ($npc->type == cf::MAGIC_EAR) {
791 if (length $reply) { 814 if (length $reply) {
792 $_->ob->message ($reply, cf::NDI_BROWN | cf::NDI_UNIQUE) 815 send_msg $_, $cf::SAY_CHANNEL => $reply, cf::NDI_BROWN, "msg_say"
793 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 816 for @plonmap;
794 } 817 }
795 $npc->use_trigger; 818 $npc->use_trigger;
796 } else { 819 } else {
797 if (length $reply) { 820 if (length $reply) {
798 $_->ob->message ($npc->name . " says: $reply", cf::NDI_BROWN | cf::NDI_UNIQUE) 821 send_msg $_, $cf::SAY_CHANNEL => $npc->name . " says: $reply", cf::NDI_BROWN, "msg_say"
799 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 822 for @plonmap;
800 } 823 }
801 } 824 }
802 } 825 }
803 826
804 if (@kw) { 827 if (@kw) {
805 $_->ob->message ("[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN | cf::NDI_UNIQUE) 828 $_->send_msg ($cf::SAY_CHANNEL => "[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN)
806 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 829 for @plonmap;
807 } 830 }
808 } 831 }
809 832
810 } else { 833 } else {
811 $pl->message ("What do you want to say?", cf::NDI_UNIQUE); 834 $ob->send_msg ($cf::SAY_CHANNEL => "What do you want to say?", cf::NDI_GREY | cf::NDI_REPLY);
812 } 835 }
813}; 836};
814 837
815cf::register_command chat => sub { 838cf::register_command chat => sub {
816 my ($pl, $msg) = @_; 839 my ($ob, $msg) = @_;
817 840
818 utf8::decode $msg; 841 utf8::decode $msg;
819 842
843 my $pl = $ob->contr;
844
820 return if $pl->contr->invoke (cf::EVENT_PLAYER_CHAT, $msg); 845 return if $pl->invoke (cf::EVENT_PLAYER_CHAT, $msg);
821 846
822 if ($msg) { 847 if ($msg) {
823 my $name = $pl->name; 848 my $name = $ob->name;
824 my $NOW = time; 849 my $NOW = time;
825 850
826 utf8::encode $msg; # ->message not yet utf8-ified
827 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg; 851 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
828 ext::schmorp_irc::do_notice (sprintf "[%s] %s", $name, $msg); 852 send_irc ("[%s] %s", $name, $msg);
829 853
830 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) 854 send_msg $_, $cf::CHAT_CHANNEL => "$name chats: $msg", cf::NDI_BLUE | cf::NDI_DEF | ($_ == $pl ? cf::NDI_REPLY : 0), "msg_chat"
831 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list; 855 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
832 856
833 } else { 857 } else {
834 $pl->message ("Chat what?", cf::NDI_UNIQUE); 858 $pl->send_msg ($cf::CHAT_CHANNEL => "Chat what?", cf::NDI_BLUE | cf::NDI_DEF | cf::NDI_REPLY);
835 } 859 }
836}; 860};
837 861
838cf::register_command shout => sub { 862cf::register_command shout => sub {
839 my ($pl, $msg) = @_; 863 my ($ob, $msg) = @_;
840 864
841 utf8::decode $msg; 865 utf8::decode $msg;
842 866
867 my $pl = $ob->contr;
868
843 return if $pl->contr->invoke (cf::EVENT_PLAYER_SHOUT, $msg); 869 return if $pl->invoke (cf::EVENT_PLAYER_SHOUT, $msg);
844 870
845 if ($msg) { 871 if ($msg) {
846 my $NOW = time; 872 my $NOW = time;
847 my $name = $pl->name; 873 my $name = $ob->name;
848 874
849 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg; 875 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg;
850 ext::schmorp_irc::do_notice (sprintf "\007\0034{%s} %s\n", $name, $msg); 876 send_irc ("\007\0034{%s} %s\n", $name, $msg);
851 877
852 utf8::encode $msg; # ->message not yet utf8-ified 878 send_msg $_, $cf::CHAT_CHANNEL => "$name shouts: $msg", cf::NDI_RED | cf::NDI_DEF | ($_ == $pl ? cf::NDI_REPLY : 0), "msg_shout"
853 $_->ob->message ("$name shouts: $msg", cf::NDI_RED)
854 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list; 879 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list;
855 880
856 } else { 881 } else {
857 $pl->message ("Shout what?", cf::NDI_UNIQUE); 882 $pl->send_msg ($cf::CHAT_CHANNEL => "Shout what?", cf::NDI_RED | cf::NDI_DEF | cf::NDI_REPLY);
858 } 883 }
859}; 884};
860 885
861cf::register_command tell => sub { 886cf::register_command tell => sub {
862 my ($pl, $args) = @_; 887 my ($ob, $args) = @_;
863 my ($target, $msg) = split /\s+/, $args, 2; 888 my ($target, $msg) = split /\s+/, $args, 2;
864 889
865 utf8::decode $msg; 890 utf8::decode $msg;
866 891
892 my $pl = $ob->contr;
893 my $ns = $pl->ns
894 or return;
895 my $name = $ob->name;
896
867 return if $pl->contr->invoke (cf::EVENT_PLAYER_TELL, $target, $msg); 897 return if $pl->invoke (cf::EVENT_PLAYER_TELL, $target, $msg);
868 898
869 my $name = $pl->name; 899 my $pl_channel = tell_channel $target;
870 900
871 if ($target =~ /irc\//) { 901 if ($target =~ /irc\//) {
872 my (undef, $nick) = split /\//, $target, 2; 902 my (undef, $nick) = split /\//, $target, 2;
873 $pl->message ("You tell $target: $args"); 903 $ns->send_msg ($pl_channel => "You tell $target: $args", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
874 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $msg); 904 send_irc ("(%s) %s: %s\n", $name, $nick, $msg);
905
875 } elsif (my $other = cf::player::find_active $target) { 906 } elsif (my $other = cf::player::find_active $target) {
907 my $other_channel = tell_channel $name;
876 908
877 if ($msg) { 909 if ($msg) {
878 if ($target eq $name) { 910 if ($target eq $name) {
879 $pl->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE); 911 $ns->send_msg ($pl_channel => "You are talking to yourself, you freak!", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
880 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) { 912 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
881 $pl->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE); 913 $ns->send_msg ($pl_channel => "$target ignores what you say. Give up on it.", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
882 } else { 914 } else {
883 utf8::encode $msg; # ->message not yet utf8-ified 915 return if $other->invoke (cf::EVENT_PLAYER_TOLD, $pl, $msg);
884 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg; 916 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg;
885 917
886 $pl->message ("You tell $target: $msg"); 918 $ns->send_msg ($pl_channel => "You tell $target: $msg", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
887 $other->ob->message ("$name tells you: $msg"); 919 send_msg $other, $other_channel => "$name tells you: $msg", cf::NDI_DK_ORANGE | cf::NDI_DEF, "msg_tell";
888 $other->ob->{ext_last_tell} = $name;
889 } 920 }
890 } else { 921 } else {
891 $pl->message ("What do you want to tell $target?", cf::NDI_UNIQUE); 922 $ns->send_msg ($pl_channel => "What do you want to tell $target?", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
892 } 923 }
893 924
894 } else { 925 } else {
895 $pl->message ("No such player. Your message: $msg", cf::NDI_UNIQUE); 926 $ns->send_msg ($pl_channel => "No such player. Your message: $msg", cf::NDI_DK_ORANGE | cf::NDI_DEF | cf::NDI_REPLY);
896 }
897};
898
899cf::register_command reply => sub {
900 my ($pl, $args) = @_;
901 my $name = $pl->name;
902
903 utf8::decode $args;
904
905 return if $pl->contr->invoke (cf::EVENT_PLAYER_TELL, $pl->{ext_last_tell}, $args);
906
907 if ($pl->{ext_last_tell} =~ /irc\//) {
908 my (undef, $nick) = split /\//, $pl->{ext_last_tell}, 2;
909 $pl->message ("You tell " . $pl->{ext_last_tell} . ": $args");
910 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $args);
911 } elsif (my $other = cf::player::find_active $pl->{ext_last_tell}) {
912
913 if ($args) {
914 $other->ob->{ext_ignore_tell}{$name} >= time
915 or delete $other->ob->{ext_ignore_tell}{$name};
916
917 if ($other->ob->{ext_ignore_tell}{$name} < time) {
918 utf8::encode $args; # ->message not yet utf8-ified
919 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args;
920
921 $pl->message ("You tell " . $other->ob->name . ": $args");
922 $other->ob->message ("$name tells you: $args");
923 $pl->{ext_last_tell} = $other->ob->name;
924 } else {
925 $pl->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE);
926 }
927 } else {
928 $pl->message ("What do you want to tell ".$other->ob->name."?", cf::NDI_UNIQUE);
929 }
930
931 } else {
932 $pl->message ("Can't reply, player left. Your message: $args".$pl->{ext_last_tell}, cf::NDI_UNIQUE);
933 } 927 }
934}; 928};
935 929
936cf::register_command ignore => sub { 930cf::register_command ignore => sub {
937 my ($pl, $args) = @_; 931 my ($pl, $args) = @_;
940 if ($args eq "list") { 934 if ($args eq "list") {
941 clean_timeouts $pl; 935 clean_timeouts $pl;
942 936
943 if ((my @ignored_tell = sort keys %{$pl->{ext_ignore_tell}}) 937 if ((my @ignored_tell = sort keys %{$pl->{ext_ignore_tell}})
944 + (my @ignored_shout = sort keys %{$pl->{ext_ignore_shout}})) { 938 + (my @ignored_shout = sort keys %{$pl->{ext_ignore_shout}})) {
945 $pl->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE); 939 $pl->message ("Currently ignoring private messages from: ", cf::NDI_REPLY);
946 $pl->message ((join ", ", @ignored_tell), cf::NDI_UNIQUE); 940 $pl->message ((join ", ", @ignored_tell), cf::NDI_REPLY);
947 $pl->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE); 941 $pl->message ("Currently ignoring shouts from: ", cf::NDI_REPLY);
948 $pl->message ((join ", ", @ignored_shout), cf::NDI_UNIQUE); 942 $pl->message ((join ", ", @ignored_shout), cf::NDI_REPLY);
949 $pl->message ("To stop ignoring one, use unignore.", cf::NDI_UNIQUE); 943 $pl->message ("To stop ignoring one, use unignore.", cf::NDI_REPLY);
950 } else { 944 } else {
951 $pl->message ("Not ignoring anyone", cf::NDI_UNIQUE); 945 $pl->message ("Not ignoring anyone", cf::NDI_REPLY);
952 } 946 }
953 947
954 } elsif ($target && $type) { 948 } elsif ($target && $type) {
955 949
956 $timeout ne "" or $timeout = 24; 950 $timeout ne "" or $timeout = 24;
957 my $absolute_timeout = time + $timeout * 3600; 951 my $absolute_timeout = time + $timeout * 3600;
958 952
959 if (cf::player::exists $target) { 953 if (cf::player::exists $target) {
960 if ($type eq "tell") { 954 if ($type eq "tell") {
961 $pl->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_UNIQUE); 955 $pl->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_REPLY);
962 $pl->{ext_ignore_tell}{$target} = $absolute_timeout; 956 $pl->{ext_ignore_tell}{$target} = $absolute_timeout;
963 } elsif ($type eq "shout") { 957 } elsif ($type eq "shout") {
964 $pl->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_UNIQUE); 958 $pl->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_REPLY);
965 $pl->{ext_ignore_shout}{$target} = $absolute_timeout; 959 $pl->{ext_ignore_shout}{$target} = $absolute_timeout;
966 } elsif ($type eq "all") { 960 } elsif ($type eq "all") {
967 $pl->message ("Now ignoring everything from $target for $timeout hours.", cf::NDI_UNIQUE); 961 $pl->message ("Now ignoring everything from $target for $timeout hours.", cf::NDI_REPLY);
968 $pl->{ext_ignore_tell}{$target} = $absolute_timeout; 962 $pl->{ext_ignore_tell}{$target} = $absolute_timeout;
969 $pl->{ext_ignore_shout}{$target} = $absolute_timeout; 963 $pl->{ext_ignore_shout}{$target} = $absolute_timeout;
970 } else { 964 } else {
971 $pl->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE); 965 $pl->message ("You need to specify tell, shout or all.", cf::NDI_REPLY);
972 } 966 }
973 } else { 967 } else {
974 $pl->message ("No such player: $target", cf::NDI_UNIQUE); 968 $pl->message ("No such player: $target", cf::NDI_REPLY);
975 } 969 }
976 970
977 } else { 971 } else {
978 $pl->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n" 972 $pl->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n"
979 . "will ignore a player for <timeout> hours.\n" 973 . "will ignore a player for <timeout> hours.\n"
980 . "Usage: ignore list\n" 974 . "Usage: ignore list\n"
981 . "will show you a list of players currently ignored.", cf::NDI_UNIQUE); 975 . "will show you a list of players currently ignored.", cf::NDI_REPLY);
982 } 976 }
983}; 977};
984 978
985cf::register_command unignore => sub { 979cf::register_command unignore => sub {
986 my ($pl, $args) = @_; 980 my ($pl, $args) = @_;
987 my ($target, $type) = split /\s+/, $args; 981 my ($target, $type) = split /\s+/, $args;
988 982
989 if ($args eq "") { 983 if ($args eq "") {
990 if ($pl->{ext_ignore_tell}) { 984 if ($pl->{ext_ignore_tell}) {
991 $pl->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE); 985 $pl->message ("Currently ignoring private messages from: ", cf::NDI_REPLY);
992 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_tell} }), cf::NDI_UNIQUE); 986 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_tell} }), cf::NDI_REPLY);
993 $pl->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE); 987 $pl->message ("Currently ignoring shouts from: ", cf::NDI_REPLY);
994 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_shout} }), cf::NDI_UNIQUE); 988 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_shout} }), cf::NDI_REPLY);
995 } else { 989 } else {
996 $pl->message ("Not ignoring anyone", cf::NDI_UNIQUE); 990 $pl->message ("Not ignoring anyone", cf::NDI_REPLY);
997 } 991 }
998 } else { 992 } else {
999 if (cf::player::exists $target) { 993 if (cf::player::exists $target) {
1000 if ($type eq "tell") { 994 if ($type eq "tell") {
1001 $pl->message ("Not ignoring private messages from $target anymore.", cf::NDI_UNIQUE); 995 $pl->message ("Not ignoring private messages from $target anymore.", cf::NDI_REPLY);
1002 delete $pl->{ext_ignore_tell} {$target}; 996 delete $pl->{ext_ignore_tell} {$target};
1003 } elsif ($type eq "shout") { 997 } elsif ($type eq "shout") {
1004 $pl->message ("Not ignoring shouts from $target anymore.", cf::NDI_UNIQUE); 998 $pl->message ("Not ignoring shouts from $target anymore.", cf::NDI_REPLY);
1005 delete $pl->{ext_ignore_shout}{$target}; 999 delete $pl->{ext_ignore_shout}{$target};
1006 } elsif ($type eq "all") { 1000 } elsif ($type eq "all") {
1007 $pl->message ("Not ignoring anything from $target anymore.", cf::NDI_UNIQUE); 1001 $pl->message ("Not ignoring anything from $target anymore.", cf::NDI_REPLY);
1008 delete $pl->{ext_ignore_tell} {$target}; 1002 delete $pl->{ext_ignore_tell} {$target};
1009 delete $pl->{ext_ignore_shout}{$target}; 1003 delete $pl->{ext_ignore_shout}{$target};
1010 } else { 1004 } else {
1011 $pl->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE); 1005 $pl->message ("You need to specify tell, shout or all.", cf::NDI_REPLY);
1012 } 1006 }
1013 } else { 1007 } else {
1014 $pl->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 1008 $pl->message ("No such player or ambiguous name: $target", cf::NDI_REPLY);
1015 } 1009 }
1016 } 1010 }
1017}; 1011};
1018 1012
1019cf::register_command seen => sub {
1020 my ($pl, $args) = @_;
1021
1022 if (my ($login) = $args =~ /(\S+)/) {
1023 if ($login eq $pl->name) {
1024 $pl->message ("Very funny, $login. Ha. Ha.", cf::NDI_UNIQUE);
1025 } elsif (cf::player::find_active $login) {
1026 $pl->message ("$login is right here on this server!", cf::NDI_UNIQUE);
1027 } elsif (cf::player::exists $login
1028 and stat sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($login) x 2) {
1029 my $time = (stat _)[9];
1030
1031 $pl->message ("$login was last seen here "
1032 . (POSIX::strftime "%Y-%m-%d %H:%M:%S +0000", gmtime $time)
1033 . " which was " . (int +(time - $time) / 3600) . " hours ago.", cf::NDI_UNIQUE);
1034 } else {
1035 $pl->message ("No player named $login is known to me.", cf::NDI_UNIQUE);
1036 }
1037 } else {
1038 $pl->message ("Usage: seen <player>", cf::NDI_UNIQUE);
1039 }
1040};
1041

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines