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.20 by elmex, Thu Jun 28 08:34:42 2007 UTC vs.
Revision 1.42 by root, Fri Aug 29 02:07:09 2008 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines