ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/chat.ext
(Generate patch)

Comparing deliantra/maps/perl/chat.ext (file contents):
Revision 1.20 by root, Wed Jul 19 08:52:57 2006 UTC vs.
Revision 1.27 by root, Sun Jul 30 19:56:57 2006 UTC

2 2
3# 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
4# adds ignore/unignore functionality 4# adds ignore/unignore functionality
5 5
6use NPC_Dialogue; 6use NPC_Dialogue;
7 7use POSIX (); # for strftime only
8sub valid_user($) {
9 cf::player::find $_[0]
10 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2;
11}
12 8
13sub clean_timeouts($) { 9sub clean_timeouts($) {
14 my ($player) = @_; 10 my ($player) = @_;
15 my $NOW = time; 11 my $NOW = time;
16 12
17 for my $hash (@$player{qw(ext_ignore_shout ext_ignore_tell)}) { 13 for my $hash (@$player{qw(ext_ignore_shout ext_ignore_tell)}) {
18 while (my ($k, $v) = each %$hash) { 14 while (my ($k, $v) = each %$hash) {
19 if ($v < $NOW) { 15 if ($v < $NOW) {
20 $player->message ("Your ignore on $k has expired.", cf::NDI_GREEN | cf::NDI_UNIQUE); 16 $player->message ("Your ignore on $k has expired.", cf::NDI_GREEN | cf::NDI_UNIQUE);
21 delete $hash->{$k}; 17 delete $hash->{$k};
22 } elsif (!valid_user $k) { 18 } elsif (!cf::player::exists $k) {
23 $player->message ("Your ignore on $k is no longer valid (no such user).", cf::NDI_GREEN | cf::NDI_UNIQUE); 19 $player->message ("Your ignore on $k is no longer valid (no such user).", cf::NDI_GREEN | cf::NDI_UNIQUE);
24 delete $hash->{$k}; 20 delete $hash->{$k};
25 } 21 }
26 } 22 }
27 } 23 }
48 } else { 44 } else {
49 $who->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE); 45 $who->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE);
50 } 46 }
51}; 47};
52 48
53cf::register_command xsay => 0, sub { 49cf::register_command say => 0, sub {
54 my ($who, $msg) = @_; 50 my ($who, $msg) = @_;
51
52 utf8::decode $msg;
55 53
56 if ($msg) { 54 if ($msg) {
57 my $name = $who->name; 55 my $name = $who->name;
58 56
57 utf8::encode $msg; # ->message not yet utf8-ified
59 my @messages = (["$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE]); 58 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE)
59 for grep $who->on_same_map_as ($_->ob), cf::player::list;
60 utf8::decode $msg;
60 61
61 # npcs, magic_ears etc. 62 # npcs, magic_ears etc.
62 # first find all objects and their inventories within a 5x5 square 63 # first find all objects and their inventories within a 5x5 square
63 # that have something resembling dialogue 64 # that have something resembling dialogue
64 my ($map, $x, $y) = ($who->map, $who->x - 2, $who->y - 2); 65 my ($map, $x, $y) = ($who->map, $who->x - 2, $who->y - 2);
72 ) { 73 ) {
73 # if some listener teleported us somewhere else, stop right here 74 # if some listener teleported us somewhere else, stop right here
74 last unless $map->path == $who->map->path; 75 last unless $map->path == $who->map->path;
75 76
76 my $dialog = new NPC_Dialogue ob => $who, npc => $npc; 77 my $dialog = new NPC_Dialogue ob => $who, npc => $npc;
77 my $reply = $dialog->tell ($msg); 78 my ($reply, @kw) = $dialog->tell ($msg);
78 79
79 if (defined $reply) { 80 if (defined $reply) {
80 if ($npc->type == cf::MAGIC_EAR) { 81 if ($npc->type == cf::MAGIC_EAR) {
81 push @messages, [$reply, cf::NDI_BROWN | cf::NDI_UNIQUE] if length $reply; 82 if (length $reply) {
83 $_->ob->message ($reply, cf::NDI_BROWN | cf::NDI_UNIQUE)
84 for grep $who->on_same_map_as ($_->ob), cf::player::list;
85 }
82 $npc->use_trigger; 86 $npc->use_trigger;
83 } else { 87 } else {
88 if (length $reply) {
84 push @messages, [$npc->name . " says: $reply", cf::NDI_BROWN | cf::NDI_UNIQUE] if length $reply; 89 $_->ob->message ($npc->name . " says: $reply", cf::NDI_BROWN | cf::NDI_UNIQUE)
90 for grep $who->on_same_map_as ($_->ob), cf::player::list;
91 }
85 } 92 }
86 } 93 }
87 }
88 94
89 # send replies to all players on this map 95 if (@kw) {
90 for (@messages) { 96 $_->ob->message ("[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN | cf::NDI_UNIQUE)
91 my ($msg, $flags) = @$_;
92
93 $_->ob->message ($msg, $flags)
94 for grep $who->on_same_map_as ($_->ob), cf::player::list; 97 for grep $who->on_same_map_as ($_->ob), cf::player::list;
98 }
95 } 99 }
96 100
97 } else { 101 } else {
98 $who->message ("What do you want to say?", cf::NDI_UNIQUE); 102 $who->message ("What do you want to say?", cf::NDI_UNIQUE);
99 } 103 }
100}; 104};
101 105
102cf::register_command chat => 0, sub { 106cf::register_command chat => 0, sub {
103 my ($who, $msg) = @_; 107 my ($who, $msg) = @_;
108
109 utf8::decode $msg;
104 110
105 if ($msg) { 111 if ($msg) {
106 my $name = $who->name; 112 my $name = $who->name;
107 my $NOW = time; 113 my $NOW = time;
108 114
115 utf8::encode $msg; # ->message not yet utf8-ified
109 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg; 116 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
110 117
111 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) 118 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE)
112 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list; 119 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
113 120
116 } 123 }
117}; 124};
118 125
119cf::register_command shout => 0, sub { 126cf::register_command shout => 0, sub {
120 my ($who, $msg) = @_; 127 my ($who, $msg) = @_;
128
129 utf8::decode $msg;
121 130
122 if ($msg) { 131 if ($msg) {
123 my $NOW = time; 132 my $NOW = time;
124 my $name = $who->name; 133 my $name = $who->name;
125 134
126 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg; 135 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg;
127 136
137 utf8::encode $msg; # ->message not yet utf8-ified
128 $_->ob->message ("$name shouts: $msg", cf::NDI_RED) 138 $_->ob->message ("$name shouts: $msg", cf::NDI_RED)
129 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list; 139 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list;
130 140
131 } else { 141 } else {
132 $who->message ("Shout what?", cf::NDI_UNIQUE); 142 $who->message ("Shout what?", cf::NDI_UNIQUE);
135}; 145};
136 146
137cf::register_command tell => 0, sub { 147cf::register_command tell => 0, sub {
138 my ($who, $args) = @_; 148 my ($who, $args) = @_;
139 my ($target, $msg) = split /\s+/, $args, 2; 149 my ($target, $msg) = split /\s+/, $args, 2;
150
151 utf8::decode $msg;
140 152
141 my $name = $who->name; 153 my $name = $who->name;
142 154
143 if (my $other = cf::player::find $target) { 155 if (my $other = cf::player::find $target) {
144 156
146 if ($target eq $name) { 158 if ($target eq $name) {
147 $who->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE); 159 $who->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE);
148 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) { 160 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
149 $who->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE); 161 $who->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE);
150 } else { 162 } else {
163 utf8::encode $msg; # ->message not yet utf8-ified
151 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg; 164 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg;
152 165
153 $who->message ("You tell $target: $msg"); 166 $who->message ("You tell $target: $msg");
154 $other->ob->message ("$name tells you: $msg"); 167 $other->ob->message ("$name tells you: $msg");
155 $other->ob->{ext_last_tell} = $name; 168 $other->ob->{ext_last_tell} = $name;
165 178
166cf::register_command reply => 0, sub { 179cf::register_command reply => 0, sub {
167 my ($who, $args) = @_; 180 my ($who, $args) = @_;
168 my $name = $who->name; 181 my $name = $who->name;
169 182
183 utf8::decode $args;
184
170 if (my $other = cf::player::find $who->{ext_last_tell}) { 185 if (my $other = cf::player::find $who->{ext_last_tell}) {
171 if ($args) { 186 if ($args) {
172 187
173 $other->ob->{ext_ignore_tell}{$name} >= time 188 $other->ob->{ext_ignore_tell}{$name} >= time
174 or delete $other->ob->{ext_ignore_tell}{$name}; 189 or delete $other->ob->{ext_ignore_tell}{$name};
175 190
176 if ($other->ob->{ext_ignore_tell}{$name} < time) { 191 if ($other->ob->{ext_ignore_tell}{$name} < time) {
192 utf8::encode $msg; # ->message not yet utf8-ified
177 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args; 193 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args;
178 194
179 $who->message ("You tell " . $other->ob->name . ": $args"); 195 $who->message ("You tell " . $other->ob->name . ": $args");
180 $other->ob->message ("$name tells you: $args"); 196 $other->ob->message ("$name tells you: $args");
181 $who->{ext_last_tell} = $other->ob->name; 197 $who->{ext_last_tell} = $other->ob->name;
212 } elsif ($target && $type) { 228 } elsif ($target && $type) {
213 229
214 $timeout ne "" or $timeout = 24; 230 $timeout ne "" or $timeout = 24;
215 my $absolute_timeout = time + $timeout * 3600; 231 my $absolute_timeout = time + $timeout * 3600;
216 232
217 if (valid_user $target) { 233 if (cf::player::exists $target) {
218 if ($type eq "tell") { 234 if ($type eq "tell") {
219 $who->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_UNIQUE); 235 $who->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_UNIQUE);
220 $who->{ext_ignore_tell}{$target} = $absolute_timeout; 236 $who->{ext_ignore_tell}{$target} = $absolute_timeout;
221 } elsif ($type eq "shout") { 237 } elsif ($type eq "shout") {
222 $who->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_UNIQUE); 238 $who->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_UNIQUE);
231 } else { 247 } else {
232 $who->message ("No such player: $target", cf::NDI_UNIQUE); 248 $who->message ("No such player: $target", cf::NDI_UNIQUE);
233 } 249 }
234 250
235 } else { 251 } else {
236 $who->message ("Usage: ignore <player> <tell | shout | all> <timeout>\n" 252 $who->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n"
237 . "will ignore a player for <timeout> hours.\n" 253 . "will ignore a player for <timeout> hours.\n"
238 . "Usage: ignore list\n" 254 . "Usage: ignore list\n"
239 . "will show you a list of players currently ignored.", cf::NDI_UNIQUE); 255 . "will show you a list of players currently ignored.", cf::NDI_UNIQUE);
240 } 256 }
241}; 257};
252 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_shout} }), cf::NDI_UNIQUE); 268 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_shout} }), cf::NDI_UNIQUE);
253 } else { 269 } else {
254 $who->message ("Not ignoring anyone", cf::NDI_UNIQUE); 270 $who->message ("Not ignoring anyone", cf::NDI_UNIQUE);
255 } 271 }
256 } else { 272 } else {
257 273 if (cf::player::exists $target) {
258 if (valid_user $target) {
259 if ($type eq "tell") { 274 if ($type eq "tell") {
260 $who->message ("Not ignoring private messages from $target anymore.", cf::NDI_UNIQUE); 275 $who->message ("Not ignoring private messages from $target anymore.", cf::NDI_UNIQUE);
261 delete $who->{ext_ignore_tell} {$target}; 276 delete $who->{ext_ignore_tell} {$target};
262 } elsif ($type eq "shout") { 277 } elsif ($type eq "shout") {
263 $who->message ("Not ignoring shouts from $target anymore.", cf::NDI_UNIQUE); 278 $who->message ("Not ignoring shouts from $target anymore.", cf::NDI_UNIQUE);
270 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE); 285 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE);
271 } 286 }
272 } else { 287 } else {
273 $who->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 288 $who->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE);
274 } 289 }
275
276 } 290 }
277}; 291};
278 292
293cf::register_command seen => 0, sub {
294 my ($who, $args) = @_;
295
296 if (my ($login) = $args =~ /(\S+)/) {
297 if ($login eq $who->name) {
298 $who->message ("Very funny, $login. Ha. Ha.", cf::NDI_UNIQUE);
299 } elsif (cf::player::find $login) {
300 $who->message ("$login is right here on this server!", cf::NDI_UNIQUE);
301 } elsif (cf::player::exists $login
302 and stat sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($login) x 2) {
303 my $time = (stat _)[9];
304
305 $who->message ("$login was last seen here "
306 . (POSIX::strftime "%Y-%m-%d %H:%M:%S +0000", gmtime $time)
307 . " which was " . (int +(time - $time) / 3600) . " hours ago.", cf::NDI_UNIQUE);
308 } else {
309 $who->message ("No player named $login is known to me.", cf::NDI_UNIQUE);
310 }
311 } else {
312 $who->message ("Usage: seen <player>", cf::NDI_UNIQUE);
313 }
314};
315

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines