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.9 by pippijn, Thu Mar 1 13:01:37 2007 UTC vs.
Revision 1.21 by root, Fri Jul 20 16:11:10 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
22 } 22 }
23 } 23 }
24 } 24 }
25} 25}
26 26
27# send_irc ($format, @args, $msg)
28# make sure the last argument is the message!
29sub send_irc {
30 my ($format, @args) = @_;
31 my $msg = pop @args;
32 for (split /\n/, $msg) {
33 ext::irc::do_notice (sprintf $format, @args, $_)
34 }
35}
36
27cf::player->attach ( 37cf::player->attach (
28 prio => -1000, 38 prio => -1000,
29 on_login => sub { 39 on_login => sub {
30 my ($pl) = @_; 40 my ($pl) = @_;
31 41
36cf::register_command listen => sub { 46cf::register_command listen => sub {
37 my ($pl, $msg) = @_; 47 my ($pl, $msg) = @_;
38 my $player = cf::player::find_active $pl->name; 48 my $player = cf::player::find_active $pl->name;
39 49
40 if ($msg ne "") { 50 if ($msg ne "") {
51 $msg = 10 if $msg > 10;
52
41 my $prev_listen = $player->listening; 53 my $prev_listen = $player->listening;
42 $player->listening ($msg); 54 $player->listening ($msg);
43 if ($prev_listen == $player->listening) { 55 if ($prev_listen == $player->listening) {
44 $pl->message ("Your verbose level stayed $prev_listen.", cf::NDI_UNIQUE); 56 $pl->message ("Your verbose level stays at $prev_listen.", cf::NDI_UNIQUE);
45 } else { 57 } else {
46 $pl->message ("Your verbose level is now " . $player->listening . ". (previously: $prev_listen)", cf::NDI_UNIQUE); 58 $pl->message ("Your verbose level is now " . $player->listening . ". (previously: $prev_listen)", cf::NDI_UNIQUE);
47 } 59 }
48 } else { 60 } else {
49 $pl->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE); 61 $pl->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE);
52 64
53cf::register_command cointoss => sub { 65cf::register_command cointoss => sub {
54 my ($pl, $msg) = @_; 66 my ($pl, $msg) = @_;
55 67
56 my $name = $pl->name; 68 my $name = $pl->name;
69 my $coin = int rand 2 ? "Heads" : "Tails";
57 70
58 if (int rand 2) {
59 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) { 71 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) {
60 next 72 next
61 if $other->ob == $pl; 73 if $other->ob == $pl;
62 $other->ob->message ("$name flips a coin.... Heads!", cf::NDI_GREY | cf::NDI_UNIQUE); 74 $other->ob->message ("$name flips a coin.... $coin!", cf::NDI_GREY | cf::NDI_UNIQUE);
63 } 75 }
76
77 $pl->message ("You flip a coin.... $coin!", cf::NDI_GREY | cf::NDI_UNIQUE);
78};
79
80cf::register_command orcknuckle => sub {
81 my ($pl, $msg) = @_;
82 my @orcknuckle = ("none", "beholder", "ghost", "knight", "princess", "dragon", "orc");
83
84 my $name = $pl->name;
85
86 my ($i, $j, $k, $l) = ((int rand 5) + 1, (int rand 5) + 1, (int rand 5) + 1, (int rand 6) + 1);
87 my $result = "$orcknuckle[$i], $orcknuckle[$j], $orcknuckle[$k], $orcknuckle[$l]";
88
89 for my $other ( grep { $pl->on_same_map_as ($_->ob) } cf::player::list ) {
90 next
91 if $other->ob == $pl;
92 $other->ob->message ("$name rolls $result!", cf::NDI_GREY | cf::NDI_UNIQUE);
93 }
64 94
65 $pl->message ("You flip a coin.... Heads!", cf::NDI_GREY | cf::NDI_UNIQUE); 95 $pl->message ("You roll $result!", 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);
71 }
72
73 $pl->message ("You flip a coin.... Tails!", cf::NDI_GREY | cf::NDI_UNIQUE);
74 }
75}; 96};
76 97
77my $emotes = { 98my $emotes = {
78 growl => { 99 growl => {
79 noparams => { 100 noparams => {
209 noparams => { 230 noparams => {
210 other => "<self> winks suggestively.", 231 other => "<self> winks suggestively.",
211 self => "Have you got something in your eye?", 232 self => "Have you got something in your eye?",
212 }, 233 },
213 params => { 234 params => {
235 target => "<self> winks at you.",
214 target => "<self> winks at <other>.", 236 other => "<self> winks at <other>.",
215 self => "You wink suggestively at <other>.", 237 self => "You wink suggestively at <other>.",
216 }, 238 },
217 self => { 239 self => {
218 other => "<self> winks at himself - something strange is going on...", 240 other => "<self> winks at himself - something strange is going on...",
219 self => "You wink at yourself?? What are you up to?", 241 self => "You wink at yourself?? What are you up to?",
309 noparams => { 331 noparams => {
310 other => "<self> is bleeding all over the carpet - got a spare tourniquet?", 332 other => "<self> is bleeding all over the carpet - got a spare tourniquet?",
311 self => "You bleed all over your nice new armour.", 333 self => "You bleed all over your nice new armour.",
312 }, 334 },
313 params => { 335 params => {
336 target => "<self> slashes his wrist and bleeds all over you.",
314 target => "<self> slashes his wrist and bleeds all over <other>.", 337 other => "<self> slashes his wrist and bleeds all over <other>.",
315 self => "You slash your wrist and bleed all over <other>", 338 self => "You slash your wrist and bleed all over <other>",
316 }, 339 },
317 self => { 340 self => {
318 other => "<self> performs some satanic ritual while wiping his blood on himself.", 341 other => "<self> performs some satanic ritual while wiping his blood on himself.",
319 self => "Very impressive! You wipe your blood all over yourself.", 342 self => "Very impressive! You wipe your blood all over yourself.",
723 } 746 }
724 }; 747 };
725 }; 748 };
726} 749}
727 750
751our $SAY_CHANNEL = {
752 id => "say",
753 title => "Map",
754 reply => "say ",
755 tooltip => "Things said to and replied from npcs near you and other players on the same map only.",
756};
757
728cf::register_command me => sub { 758cf::register_command me => sub {
729 my ($pl, $msg) = @_; 759 my ($pl, $msg) = @_;
730 760
731 my $name = $pl->name; 761 my $name = $pl->name;
732 762
733 $_->ob->message ("* $name $msg", cf::NDI_GREY | cf::NDI_UNIQUE) 763 $_->ns->send_msg ($SAY_CHANNEL => "* $name $msg", cf::NDI_GREY, $_ == $pl ? (reply => 1) : ())
734 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 764 for grep $pl->on_same_map_as ($_->ob), cf::player::list;
735}; 765};
736 766
737cf::register_command say => sub { 767cf::register_command say => sub {
738 my ($pl, $msg) = @_; 768 my ($pl, $msg) = @_;
741 771
742 return if $pl->contr->invoke (cf::EVENT_PLAYER_SAY, $msg); 772 return if $pl->contr->invoke (cf::EVENT_PLAYER_SAY, $msg);
743 773
744 if ($msg) { 774 if ($msg) {
745 my $name = $pl->name; 775 my $name = $pl->name;
746
747 utf8::encode $msg; # ->message not yet utf8-ified
748 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE)
749 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 776 my @plonmap = grep $pl->on_same_map_as ($_->ob), cf::player::list;
750 utf8::decode $msg; 777
778 $_->ns->send_msg ($SAY_CHANNEL => "$name says: $msg", cf::NDI_GREY, $_ == $pl ? (reply => 1) : ())
779 for @plonmap;
751 780
752 # npcs, magic_ears etc. 781 # npcs, magic_ears etc.
753 # first find all objects and theirt-level inventories 782 # first find all objects and their first-level inventories
754 # within a 5x5 square # that have something resembling 783 # within a 5x5 square that have something resembling
755 # dialogue or support on_say. 784 # dialogue or support on_say.
756 my ($map, $x, $y) = ($pl->map, $pl->x - 2, $pl->y - 2); 785 my ($map, $x, $y) = ($pl->map, $pl->x - 2, $pl->y - 2);
757 786
758 for my $npc ( 787 for my $npc (
759 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $pl->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_, 788 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $pl->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_,
763 0..24 792 0..24
764 ) { 793 ) {
765 # if some listener teleported us somewhere else, stop right here 794 # if some listener teleported us somewhere else, stop right here
766 last unless $map->path == $pl->map->path; 795 last unless $map->path == $pl->map->path;
767 796
768 my $dialog = new NPC_Dialogue ob => $pl, npc => $npc; 797 my $dialog = new NPC_Dialogue pl => $pl->contr, npc => $npc;
769 my ($reply, @kw) = $dialog->tell ($msg); 798 my ($reply, @kw) = $dialog->tell ($msg);
770 799
771 if (defined $reply) { 800 if (defined $reply) {
772 if ($npc->type == cf::MAGIC_EAR) { 801 if ($npc->type == cf::MAGIC_EAR) {
773 if (length $reply) { 802 if (length $reply) {
774 $_->ob->message ($reply, cf::NDI_BROWN | cf::NDI_UNIQUE) 803 $_->contr->send_msg ($SAY_CHANNEL => $reply, cf::NDI_BROWN)
775 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 804 for @plonmap;
776 } 805 }
777 $npc->use_trigger; 806 $npc->use_trigger;
778 } else { 807 } else {
779 if (length $reply) { 808 if (length $reply) {
780 $_->ob->message ($npc->name . " says: $reply", cf::NDI_BROWN | cf::NDI_UNIQUE) 809 $_->contr->send_msg ($SAY_CHANNEL => $npc->name . " says: $reply", cf::NDI_BROWN)
781 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 810 for @plonmap;
782 } 811 }
783 } 812 }
784 } 813 }
785 814
786 if (@kw) { 815 if (@kw) {
787 $_->ob->message ("[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN | cf::NDI_UNIQUE) 816 $_->contr->send_msg ($SAY_CHANNEL => "[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN)
788 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 817 for @plonmap;
789 } 818 }
790 } 819 }
791 820
792 } else { 821 } else {
793 $pl->message ("What do you want to say?", cf::NDI_UNIQUE); 822 $pl->contr->send_msg ($SAY_CHANNEL => "What do you want to say?", 0, reply => 1);
794 } 823 }
824};
825
826our $CHAT_CHANNEL = {
827 id => "chat",
828 title => "Chat",
829 reply => "chat ",
830 tooltip => "Player chat and shouts, global to the server.",
795}; 831};
796 832
797cf::register_command chat => sub { 833cf::register_command chat => sub {
798 my ($pl, $msg) = @_; 834 my ($pl, $msg) = @_;
799 835
803 839
804 if ($msg) { 840 if ($msg) {
805 my $name = $pl->name; 841 my $name = $pl->name;
806 my $NOW = time; 842 my $NOW = time;
807 843
808 utf8::encode $msg; # ->message not yet utf8-ified
809 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg; 844 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
810 ext::schmorp_irc::do_notice (sprintf "[%s] %s", $name, $msg); 845 send_irc ("[%s] %s", $name, $msg);
811 846
812 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) 847 $_->ns->send_msg ($CHAT_CHANNEL => "$name chats: $msg", cf::NDI_BLUE, $_ == $pl ? (reply => 1) : ())
813 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list; 848 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
814 849
815 } else { 850 } else {
816 $pl->message ("Chat what?", cf::NDI_UNIQUE); 851 $pl->ns->send_msg ($CHAT_CHANNEL => "Chat what?");
817 } 852 }
818}; 853};
819 854
820cf::register_command shout => sub { 855cf::register_command shout => sub {
821 my ($pl, $msg) = @_; 856 my ($pl, $msg) = @_;
827 if ($msg) { 862 if ($msg) {
828 my $NOW = time; 863 my $NOW = time;
829 my $name = $pl->name; 864 my $name = $pl->name;
830 865
831 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg; 866 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg;
832 ext::schmorp_irc::do_notice (sprintf "\007\0034{%s} %s\n", $name, $msg); 867 send_irc ("\007\0034{%s} %s\n", $name, $msg);
833 868
834 utf8::encode $msg; # ->message not yet utf8-ified 869 $_->ns->send_msg ($CHAT_CHANNEL => "$name shouts: $msg", cf::NDI_BLUE, $_ == $pl ? (reply => 1) : ())
835 $_->ob->message ("$name shouts: $msg", cf::NDI_RED)
836 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list; 870 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list;
837 871
838 } else { 872 } else {
839 $pl->message ("Shout what?", cf::NDI_UNIQUE); 873 $pl->ns->send_msg ($CHAT_CHANNEL => "Shout what?");
840 } 874 }
841}; 875};
842 876
843cf::register_command tell => sub { 877cf::register_command tell => sub {
844 my ($pl, $args) = @_; 878 my ($ob, $args) = @_;
845 my ($target, $msg) = split /\s+/, $args, 2; 879 my ($target, $msg) = split /\s+/, $args, 2;
846 880
847 utf8::decode $msg; 881 utf8::decode $msg;
848 882
883 my $pl = $ob->contr;
884 my $ns = $pl->ns
885 or return;
886 my $name = $ob->name;
887
849 return if $pl->contr->invoke (cf::EVENT_PLAYER_TELL, $target, $msg); 888 return if $pl->invoke (cf::EVENT_PLAYER_TELL, $target, $msg);
850 889
851 my $name = $pl->name; 890 my $pl_channel = {
891 id => "tell-$target",
892 title => "$target",
893 reply => "tell $target ",
894 tooltip => "Private messages from/to $target",
895 };
852 896
853 if ($target =~ /irc\//) { 897 if ($target =~ /irc\//) {
854 my (undef, $nick) = split /\//, $target, 2; 898 my (undef, $nick) = split /\//, $target, 2;
855 $pl->message ("You tell $target: $args"); 899 $ns->send_msg ($pl_channel => "You tell $target: $args", reply => 1);
856 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $msg); 900 send_irc ("(%s) %s: %s\n", $name, $nick, $msg);
857 } elsif (my $other = cf::player::find_active $target) { 901 } elsif (my $other = cf::player::find_active $target) {
902 my $other_channel = {
903 id => "tell-$name",
904 title => "$name",
905 reply => "tell $name ",
906 tooltip => "Private messages from/to $name",
907 };
858 908
859 if ($msg) { 909 if ($msg) {
860 if ($target eq $name) { 910 if ($target eq $name) {
861 $pl->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE); 911 $ns->send_msg ($pl_channel => "You are talking to yourself, you freak!", reply => 1);
862 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) { 912 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
863 $pl->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.", reply => 1);
864 } else { 914 } else {
865 utf8::encode $msg; # ->message not yet utf8-ified 915 return if $other->invoke (cf::EVENT_PLAYER_TOLD, $pl->contr, $msg);
866 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;
867 917
868 $pl->message ("You tell $target: $msg"); 918 $ns->send_msg ($pl_channel => "You tell $target: $msg", reply => 1);
869 $other->ob->message ("$name tells you: $msg"); 919 $other->ns->send_msg ($other_channel => "$name tells you: $msg");
870 $other->ob->{ext_last_tell} = $name;
871 } 920 }
872 } else { 921 } else {
873 $pl->message ("What do you want to tell $target?", cf::NDI_UNIQUE); 922 $ns->send_msg ($pl_channel => "What do you want to tell $target?");
874 } 923 }
875 924
876 } else { 925 } else {
877 $pl->message ("No such player. Your message: $msg", cf::NDI_UNIQUE); 926 $ns->send_msg ($pl_channel => "No such player. Your message: $msg");
878 }
879};
880
881cf::register_command reply => sub {
882 my ($pl, $args) = @_;
883 my $name = $pl->name;
884
885 utf8::decode $args;
886
887 return if $pl->contr->invoke (cf::EVENT_PLAYER_TELL, $pl->{ext_last_tell}, $args);
888
889 if ($pl->{ext_last_tell} =~ /irc\//) {
890 my (undef, $nick) = split /\//, $pl->{ext_last_tell}, 2;
891 $pl->message ("You tell " . $pl->{ext_last_tell} . ": $args");
892 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $args);
893 } elsif (my $other = cf::player::find_active $pl->{ext_last_tell}) {
894
895 if ($args) {
896 $other->ob->{ext_ignore_tell}{$name} >= time
897 or delete $other->ob->{ext_ignore_tell}{$name};
898
899 if ($other->ob->{ext_ignore_tell}{$name} < time) {
900 utf8::encode $args; # ->message not yet utf8-ified
901 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args;
902
903 $pl->message ("You tell " . $other->ob->name . ": $args");
904 $other->ob->message ("$name tells you: $args");
905 $pl->{ext_last_tell} = $other->ob->name;
906 } else {
907 $pl->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE);
908 }
909 } else {
910 $pl->message ("What do you want to tell ".$other->ob->name."?", cf::NDI_UNIQUE);
911 }
912
913 } else {
914 $pl->message ("Can't reply, player left. Your message: $args".$pl->{ext_last_tell}, cf::NDI_UNIQUE);
915 } 927 }
916}; 928};
917 929
918cf::register_command ignore => sub { 930cf::register_command ignore => sub {
919 my ($pl, $args) = @_; 931 my ($pl, $args) = @_;
996 $pl->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 1008 $pl->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE);
997 } 1009 }
998 } 1010 }
999}; 1011};
1000 1012
1001cf::register_command seen => sub {
1002 my ($pl, $args) = @_;
1003
1004 if (my ($login) = $args =~ /(\S+)/) {
1005 if ($login eq $pl->name) {
1006 $pl->message ("Very funny, $login. Ha. Ha.", cf::NDI_UNIQUE);
1007 } elsif (cf::player::find_active $login) {
1008 $pl->message ("$login is right here on this server!", cf::NDI_UNIQUE);
1009 } elsif (cf::player::exists $login
1010 and stat sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($login) x 2) {
1011 my $time = (stat _)[9];
1012
1013 $pl->message ("$login was last seen here "
1014 . (POSIX::strftime "%Y-%m-%d %H:%M:%S +0000", gmtime $time)
1015 . " which was " . (int +(time - $time) / 3600) . " hours ago.", cf::NDI_UNIQUE);
1016 } else {
1017 $pl->message ("No player named $login is known to me.", cf::NDI_UNIQUE);
1018 }
1019 } else {
1020 $pl->message ("Usage: seen <player>", cf::NDI_UNIQUE);
1021 }
1022};
1023

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines