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.17 by root, Sat May 19 11:04:16 2007 UTC

36cf::register_command listen => sub { 36cf::register_command listen => sub {
37 my ($pl, $msg) = @_; 37 my ($pl, $msg) = @_;
38 my $player = cf::player::find_active $pl->name; 38 my $player = cf::player::find_active $pl->name;
39 39
40 if ($msg ne "") { 40 if ($msg ne "") {
41 $msg = 10 if $msg > 10;
42
41 my $prev_listen = $player->listening; 43 my $prev_listen = $player->listening;
42 $player->listening ($msg); 44 $player->listening ($msg);
43 if ($prev_listen == $player->listening) { 45 if ($prev_listen == $player->listening) {
44 $pl->message ("Your verbose level stayed $prev_listen.", cf::NDI_UNIQUE); 46 $pl->message ("Your verbose level stayed $prev_listen.", cf::NDI_UNIQUE);
45 } else { 47 } else {
227 noparams => { 229 noparams => {
228 other => "<self> winks suggestively.", 230 other => "<self> winks suggestively.",
229 self => "Have you got something in your eye?", 231 self => "Have you got something in your eye?",
230 }, 232 },
231 params => { 233 params => {
234 target => "<self> winks at you.",
232 target => "<self> winks at <other>.", 235 other => "<self> winks at <other>.",
233 self => "You wink suggestively at <other>.", 236 self => "You wink suggestively at <other>.",
234 }, 237 },
235 self => { 238 self => {
236 other => "<self> winks at himself - something strange is going on...", 239 other => "<self> winks at himself - something strange is going on...",
237 self => "You wink at yourself?? What are you up to?", 240 self => "You wink at yourself?? What are you up to?",
327 noparams => { 330 noparams => {
328 other => "<self> is bleeding all over the carpet - got a spare tourniquet?", 331 other => "<self> is bleeding all over the carpet - got a spare tourniquet?",
329 self => "You bleed all over your nice new armour.", 332 self => "You bleed all over your nice new armour.",
330 }, 333 },
331 params => { 334 params => {
335 target => "<self> slashes his wrist and bleeds all over you.",
332 target => "<self> slashes his wrist and bleeds all over <other>.", 336 other => "<self> slashes his wrist and bleeds all over <other>.",
333 self => "You slash your wrist and bleed all over <other>", 337 self => "You slash your wrist and bleed all over <other>",
334 }, 338 },
335 self => { 339 self => {
336 other => "<self> performs some satanic ritual while wiping his blood on himself.", 340 other => "<self> performs some satanic ritual while wiping his blood on himself.",
337 self => "Very impressive! You wipe your blood all over yourself.", 341 self => "Very impressive! You wipe your blood all over yourself.",
760 return if $pl->contr->invoke (cf::EVENT_PLAYER_SAY, $msg); 764 return if $pl->contr->invoke (cf::EVENT_PLAYER_SAY, $msg);
761 765
762 if ($msg) { 766 if ($msg) {
763 my $name = $pl->name; 767 my $name = $pl->name;
764 768
765 utf8::encode $msg; # ->message not yet utf8-ified
766 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE) 769 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE)
767 for grep $pl->on_same_map_as ($_->ob), cf::player::list; 770 for grep $pl->on_same_map_as ($_->ob), cf::player::list;
768 utf8::decode $msg;
769 771
770 # npcs, magic_ears etc. 772 # npcs, magic_ears etc.
771 # first find all objects and theirt-level inventories 773 # first find all objects and their first-level inventories
772 # within a 5x5 square # that have something resembling 774 # within a 5x5 square that have something resembling
773 # dialogue or support on_say. 775 # dialogue or support on_say.
774 my ($map, $x, $y) = ($pl->map, $pl->x - 2, $pl->y - 2); 776 my ($map, $x, $y) = ($pl->map, $pl->x - 2, $pl->y - 2);
775 777
776 for my $npc ( 778 for my $npc (
777 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $pl->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_, 779 grep +($_->invoke (cf::EVENT_OBJECT_SAY, $pl->contr, $msg) && return) || NPC_Dialogue::has_dialogue $_,
821 823
822 if ($msg) { 824 if ($msg) {
823 my $name = $pl->name; 825 my $name = $pl->name;
824 my $NOW = time; 826 my $NOW = time;
825 827
826 utf8::encode $msg; # ->message not yet utf8-ified
827 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg; 828 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
828 ext::schmorp_irc::do_notice (sprintf "[%s] %s", $name, $msg); 829 ext::irc::do_notice (sprintf "[%s] %s", $name, $msg);
829 830
830 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) 831 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE)
831 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list; 832 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
832 833
833 } else { 834 } else {
845 if ($msg) { 846 if ($msg) {
846 my $NOW = time; 847 my $NOW = time;
847 my $name = $pl->name; 848 my $name = $pl->name;
848 849
849 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg; 850 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); 851 ext::irc::do_notice (sprintf "\007\0034{%s} %s\n", $name, $msg);
851 852
852 utf8::encode $msg; # ->message not yet utf8-ified
853 $_->ob->message ("$name shouts: $msg", cf::NDI_RED) 853 $_->ob->message ("$name shouts: $msg", cf::NDI_RED)
854 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list; 854 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list;
855 855
856 } else { 856 } else {
857 $pl->message ("Shout what?", cf::NDI_UNIQUE); 857 $pl->message ("Shout what?", cf::NDI_UNIQUE);
869 my $name = $pl->name; 869 my $name = $pl->name;
870 870
871 if ($target =~ /irc\//) { 871 if ($target =~ /irc\//) {
872 my (undef, $nick) = split /\//, $target, 2; 872 my (undef, $nick) = split /\//, $target, 2;
873 $pl->message ("You tell $target: $args"); 873 $pl->message ("You tell $target: $args");
874 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $msg); 874 ext::irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $msg);
875 } elsif (my $other = cf::player::find_active $target) { 875 } elsif (my $other = cf::player::find_active $target) {
876 876
877 if ($msg) { 877 if ($msg) {
878 if ($target eq $name) { 878 if ($target eq $name) {
879 $pl->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE); 879 $pl->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE);
880 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) { 880 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
881 $pl->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE); 881 $pl->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE);
882 } else { 882 } else {
883 utf8::encode $msg; # ->message not yet utf8-ified 883 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; 884 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg;
885 885
886 $pl->message ("You tell $target: $msg"); 886 $pl->message ("You tell $target: $msg");
887 $other->ob->message ("$name tells you: $msg"); 887 $other->ob->message ("$name tells you: $msg");
888 $other->ob->{ext_last_tell} = $name; 888 $other->ob->{ext_last_tell} = $name;
905 return if $pl->contr->invoke (cf::EVENT_PLAYER_TELL, $pl->{ext_last_tell}, $args); 905 return if $pl->contr->invoke (cf::EVENT_PLAYER_TELL, $pl->{ext_last_tell}, $args);
906 906
907 if ($pl->{ext_last_tell} =~ /irc\//) { 907 if ($pl->{ext_last_tell} =~ /irc\//) {
908 my (undef, $nick) = split /\//, $pl->{ext_last_tell}, 2; 908 my (undef, $nick) = split /\//, $pl->{ext_last_tell}, 2;
909 $pl->message ("You tell " . $pl->{ext_last_tell} . ": $args"); 909 $pl->message ("You tell " . $pl->{ext_last_tell} . ": $args");
910 ext::schmorp_irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $args); 910 ext::irc::do_notice (sprintf "(%s) %s: %s\n", $name, $nick, $args);
911 } elsif (my $other = cf::player::find_active $pl->{ext_last_tell}) { 911 } elsif (my $other = cf::player::find_active $pl->{ext_last_tell}) {
912 912
913 if ($args) { 913 if ($args) {
914 $other->ob->{ext_ignore_tell}{$name} >= time 914 $other->ob->{ext_ignore_tell}{$name} >= time
915 or delete $other->ob->{ext_ignore_tell}{$name}; 915 or delete $other->ob->{ext_ignore_tell}{$name};
916 916
917 if ($other->ob->{ext_ignore_tell}{$name} < time) { 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; 918 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args;
920 919
921 $pl->message ("You tell " . $other->ob->name . ": $args"); 920 $pl->message ("You tell " . $other->ob->name . ": $args");
922 $other->ob->message ("$name tells you: $args"); 921 $other->ob->message ("$name tells you: $args");
923 $pl->{ext_last_tell} = $other->ob->name; 922 $pl->{ext_last_tell} = $other->ob->name;
1014 $pl->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 1013 $pl->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE);
1015 } 1014 }
1016 } 1015 }
1017}; 1016};
1018 1017
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