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.8 by pippijn, Wed Feb 28 19:41:29 2007 UTC vs.
Revision 1.40 by root, Thu May 1 06:33:19 2008 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines