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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines