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.5 by pippijn, Wed Feb 28 19:23:21 2007 UTC vs.
Revision 1.22 by root, Sun Jul 22 14:17:57 2007 UTC

1#! perl 1#! perl # depends=irc
2#CONVERSION: PARTIAL 2#CONVERSION: PARTIAL
3 3
4# implement a replacement for the built-in say/chat/shout/tell/reply commands 4# implement a replacement for the built-in say/chat/shout/tell/reply commands
5# adds ignore/unignore functionality 5# adds ignore/unignore functionality
6 6
7use NPC_Dialogue; 7use NPC_Dialogue;
8use POSIX (); # for strftime only 8use POSIX (); # for strftime only
9
10our $SAY_CHANNEL = {
11 id => "say",
12 title => "Map",
13 reply => "say ",
14 tooltip => "Things said to and replied from npcs near you and other players on the same map only.",
15};
16
17our $CHAT_CHANNEL = {
18 id => "chat",
19 title => "Chat",
20 reply => "chat ",
21 tooltip => "Player chat and shouts, global to the server.",
22};
9 23
10sub clean_timeouts($) { 24sub clean_timeouts($) {
11 my ($player) = @_; 25 my ($player) = @_;
12 my $NOW = time; 26 my $NOW = time;
13 27
22 } 36 }
23 } 37 }
24 } 38 }
25} 39}
26 40
41# send_irc ($format, @args, $msg)
42# make sure the last argument is the message!
43sub send_irc {
44 my ($format, @args) = @_;
45 my $msg = pop @args;
46 for (split /\n/, $msg) {
47 ext::irc::do_notice (sprintf $format, @args, $_)
48 }
49}
50
27cf::player->attach ( 51cf::player->attach (
28 prio => -1000, 52 prio => -1000,
29 on_login => sub { 53 on_login => sub {
30 my ($pl) = @_; 54 my ($pl) = @_;
31 55
32 clean_timeouts $pl->ob; 56 clean_timeouts $pl->ob;
57 $pl->ns->send_msg ($SAY_CHANNEL);
58 $pl->ns->send_msg ($CHAT_CHANNEL);
33 }, 59 },
34
35 1
36); 60);
37 61
38cf::register_command listen => sub { 62cf::register_command listen => sub {
39 my ($who, $msg) = @_; 63 my ($pl, $msg) = @_;
40 my $player = cf::player::find_active $who->name; 64 my $player = cf::player::find_active $pl->name;
41 65
42 if ($msg ne "") { 66 if ($msg ne "") {
67 $msg = 10 if $msg > 10;
68
43 my $prev_listen = $player->listening; 69 my $prev_listen = $player->listening;
44 $player->listening ($msg); 70 $player->listening ($msg);
45 if ($prev_listen == $player->listening) { 71 if ($prev_listen == $player->listening) {
46 $who->message ("Your verbose level stayed $prev_listen.", cf::NDI_UNIQUE); 72 $pl->message ("Your verbose level stays at $prev_listen.", cf::NDI_UNIQUE);
47 } else { 73 } else {
48 $who->message ("Your verbose level is now " . $player->listening . ". (previously: $prev_listen)", cf::NDI_UNIQUE); 74 $pl->message ("Your verbose level is now " . $player->listening . ". (previously: $prev_listen)", cf::NDI_UNIQUE);
49 } 75 }
50 } else { 76 } else {
51 $who->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE); 77 $pl->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE);
52 } 78 }
79};
53 80
81cf::register_command cointoss => sub {
82 my ($pl, $msg) = @_;
83
84 my $name = $pl->name;
85 my $coin = int rand 2 ? "Heads" : "Tails";
86
87 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) {
88 next
89 if $other->ob == $pl;
90 $other->ob->message ("$name flips a coin.... $coin!", cf::NDI_GREY | cf::NDI_UNIQUE);
91 }
54 1 92
93 $pl->message ("You flip a coin.... $coin!", cf::NDI_GREY | cf::NDI_UNIQUE);
94};
95
96cf::register_command orcknuckle => sub {
97 my ($pl, $msg) = @_;
98 my @orcknuckle = ("none", "beholder", "ghost", "knight", "princess", "dragon", "orc");
99
100 my $name = $pl->name;
101
102 my ($i, $j, $k, $l) = ((int rand 5) + 1, (int rand 5) + 1, (int rand 5) + 1, (int rand 6) + 1);
103 my $result = "$orcknuckle[$i], $orcknuckle[$j], $orcknuckle[$k], $orcknuckle[$l]";
104
105 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) {
106 next
107 if $other->ob == $pl;
108 $other->ob->message ("$name rolls $result!", cf::NDI_GREY | cf::NDI_UNIQUE);
109 }
110
111 $pl->message ("You roll $result!", cf::NDI_GREY | cf::NDI_UNIQUE);
55}; 112};
56 113
57my $emotes = { 114my $emotes = {
58 growl => { 115 growl => {
59 noparams => { 116 noparams => {
189 noparams => { 246 noparams => {
190 other => "<self> winks suggestively.", 247 other => "<self> winks suggestively.",
191 self => "Have you got something in your eye?", 248 self => "Have you got something in your eye?",
192 }, 249 },
193 params => { 250 params => {
251 target => "<self> winks at you.",
194 target => "<self> winks at <other>.", 252 other => "<self> winks at <other>.",
195 self => "You wink suggestively at <other>.", 253 self => "You wink suggestively at <other>.",
196 }, 254 },
197 self => { 255 self => {
198 other => "<self> winks at himself - something strange is going on...", 256 other => "<self> winks at himself - something strange is going on...",
199 self => "You wink at yourself?? What are you up to?", 257 self => "You wink at yourself?? What are you up to?",
289 noparams => { 347 noparams => {
290 other => "<self> is bleeding all over the carpet - got a spare tourniquet?", 348 other => "<self> is bleeding all over the carpet - got a spare tourniquet?",
291 self => "You bleed all over your nice new armour.", 349 self => "You bleed all over your nice new armour.",
292 }, 350 },
293 params => { 351 params => {
352 target => "<self> slashes his wrist and bleeds all over you.",
294 target => "<self> slashes his wrist and bleeds all over <other>.", 353 other => "<self> slashes his wrist and bleeds all over <other>.",
295 self => "You slash your wrist and bleed all over <other>", 354 self => "You slash your wrist and bleed all over <other>",
296 }, 355 },
297 self => { 356 self => {
298 other => "<self> performs some satanic ritual while wiping his blood on himself.", 357 other => "<self> performs some satanic ritual while wiping his blood on himself.",
299 self => "Very impressive! You wipe your blood all over yourself.", 358 self => "Very impressive! You wipe your blood all over yourself.",
631 }, 690 },
632 self => { 691 self => {
633 }, 692 },
634 }, 693 },
635}; 694};
695
636for my $emotion (keys %$emotes) { 696for my $emotion (keys %$emotes) {
637 cf::register_command $emotion => sub { 697 cf::register_command $emotion => sub {
638 my ($ob, $tname) = @_; 698 my ($pl, $tname) = @_;
639 699
640 cf::async { 700 cf::async {
641 my $name = $ob->name; 701 my $name = $pl->name;
642 702
643 if ($tname eq $name) { 703 if ($tname eq $name) {
644 my $emote = $emotes->{$emotion}->{self}; 704 my $emote = $emotes->{$emotion}->{self};
705
706 $emote->{other} = "You look away from <self>."
707 if !$emote->{other};
708 $emote->{self} = "My god! Is that LEGAL?"
709 if !$emote->{self};
710
645 $emote->{other} =~ s/<self>/$name/; 711 $emote->{other} =~ s/<self>/$name/;
646 712
647 for my $other ( grep { $ob->on_same_map_as ($_->ob) } cf::player::list ) { 713 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) {
648 next 714 next
649 if $other->ob == $ob; 715 if $other->ob == $pl;
650 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE); 716 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE);
651 } 717 }
652 718
653 $ob->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE); 719 $pl->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE);
654 } elsif ($tname) { 720 } elsif ($tname) {
655 my $target = cf::player::find $tname 721 my $target = cf::player::find $tname
656 or return $ob->reply (undef, "$tname is not around."); 722 or return $pl->reply (undef, "$tname is not around.");
657 723
658 my $emote = $emotes->{$emotion}->{params}; 724 my $emote = $emotes->{$emotion}->{params};
725
726 $emote->{other} = "<self> is eyeing <other> quizzically."
727 if !$emote->{other};
728 $emote->{self} = "You are still nuts."
729 if !$emote->{self};
730 $emote->{target} = "You get the distinct feeling that <other> is nuts."
731 if !$emote->{target};
732
659 $emote->{self} =~ s/<other>/$tname/; 733 $emote->{self} =~ s/<other>/$tname/;
660 $emote->{target} =~ s/<self>/$name/; 734 $emote->{target} =~ s/<self>/$name/;
661 $emote->{other} =~ s/<other>/$tname/; 735 $emote->{other} =~ s/<other>/$tname/;
662 $emote->{other} =~ s/<self>/$name/; 736 $emote->{other} =~ s/<self>/$name/;
663 737
664 for my $other ( grep { $ob->on_same_map_as ($_->ob) } cf::player::list ) { 738 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) {
665 next 739 next
666 if $other->ob == $ob or $other == $target; 740 if $other->ob == $pl or $other == $target;
667 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE); 741 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE);
668 } 742 }
669 743
670 $target->ob->message ($emote->{target}, cf::NDI_GREY | cf::NDI_UNIQUE); 744 $target->ob->message ($emote->{target}, cf::NDI_GREY | cf::NDI_UNIQUE);
671 $ob->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE); 745 $pl->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE);
672 } else { 746 } else {
673 my $emote = $emotes->{$emotion}->{noparams}; 747 my $emote = $emotes->{$emotion}->{noparams};
674 $emote->{other} =~ s/<self>/$name/; 748 $emote->{other} =~ s/<self>/$name/;
749
750 $emote->{other} = "<self> dances with glee."
751 if !$emote->{other};
752 $emote->{self} = "You are a nut."
753 if !$emote->{self};
675 754
676 for my $other ( grep { $ob->on_same_map_as ($_->ob) } cf::player::list ) { 755 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) {
677 next 756 next
678 if $other->ob == $ob; 757 if $other->ob == $pl;
679 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE); 758 $other->ob->message ($emote->{other}, cf::NDI_GREY | cf::NDI_UNIQUE);
680 } 759 }
681 760
682 $ob->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE); 761 $pl->message ($emote->{self}, cf::NDI_GREY | cf::NDI_UNIQUE);
683 } 762 }
684 }; 763 };
685
686 1
687 }; 764 };
688} 765}
689 766
767cf::register_command me => sub {
768 my ($pl, $msg) = @_;
769
770 my $name = $pl->name;
771
772 $_->ns->send_msg ($SAY_CHANNEL => "* $name $msg", cf::NDI_GREY, $_ == $pl ? (reply => 1) : ())
773 for grep $pl->on_same_map_as ($_->ob), cf::player::list;
774};
775
690cf::register_command say => sub { 776cf::register_command say => sub {
691 my ($who, $msg) = @_; 777 my ($pl, $msg) = @_;
692 778
693 utf8::decode $msg; 779 utf8::decode $msg;
694 780
695 return if $who->contr->invoke (cf::EVENT_PLAYER_SAY, $msg); 781 return if $pl->contr->invoke (cf::EVENT_PLAYER_SAY, $msg);
696 782
697 if ($msg) { 783 if ($msg) {
698 my $name = $who->name; 784 my $name = $pl->name;
699
700 utf8::encode $msg; # ->message not yet utf8-ified
701 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE)
702 for grep $who->on_same_map_as ($_->ob), cf::player::list; 785 my @plonmap = grep $pl->on_same_map_as ($_->ob), cf::player::list;
703 utf8::decode $msg; 786
787 $_->ns->send_msg ($SAY_CHANNEL => "$name says: $msg", cf::NDI_GREY, $_ == $pl ? (reply => 1) : ())
788 for @plonmap;
704 789
705 # npcs, magic_ears etc. 790 # npcs, magic_ears etc.
706 # first find all objects and theirt-level inventories 791 # first find all objects and their first-level inventories
707 # within a 5x5 square # that have something resembling 792 # within a 5x5 square that have something resembling
708 # dialogue or support on_say. 793 # dialogue or support on_say.
709 my ($map, $x, $y) = ($who->map, $who->x - 2, $who->y - 2); 794 my ($map, $x, $y) = ($pl->map, $pl->x - 2, $pl->y - 2);
710 795
711 for my $npc ( 796 for my $npc (
712 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $who->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_, 797 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $pl->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_,
713 map +($_, $_->inv), 798 map +($_, $_->inv),
714 grep $_, 799 grep $_,
715 map $map->at ($x + $_ % 5, $y + (int $_ / 5)), 800 map $map->at ($x + $_ % 5, $y + (int $_ / 5)),
716 0..24 801 0..24
717 ) { 802 ) {
718 # if some listener teleported us somewhere else, stop right here 803 # if some listener teleported us somewhere else, stop right here
719 last unless $map->path == $who->map->path; 804 last unless $map->path == $pl->map->path;
720 805
721 my $dialog = new NPC_Dialogue ob => $who, npc => $npc; 806 my $dialog = new NPC_Dialogue pl => $pl->contr, npc => $npc;
722 my ($reply, @kw) = $dialog->tell ($msg); 807 my ($reply, @kw) = $dialog->tell ($msg);
723 808
724 if (defined $reply) { 809 if (defined $reply) {
725 if ($npc->type == cf::MAGIC_EAR) { 810 if ($npc->type == cf::MAGIC_EAR) {
726 if (length $reply) { 811 if (length $reply) {
727 $_->ob->message ($reply, cf::NDI_BROWN | cf::NDI_UNIQUE) 812 $_->contr->send_msg ($SAY_CHANNEL => $reply, cf::NDI_BROWN)
728 for grep $who->on_same_map_as ($_->ob), cf::player::list; 813 for @plonmap;
729 } 814 }
730 $npc->use_trigger; 815 $npc->use_trigger;
731 } else { 816 } else {
732 if (length $reply) { 817 if (length $reply) {
733 $_->ob->message ($npc->name . " says: $reply", cf::NDI_BROWN | cf::NDI_UNIQUE) 818 $_->contr->send_msg ($SAY_CHANNEL => $npc->name . " says: $reply", cf::NDI_BROWN)
734 for grep $who->on_same_map_as ($_->ob), cf::player::list; 819 for @plonmap;
735 } 820 }
736 } 821 }
737 } 822 }
738 823
739 if (@kw) { 824 if (@kw) {
740 $_->ob->message ("[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN | cf::NDI_UNIQUE) 825 $_->contr->send_msg ($SAY_CHANNEL => "[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN)
741 for grep $who->on_same_map_as ($_->ob), cf::player::list; 826 for @plonmap;
742 } 827 }
743 } 828 }
744 829
745 } else { 830 } else {
746 $who->message ("What do you want to say?", cf::NDI_UNIQUE); 831 $pl->contr->send_msg ($SAY_CHANNEL => "What do you want to say?", 0, reply => 1);
747 } 832 }
748
749 1
750}; 833};
751 834
752cf::register_command chat => sub { 835cf::register_command chat => sub {
753 my ($who, $msg) = @_; 836 my ($pl, $msg) = @_;
754 837
755 utf8::decode $msg; 838 utf8::decode $msg;
756 839
757 return if $who->contr->invoke (cf::EVENT_PLAYER_CHAT, $msg); 840 return if $pl->contr->invoke (cf::EVENT_PLAYER_CHAT, $msg);
758 841
759 if ($msg) { 842 if ($msg) {
760 my $name = $who->name; 843 my $name = $pl->name;
761 my $NOW = time; 844 my $NOW = time;
762 845
763 utf8::encode $msg; # ->message not yet utf8-ified
764 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg; 846 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
765 ext::schmorp_irc::do_notice (sprintf "[%s] %s", $name, $msg); 847 send_irc ("[%s] %s", $name, $msg);
766 848
767 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) 849 $_->ns->send_msg ($CHAT_CHANNEL => "$name chats: $msg", cf::NDI_BLUE, $_ == $pl ? (reply => 1) : ())
768 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list; 850 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
769 851
770 } else { 852 } else {
771 $who->message ("Chat what?", cf::NDI_UNIQUE); 853 $pl->ns->send_msg ($CHAT_CHANNEL => "Chat what?");
772 } 854 }
773
774 1
775}; 855};
776 856
777cf::register_command shout => sub { 857cf::register_command shout => sub {
778 my ($who, $msg) = @_; 858 my ($pl, $msg) = @_;
779 859
780 utf8::decode $msg; 860 utf8::decode $msg;
781 861
782 return if $who->contr->invoke (cf::EVENT_PLAYER_SHOUT, $msg); 862 return if $pl->contr->invoke (cf::EVENT_PLAYER_SHOUT, $msg);
783 863
784 if ($msg) { 864 if ($msg) {
785 my $NOW = time; 865 my $NOW = time;
786 my $name = $who->name; 866 my $name = $pl->name;
787 867
788 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg; 868 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg;
789 ext::schmorp_irc::do_notice (sprintf "\007\0034{%s} %s\n", $name, $msg); 869 send_irc ("\007\0034{%s} %s\n", $name, $msg);
790 870
791 utf8::encode $msg; # ->message not yet utf8-ified 871 $_->ns->send_msg ($CHAT_CHANNEL => "$name shouts: $msg", cf::NDI_BLUE, $_ == $pl ? (reply => 1) : ())
792 $_->ob->message ("$name shouts: $msg", cf::NDI_RED)
793 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;
794 873
795 } else { 874 } else {
796 $who->message ("Shout what?", cf::NDI_UNIQUE); 875 $pl->ns->send_msg ($CHAT_CHANNEL => "Shout what?");
797 } 876 }
798
799 1
800}; 877};
801 878
802cf::register_command tell => sub { 879cf::register_command tell => sub {
803 my ($who, $args) = @_; 880 my ($ob, $args) = @_;
804 my ($target, $msg) = split /\s+/, $args, 2; 881 my ($target, $msg) = split /\s+/, $args, 2;
805 882
806 utf8::decode $msg; 883 utf8::decode $msg;
807 884
808 return if $who->contr->invoke (cf::EVENT_PLAYER_TELL, $target, $msg); 885 my $pl = $ob->contr;
809 886 my $ns = $pl->ns
887 or return;
810 my $name = $who->name; 888 my $name = $ob->name;
889
890 return if $pl->invoke (cf::EVENT_PLAYER_TELL, $target, $msg);
891
892 my $pl_channel = {
893 id => "tell-$target",
894 title => "$target",
895 reply => "tell $target ",
896 tooltip => "Private messages from/to $target",
897 };
811 898
812 if ($target =~ /irc\//) { 899 if ($target =~ /irc\//) {
813 my (undef, $nick) = split /\//, $target, 2; 900 my (undef, $nick) = split /\//, $target, 2;
814 $who->message ("You tell $target: $args"); 901 $ns->send_msg ($pl_channel => "You tell $target: $args", reply => 1);
815 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $msg); 902 send_irc ("(%s) %s: %s\n", $name, $nick, $msg);
816 } elsif (my $other = cf::player::find_active $target) { 903 } elsif (my $other = cf::player::find_active $target) {
904 my $other_channel = {
905 id => "tell-$name",
906 title => "$name",
907 reply => "tell $name ",
908 tooltip => "Private messages from/to $name",
909 };
817 910
818 if ($msg) { 911 if ($msg) {
819 if ($target eq $name) { 912 if ($target eq $name) {
820 $who->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE); 913 $ns->send_msg ($pl_channel => "You are talking to yourself, you freak!", reply => 1);
821 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) { 914 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
822 $who->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE); 915 $ns->send_msg ($pl_channel => "$target ignores what you say. Give up on it.", reply => 1);
823 } else { 916 } else {
824 utf8::encode $msg; # ->message not yet utf8-ified 917 return if $other->invoke (cf::EVENT_PLAYER_TOLD, $pl->contr, $msg);
825 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg; 918 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg;
826 919
827 $who->message ("You tell $target: $msg"); 920 $ns->send_msg ($pl_channel => "You tell $target: $msg", reply => 1);
828 $other->ob->message ("$name tells you: $msg"); 921 $other->ns->send_msg ($other_channel => "$name tells you: $msg");
829 $other->ob->{ext_last_tell} = $name;
830 } 922 }
831 } else { 923 } else {
832 $who->message ("What do you want to tell $target?", cf::NDI_UNIQUE); 924 $ns->send_msg ($pl_channel => "What do you want to tell $target?");
833 } 925 }
834 926
835 } else { 927 } else {
836 $who->message ("No such player. Your message: $msg", cf::NDI_UNIQUE); 928 $ns->send_msg ($pl_channel => "No such player. Your message: $msg");
837 } 929 }
838
839 1
840}; 930};
841 931
842cf::register_command reply => sub { 932cf::register_command ignore => sub {
843 my ($who, $args) = @_; 933 my ($pl, $args) = @_;
844 my $name = $who->name; 934 my ($target, $type, $timeout) = split /\s+/, $args;
845 935
846 utf8::decode $args; 936 if ($args eq "list") {
937 clean_timeouts $pl;
847 938
848 return if $who->contr->invoke (cf::EVENT_PLAYER_TELL, $who->{ext_last_tell}, $args); 939 if ((my @ignored_tell = sort keys %{$pl->{ext_ignore_tell}})
940 + (my @ignored_shout = sort keys %{$pl->{ext_ignore_shout}})) {
941 $pl->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE);
942 $pl->message ((join ", ", @ignored_tell), cf::NDI_UNIQUE);
943 $pl->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE);
944 $pl->message ((join ", ", @ignored_shout), cf::NDI_UNIQUE);
945 $pl->message ("To stop ignoring one, use unignore.", cf::NDI_UNIQUE);
946 } else {
947 $pl->message ("Not ignoring anyone", cf::NDI_UNIQUE);
948 }
849 949
850 if ($who->{ext_last_tell} =~ /irc\//) { 950 } elsif ($target && $type) {
851 my (undef, $nick) = split /\//, $who->{ext_last_tell}, 2;
852 $who->message ("You tell " . $who->{ext_last_tell} . ": $args");
853 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $args);
854 } elsif (my $other = cf::player::find_active $who->{ext_last_tell}) {
855 951
856 if ($args) { 952 $timeout ne "" or $timeout = 24;
857 $other->ob->{ext_ignore_tell}{$name} >= time 953 my $absolute_timeout = time + $timeout * 3600;
858 or delete $other->ob->{ext_ignore_tell}{$name};
859 954
860 if ($other->ob->{ext_ignore_tell}{$name} < time) { 955 if (cf::player::exists $target) {
861 utf8::encode $args; # ->message not yet utf8-ified 956 if ($type eq "tell") {
862 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args; 957 $pl->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_UNIQUE);
863 958 $pl->{ext_ignore_tell}{$target} = $absolute_timeout;
864 $who->message ("You tell " . $other->ob->name . ": $args"); 959 } elsif ($type eq "shout") {
865 $other->ob->message ("$name tells you: $args"); 960 $pl->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_UNIQUE);
866 $who->{ext_last_tell} = $other->ob->name; 961 $pl->{ext_ignore_shout}{$target} = $absolute_timeout;
962 } elsif ($type eq "all") {
963 $pl->message ("Now ignoring everything from $target for $timeout hours.", cf::NDI_UNIQUE);
964 $pl->{ext_ignore_tell}{$target} = $absolute_timeout;
965 $pl->{ext_ignore_shout}{$target} = $absolute_timeout;
867 } else { 966 } else {
868 $who->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE); 967 $pl->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE);
869 } 968 }
870 } else { 969 } else {
871 $who->message ("What do you want to tell ".$other->ob->name."?", cf::NDI_UNIQUE); 970 $pl->message ("No such player: $target", cf::NDI_UNIQUE);
872 } 971 }
873 972
874 } else { 973 } else {
875 $who->message ("Can't reply, player left. Your message: $args".$who->{ext_last_tell}, cf::NDI_UNIQUE);
876 }
877
878 1
879};
880
881cf::register_command ignore => sub {
882 my ($who, $args) = @_;
883 my ($target, $type, $timeout) = split /\s+/, $args;
884
885 if ($args eq "list") {
886 clean_timeouts $who;
887
888 if ((my @ignored_tell = sort keys %{$who->{ext_ignore_tell}})
889 + (my @ignored_shout = sort keys %{$who->{ext_ignore_shout}})) {
890 $who->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE);
891 $who->message ((join ", ", @ignored_tell), cf::NDI_UNIQUE);
892 $who->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE);
893 $who->message ((join ", ", @ignored_shout), cf::NDI_UNIQUE);
894 $who->message ("To stop ignoring one, use unignore.", cf::NDI_UNIQUE);
895 } else {
896 $who->message ("Not ignoring anyone", cf::NDI_UNIQUE);
897 }
898
899 } elsif ($target && $type) {
900
901 $timeout ne "" or $timeout = 24;
902 my $absolute_timeout = time + $timeout * 3600;
903
904 if (cf::player::exists $target) {
905 if ($type eq "tell") {
906 $who->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_UNIQUE);
907 $who->{ext_ignore_tell}{$target} = $absolute_timeout;
908 } elsif ($type eq "shout") {
909 $who->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_UNIQUE);
910 $who->{ext_ignore_shout}{$target} = $absolute_timeout;
911 } elsif ($type eq "all") {
912 $who->message ("Now ignoring everything from $target for $timeout hours.", cf::NDI_UNIQUE);
913 $who->{ext_ignore_tell}{$target} = $absolute_timeout;
914 $who->{ext_ignore_shout}{$target} = $absolute_timeout;
915 } else {
916 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE);
917 }
918 } else {
919 $who->message ("No such player: $target", cf::NDI_UNIQUE);
920 }
921
922 } else {
923 $who->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n" 974 $pl->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n"
924 . "will ignore a player for <timeout> hours.\n" 975 . "will ignore a player for <timeout> hours.\n"
925 . "Usage: ignore list\n" 976 . "Usage: ignore list\n"
926 . "will show you a list of players currently ignored.", cf::NDI_UNIQUE); 977 . "will show you a list of players currently ignored.", cf::NDI_UNIQUE);
927 } 978 }
928
929 1
930}; 979};
931 980
932cf::register_command unignore => sub { 981cf::register_command unignore => sub {
933 my ($who, $args) = @_; 982 my ($pl, $args) = @_;
934 my ($target, $type) = split /\s+/, $args; 983 my ($target, $type) = split /\s+/, $args;
935 984
936 if ($args eq "") { 985 if ($args eq "") {
937 if ($who->{ext_ignore_tell}) { 986 if ($pl->{ext_ignore_tell}) {
938 $who->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE); 987 $pl->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE);
939 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_tell} }), cf::NDI_UNIQUE); 988 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_tell} }), cf::NDI_UNIQUE);
940 $who->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE); 989 $pl->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE);
941 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_shout} }), cf::NDI_UNIQUE); 990 $pl->message ((join ", ", sort keys %{ $pl->{ext_ignore_shout} }), cf::NDI_UNIQUE);
942 } else { 991 } else {
943 $who->message ("Not ignoring anyone", cf::NDI_UNIQUE); 992 $pl->message ("Not ignoring anyone", cf::NDI_UNIQUE);
944 } 993 }
945 } else { 994 } else {
946 if (cf::player::exists $target) { 995 if (cf::player::exists $target) {
947 if ($type eq "tell") { 996 if ($type eq "tell") {
948 $who->message ("Not ignoring private messages from $target anymore.", cf::NDI_UNIQUE); 997 $pl->message ("Not ignoring private messages from $target anymore.", cf::NDI_UNIQUE);
949 delete $who->{ext_ignore_tell} {$target}; 998 delete $pl->{ext_ignore_tell} {$target};
950 } elsif ($type eq "shout") { 999 } elsif ($type eq "shout") {
951 $who->message ("Not ignoring shouts from $target anymore.", cf::NDI_UNIQUE); 1000 $pl->message ("Not ignoring shouts from $target anymore.", cf::NDI_UNIQUE);
952 delete $who->{ext_ignore_shout}{$target}; 1001 delete $pl->{ext_ignore_shout}{$target};
953 } elsif ($type eq "all") { 1002 } elsif ($type eq "all") {
954 $who->message ("Not ignoring anything from $target anymore.", cf::NDI_UNIQUE); 1003 $pl->message ("Not ignoring anything from $target anymore.", cf::NDI_UNIQUE);
955 delete $who->{ext_ignore_tell} {$target}; 1004 delete $pl->{ext_ignore_tell} {$target};
956 delete $who->{ext_ignore_shout}{$target}; 1005 delete $pl->{ext_ignore_shout}{$target};
957 } else { 1006 } else {
958 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE); 1007 $pl->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE);
959 } 1008 }
960 } else { 1009 } else {
961 $who->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 1010 $pl->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE);
962 } 1011 }
963 } 1012 }
964
965 1
966}; 1013};
967 1014
968cf::register_command seen => sub {
969 my ($who, $args) = @_;
970
971 if (my ($login) = $args =~ /(\S+)/) {
972 if ($login eq $who->name) {
973 $who->message ("Very funny, $login. Ha. Ha.", cf::NDI_UNIQUE);
974 } elsif (cf::player::find_active $login) {
975 $who->message ("$login is right here on this server!", cf::NDI_UNIQUE);
976 } elsif (cf::player::exists $login
977 and stat sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($login) x 2) {
978 my $time = (stat _)[9];
979
980 $who->message ("$login was last seen here "
981 . (POSIX::strftime "%Y-%m-%d %H:%M:%S +0000", gmtime $time)
982 . " which was " . (int +(time - $time) / 3600) . " hours ago.", cf::NDI_UNIQUE);
983 } else {
984 $who->message ("No player named $login is known to me.", cf::NDI_UNIQUE);
985 }
986 } else {
987 $who->message ("Usage: seen <player>", cf::NDI_UNIQUE);
988 }
989
990 1
991};
992

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines