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.10 by pippijn, Thu Mar 1 13:14:10 2007 UTC vs.
Revision 1.23 by root, Sun Jul 22 17:10:05 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); 60);
35 61
36cf::register_command listen => sub { 62cf::register_command listen => sub {
37 my ($pl, $msg) = @_; 63 my ($pl, $msg) = @_;
38 my $player = cf::player::find_active $pl->name; 64 my $player = cf::player::find_active $pl->name;
39 65
40 if ($msg ne "") { 66 if ($msg ne "") {
67 $msg = 10 if $msg > 10;
68
41 my $prev_listen = $player->listening; 69 my $prev_listen = $player->listening;
42 $player->listening ($msg); 70 $player->listening ($msg);
43 if ($prev_listen == $player->listening) { 71 if ($prev_listen == $player->listening) {
44 $pl->message ("Your verbose level stayed $prev_listen.", cf::NDI_UNIQUE); 72 $pl->message ("Your verbose level stays at $prev_listen.", cf::NDI_UNIQUE);
45 } else { 73 } else {
46 $pl->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);
47 } 75 }
48 } else { 76 } else {
49 $pl->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE); 77 $pl->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE);
52 80
53cf::register_command cointoss => sub { 81cf::register_command cointoss => sub {
54 my ($pl, $msg) = @_; 82 my ($pl, $msg) = @_;
55 83
56 my $name = $pl->name; 84 my $name = $pl->name;
85 my $coin = int rand 2 ? "Heads" : "Tails";
57 86
58 if (int rand 2) {
59 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) { 87 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) {
60 next 88 next
61 if $other->ob == $pl; 89 if $other->ob == $pl;
62 $other->ob->message ("$name flips a coin.... Heads!", cf::NDI_GREY | cf::NDI_UNIQUE);
63 }
64
65 $pl->message ("You flip a coin.... Heads!", cf::NDI_GREY | cf::NDI_UNIQUE);
66 } else {
67 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) {
68 next
69 if $other->ob == $pl;
70 $other->ob->message ("$name flips a coin.... Tails!", cf::NDI_GREY | cf::NDI_UNIQUE); 90 $other->ob->message ("$name flips a coin.... $coin!", cf::NDI_GREY | cf::NDI_UNIQUE);
71 }
72
73 $pl->message ("You flip a coin.... Tails!", cf::NDI_GREY | cf::NDI_UNIQUE);
74 } 91 }
92
93 $pl->message ("You flip a coin.... $coin!", cf::NDI_GREY | cf::NDI_UNIQUE);
75}; 94};
76 95
77cf::register_command orcknuckle => sub { 96cf::register_command orcknuckle => sub {
78 my ($pl, $msg) = @_; 97 my ($pl, $msg) = @_;
79 my @orcknuckle = ("none", "beholder", "ghost", "knight", "princess", "dragon", "orc"); 98 my @orcknuckle = ("none", "beholder", "ghost", "knight", "princess", "dragon", "orc");
227 noparams => { 246 noparams => {
228 other => "<self> winks suggestively.", 247 other => "<self> winks suggestively.",
229 self => "Have you got something in your eye?", 248 self => "Have you got something in your eye?",
230 }, 249 },
231 params => { 250 params => {
251 target => "<self> winks at you.",
232 target => "<self> winks at <other>.", 252 other => "<self> winks at <other>.",
233 self => "You wink suggestively at <other>.", 253 self => "You wink suggestively at <other>.",
234 }, 254 },
235 self => { 255 self => {
236 other => "<self> winks at himself - something strange is going on...", 256 other => "<self> winks at himself - something strange is going on...",
237 self => "You wink at yourself?? What are you up to?", 257 self => "You wink at yourself?? What are you up to?",
327 noparams => { 347 noparams => {
328 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?",
329 self => "You bleed all over your nice new armour.", 349 self => "You bleed all over your nice new armour.",
330 }, 350 },
331 params => { 351 params => {
352 target => "<self> slashes his wrist and bleeds all over you.",
332 target => "<self> slashes his wrist and bleeds all over <other>.", 353 other => "<self> slashes his wrist and bleeds all over <other>.",
333 self => "You slash your wrist and bleed all over <other>", 354 self => "You slash your wrist and bleed all over <other>",
334 }, 355 },
335 self => { 356 self => {
336 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.",
337 self => "Very impressive! You wipe your blood all over yourself.", 358 self => "Very impressive! You wipe your blood all over yourself.",
746cf::register_command me => sub { 767cf::register_command me => sub {
747 my ($pl, $msg) = @_; 768 my ($pl, $msg) = @_;
748 769
749 my $name = $pl->name; 770 my $name = $pl->name;
750 771
751 $_->ob->message ("* $name $msg", cf::NDI_GREY | cf::NDI_UNIQUE) 772 $_->ns->send_msg ($SAY_CHANNEL => "* $name $msg", cf::NDI_GREY, $_ == $pl ? (reply => 1) : ())
752 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 773 for grep $pl->on_same_map_as ($_->ob), cf::player::list;
753}; 774};
754 775
755cf::register_command say => sub { 776cf::register_command say => sub {
756 my ($pl, $msg) = @_; 777 my ($ob, $msg) = @_;
757 778
758 utf8::decode $msg; 779 utf8::decode $msg;
759 780
760 return if $pl->contr->invoke (cf::EVENT_PLAYER_SAY, $msg); 781 return if $ob->contr->invoke (cf::EVENT_PLAYER_SAY, $msg);
761 782
762 if ($msg) { 783 if ($msg) {
763 my $name = $pl->name; 784 my $name = $ob->name;
764
765 utf8::encode $msg; # ->message not yet utf8-ified
766 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE)
767 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 785 my @plonmap = grep $ob->on_same_map_as ($_->ob), cf::player::list;
768 utf8::decode $msg; 786
787 $_->ns->send_msg ($SAY_CHANNEL => "$name says: $msg", cf::NDI_GREY, $_ == $ob ? (reply => 1) : ())
788 for @plonmap;
769 789
770 # npcs, magic_ears etc. 790 # npcs, magic_ears etc.
771 # first find all objects and theirt-level inventories 791 # first find all objects and their first-level inventories
772 # within a 5x5 square # that have something resembling 792 # within a 5x5 square that have something resembling
773 # dialogue or support on_say. 793 # dialogue or support on_say.
774 my ($map, $x, $y) = ($pl->map, $pl->x - 2, $pl->y - 2); 794 my ($map, $x, $y) = ($ob->map, $ob->x - 2, $ob->y - 2);
775 795
776 for my $npc ( 796 for my $npc (
777 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $pl->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_, 797 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $ob->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_,
778 map +($_, $_->inv), 798 map +($_, $_->inv),
779 grep $_, 799 grep $_,
780 map $map->at ($x + $_ % 5, $y + (int $_ / 5)), 800 map $map->at ($x + $_ % 5, $y + (int $_ / 5)),
781 0..24 801 0..24
782 ) { 802 ) {
783 # if some listener teleported us somewhere else, stop right here 803 # if some listener teleported us somewhere else, stop right here
784 last unless $map->path == $pl->map->path; 804 last unless $map->path == $ob->map->path;
785 805
786 my $dialog = new NPC_Dialogue ob => $pl, npc => $npc; 806 my $dialog = new NPC_Dialogue pl => $ob->contr, npc => $npc;
787 my ($reply, @kw) = $dialog->tell ($msg); 807 my ($reply, @kw) = $dialog->tell ($msg);
788 808
789 if (defined $reply) { 809 if (defined $reply) {
790 if ($npc->type == cf::MAGIC_EAR) { 810 if ($npc->type == cf::MAGIC_EAR) {
791 if (length $reply) { 811 if (length $reply) {
792 $_->ob->message ($reply, cf::NDI_BROWN | cf::NDI_UNIQUE) 812 $_->ns->send_msg ($SAY_CHANNEL => $reply, cf::NDI_BROWN)
793 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 813 for @plonmap;
794 } 814 }
795 $npc->use_trigger; 815 $npc->use_trigger;
796 } else { 816 } else {
797 if (length $reply) { 817 if (length $reply) {
798 $_->ob->message ($npc->name . " says: $reply", cf::NDI_BROWN | cf::NDI_UNIQUE) 818 $_->ns->send_msg ($SAY_CHANNEL => $npc->name . " says: $reply", cf::NDI_BROWN)
799 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 819 for @plonmap;
800 } 820 }
801 } 821 }
802 } 822 }
803 823
804 if (@kw) { 824 if (@kw) {
805 $_->ob->message ("[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN | cf::NDI_UNIQUE) 825 $_->ns->send_msg ($SAY_CHANNEL => "[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN)
806 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 826 for @plonmap;
807 } 827 }
808 } 828 }
809 829
810 } else { 830 } else {
811 $pl->message ("What do you want to say?", cf::NDI_UNIQUE); 831 $ob->contr->send_msg ($SAY_CHANNEL => "What do you want to say?", 0, reply => 1);
812 } 832 }
813}; 833};
814 834
815cf::register_command chat => sub { 835cf::register_command chat => sub {
816 my ($pl, $msg) = @_; 836 my ($pl, $msg) = @_;
821 841
822 if ($msg) { 842 if ($msg) {
823 my $name = $pl->name; 843 my $name = $pl->name;
824 my $NOW = time; 844 my $NOW = time;
825 845
826 utf8::encode $msg; # ->message not yet utf8-ified
827 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg; 846 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
828 ext::schmorp_irc::do_notice (sprintf "[%s] %s", $name, $msg); 847 send_irc ("[%s] %s", $name, $msg);
829 848
830 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) 849 $_->ns->send_msg ($CHAT_CHANNEL => "$name chats: $msg", cf::NDI_BLUE, $_ == $pl ? (reply => 1) : ())
831 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;
832 851
833 } else { 852 } else {
834 $pl->message ("Chat what?", cf::NDI_UNIQUE); 853 $pl->ns->send_msg ($CHAT_CHANNEL => "Chat what?");
835 } 854 }
836}; 855};
837 856
838cf::register_command shout => sub { 857cf::register_command shout => sub {
839 my ($pl, $msg) = @_; 858 my ($pl, $msg) = @_;
845 if ($msg) { 864 if ($msg) {
846 my $NOW = time; 865 my $NOW = time;
847 my $name = $pl->name; 866 my $name = $pl->name;
848 867
849 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg; 868 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg;
850 ext::schmorp_irc::do_notice (sprintf "\007\0034{%s} %s\n", $name, $msg); 869 send_irc ("\007\0034{%s} %s\n", $name, $msg);
851 870
852 utf8::encode $msg; # ->message not yet utf8-ified 871 $_->ns->send_msg ($CHAT_CHANNEL => "$name shouts: $msg", cf::NDI_BLUE, $_ == $pl ? (reply => 1) : ())
853 $_->ob->message ("$name shouts: $msg", cf::NDI_RED)
854 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;
855 873
856 } else { 874 } else {
857 $pl->message ("Shout what?", cf::NDI_UNIQUE); 875 $pl->ns->send_msg ($CHAT_CHANNEL => "Shout what?");
858 } 876 }
859}; 877};
860 878
861cf::register_command tell => sub { 879cf::register_command tell => sub {
862 my ($pl, $args) = @_; 880 my ($ob, $args) = @_;
863 my ($target, $msg) = split /\s+/, $args, 2; 881 my ($target, $msg) = split /\s+/, $args, 2;
864 882
865 utf8::decode $msg; 883 utf8::decode $msg;
866 884
885 my $pl = $ob->contr;
886 my $ns = $pl->ns
887 or return;
888 my $name = $ob->name;
889
867 return if $pl->contr->invoke (cf::EVENT_PLAYER_TELL, $target, $msg); 890 return if $pl->invoke (cf::EVENT_PLAYER_TELL, $target, $msg);
868 891
869 my $name = $pl->name; 892 my $pl_channel = {
893 id => "tell-$target",
894 title => "$target",
895 reply => "tell $target ",
896 tooltip => "Private messages from/to $target",
897 };
870 898
871 if ($target =~ /irc\//) { 899 if ($target =~ /irc\//) {
872 my (undef, $nick) = split /\//, $target, 2; 900 my (undef, $nick) = split /\//, $target, 2;
873 $pl->message ("You tell $target: $args"); 901 $ns->send_msg ($pl_channel => "You tell $target: $args", reply => 1);
874 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $msg); 902 send_irc ("(%s) %s: %s\n", $name, $nick, $msg);
875 } 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 };
876 910
877 if ($msg) { 911 if ($msg) {
878 if ($target eq $name) { 912 if ($target eq $name) {
879 $pl->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);
880 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) { 914 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
881 $pl->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);
882 } else { 916 } else {
883 utf8::encode $msg; # ->message not yet utf8-ified 917 return if $other->invoke (cf::EVENT_PLAYER_TOLD, $pl->contr, $msg);
884 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;
885 919
886 $pl->message ("You tell $target: $msg"); 920 $ns->send_msg ($pl_channel => "You tell $target: $msg", reply => 1);
887 $other->ob->message ("$name tells you: $msg"); 921 $other->ns->send_msg ($other_channel => "$name tells you: $msg");
888 $other->ob->{ext_last_tell} = $name;
889 } 922 }
890 } else { 923 } else {
891 $pl->message ("What do you want to tell $target?", cf::NDI_UNIQUE); 924 $ns->send_msg ($pl_channel => "What do you want to tell $target?");
892 } 925 }
893 926
894 } else { 927 } else {
895 $pl->message ("No such player. Your message: $msg", cf::NDI_UNIQUE); 928 $ns->send_msg ($pl_channel => "No such player. Your message: $msg");
896 }
897};
898
899cf::register_command reply => sub {
900 my ($pl, $args) = @_;
901 my $name = $pl->name;
902
903 utf8::decode $args;
904
905 return if $pl->contr->invoke (cf::EVENT_PLAYER_TELL, $pl->{ext_last_tell}, $args);
906
907 if ($pl->{ext_last_tell} =~ /irc\//) {
908 my (undef, $nick) = split /\//, $pl->{ext_last_tell}, 2;
909 $pl->message ("You tell " . $pl->{ext_last_tell} . ": $args");
910 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $args);
911 } elsif (my $other = cf::player::find_active $pl->{ext_last_tell}) {
912
913 if ($args) {
914 $other->ob->{ext_ignore_tell}{$name} >= time
915 or delete $other->ob->{ext_ignore_tell}{$name};
916
917 if ($other->ob->{ext_ignore_tell}{$name} < time) {
918 utf8::encode $args; # ->message not yet utf8-ified
919 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args;
920
921 $pl->message ("You tell " . $other->ob->name . ": $args");
922 $other->ob->message ("$name tells you: $args");
923 $pl->{ext_last_tell} = $other->ob->name;
924 } else {
925 $pl->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE);
926 }
927 } else {
928 $pl->message ("What do you want to tell ".$other->ob->name."?", cf::NDI_UNIQUE);
929 }
930
931 } else {
932 $pl->message ("Can't reply, player left. Your message: $args".$pl->{ext_last_tell}, cf::NDI_UNIQUE);
933 } 929 }
934}; 930};
935 931
936cf::register_command ignore => sub { 932cf::register_command ignore => sub {
937 my ($pl, $args) = @_; 933 my ($pl, $args) = @_;
1014 $pl->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 1010 $pl->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE);
1015 } 1011 }
1016 } 1012 }
1017}; 1013};
1018 1014
1019cf::register_command seen => sub {
1020 my ($pl, $args) = @_;
1021
1022 if (my ($login) = $args =~ /(\S+)/) {
1023 if ($login eq $pl->name) {
1024 $pl->message ("Very funny, $login. Ha. Ha.", cf::NDI_UNIQUE);
1025 } elsif (cf::player::find_active $login) {
1026 $pl->message ("$login is right here on this server!", cf::NDI_UNIQUE);
1027 } elsif (cf::player::exists $login
1028 and stat sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($login) x 2) {
1029 my $time = (stat _)[9];
1030
1031 $pl->message ("$login was last seen here "
1032 . (POSIX::strftime "%Y-%m-%d %H:%M:%S +0000", gmtime $time)
1033 . " which was " . (int +(time - $time) / 3600) . " hours ago.", cf::NDI_UNIQUE);
1034 } else {
1035 $pl->message ("No player named $login is known to me.", cf::NDI_UNIQUE);
1036 }
1037 } else {
1038 $pl->message ("Usage: seen <player>", cf::NDI_UNIQUE);
1039 }
1040};
1041

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines