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