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.11 by pippijn, Sun May 7 10:54:06 2006 UTC vs.
Revision 1.28 by root, Sun Jul 30 19:58:29 2006 UTC

1#! perl 1#! perl
2 2
3# implement a replacement for the built-in 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;
7use POSIX (); # for strftime only
8
6sub clean_timeouts { 9sub clean_timeouts($) {
7 my ($player) = @_; 10 my ($player) = @_;
8 my $NOW = time; 11 my $NOW = time;
9 12
10 for my $hash (@$player{qw(ext_ignore_shout ext_ignore_tell)}) { 13 for my $hash (@$player{qw(ext_ignore_shout ext_ignore_tell)}) {
11 delete $hash->{$_} for grep $hash->{$_} < $NOW, keys %$hash; 14 while (my ($k, $v) = each %$hash) {
15 if ($v < $NOW) {
16 $player->message ("Your ignore on $k has expired.", cf::NDI_GREEN | cf::NDI_UNIQUE);
17 delete $hash->{$k};
18 } elsif (!cf::player::exists $k) {
19 $player->message ("Your ignore on $k is no longer valid (no such user).", cf::NDI_GREEN | cf::NDI_UNIQUE);
20 delete $hash->{$k};
21 }
22 }
12 } 23 }
13} 24}
14 25
15sub on_logout { 26sub on_logout {
16 my ($pl, $host) = @_; 27 my ($pl, $host) = @_;
17 28
18 clean_timeouts $pl->ob; 29 clean_timeouts $pl->ob;
19} 30}
20 31
32cf::register_command listen => 0, sub {
33 my ($who, $msg) = @_;
34 my $player = cf::player::find $who->name;
35
36 if ($msg ne "") {
37 my $prev_listen = $player->listening;
38 $player->listening ($msg);
39 if ($prev_listen == $player->listening) {
40 $who->message ("Your verbose level stayed $prev_listen.", cf::NDI_UNIQUE);
41 } else {
42 $who->message ("Your verbose level is now " . $player->listening . ". (previously: $prev_listen)", cf::NDI_UNIQUE);
43 }
44 } else {
45 $who->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE);
46 }
47};
48
49cf::register_command say => 0, sub {
50 my ($who, $msg) = @_;
51
52 utf8::decode $msg;
53
54 if ($msg) {
55 my $name = $who->name;
56
57 utf8::encode $msg; # ->message not yet utf8-ified
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;
61
62 # npcs, magic_ears etc.
63 # first find all objects and their inventories within a 5x5 square
64 # that have something resembling dialogue
65 my ($map, $x, $y) = ($who->map, $who->x - 2, $who->y - 2);
66
67 for my $npc (
68 grep NPC_Dialogue::has_dialogue $_,
69 map +($_, $_->inv),
70 grep $_,
71 map $map->at ($x + $_ % 5, $y + (int $_ / 5)),
72 0..24
73 ) {
74 # if some listener teleported us somewhere else, stop right here
75 last unless $map->path == $who->map->path;
76
77 my $dialog = new NPC_Dialogue ob => $who, npc => $npc;
78 my ($reply, @kw) = $dialog->tell ($msg);
79
80 if (defined $reply) {
81 if ($npc->type == cf::MAGIC_EAR) {
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 }
86 $npc->use_trigger;
87 } else {
88 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 }
92 }
93 }
94
95 if (@kw) {
96 $_->ob->message ("[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN | cf::NDI_UNIQUE)
97 for grep $who->on_same_map_as ($_->ob), cf::player::list;
98 }
99 }
100
101 } else {
102 $who->message ("What do you want to say?", cf::NDI_UNIQUE);
103 }
104};
105
21cf::register_command chat => 0, sub { 106cf::register_command chat => 0, sub {
22 my ($who, $msg) = @_; 107 my ($who, $msg) = @_;
108
109 utf8::decode $msg;
23 110
24 if ($msg) { 111 if ($msg) {
25 my $name = $who->name; 112 my $name = $who->name;
26 my $NOW = time; 113 my $NOW = time;
27 114
115 utf8::encode $msg; # ->message not yet utf8-ified
116 cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
117
28 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) 118 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE)
29 for grep $_->ob->{ext_ignore_shout}{$name} < $NOW, cf::player::list; 119 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
30 120
31 } else { 121 } else {
32 $who->message ("Chat what?", cf::NDI_UNIQUE); 122 $who->message ("Chat what?", cf::NDI_UNIQUE);
33 } 123 }
34}; 124};
35 125
36cf::register_command shout => 0, sub { 126cf::register_command shout => 0, sub {
37 my ($who, $msg) = @_; 127 my ($who, $msg) = @_;
128
129 utf8::decode $msg;
38 130
39 if ($msg) { 131 if ($msg) {
40 my $NOW = time; 132 my $NOW = time;
41 my $name = $who->name; 133 my $name = $who->name;
42 134
135 cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg;
136
137 utf8::encode $msg; # ->message not yet utf8-ified
43 $_->ob->message ("$name shouts: $msg", cf::NDI_RED) 138 $_->ob->message ("$name shouts: $msg", cf::NDI_RED)
44 for grep $_->ob->{ext_ignore_shout}{$name} < $NOW, cf::player::list; 139 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list;
45 140
46 } else { 141 } else {
47 $who->message ("Shout what?", cf::NDI_UNIQUE); 142 $who->message ("Shout what?", cf::NDI_UNIQUE);
48 } 143 }
49 144
51 146
52cf::register_command tell => 0, sub { 147cf::register_command tell => 0, sub {
53 my ($who, $args) = @_; 148 my ($who, $args) = @_;
54 my ($target, $msg) = split /\s+/, $args, 2; 149 my ($target, $msg) = split /\s+/, $args, 2;
55 150
151 utf8::decode $msg;
152
56 my $name = $who->name; 153 my $name = $who->name;
57 154
58 if (my $other = cf::player::find $target) { 155 if (my $other = cf::player::find $target) {
156
59 if ($msg) { 157 if ($msg) {
60 158 if ($target eq $name) {
159 $who->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE);
61 if ($target ne $name and $other->ob->{ext_ignore_tell}{$name} < time) { 160 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
161 $who->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE);
162 } else {
163 utf8::encode $msg; # ->message not yet utf8-ified
164 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg;
165
62 $who->message ("You tell $target: $msg"); 166 $who->message ("You tell $target: $msg");
63 $other->ob->message ("$name tells you: $msg"); 167 $other->ob->message ("$name tells you: $msg");
64 $other->ob->{ext_last_tell} = $name; 168 $other->ob->{ext_last_tell} = $name;
65 } elsif ($target eq $name) {
66 $who->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE);
67 } else {
68 $who->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE);
69 } 169 }
70
71 } else { 170 } else {
72 $who->message ("What do you want to tell $target?", cf::NDI_UNIQUE); 171 $who->message ("What do you want to tell $target?", cf::NDI_UNIQUE);
73 } 172 }
173
74 } else { 174 } else {
75 $who->message ("No such player or ambiguous name. Your message: $msg", cf::NDI_UNIQUE); 175 $who->message ("No such player. Your message: $msg", cf::NDI_UNIQUE);
76 } 176 }
77}; 177};
78 178
79cf::register_command reply => 0, sub { 179cf::register_command reply => 0, sub {
80 my ($who, $args) = @_; 180 my ($who, $args) = @_;
81 my $name = $who->name; 181 my $name = $who->name;
182
183 utf8::decode $args;
82 184
83 if (my $other = cf::player::find $who->{ext_last_tell}) { 185 if (my $other = cf::player::find $who->{ext_last_tell}) {
84 if ($args) { 186 if ($args) {
85 187
86 $other->ob->{ext_ignore_tell}{$name} >= time 188 $other->ob->{ext_ignore_tell}{$name} >= time
87 or delete $other->ob->{ext_ignore_tell}{$name}; 189 or delete $other->ob->{ext_ignore_tell}{$name};
88 190
89 if ($other->ob->{ext_ignore_tell}{$name} < time) { 191 if ($other->ob->{ext_ignore_tell}{$name} < time) {
192 utf8::encode $args; # ->message not yet utf8-ified
193 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args;
194
90 $who->message ("You tell " . $other->ob->name . ": $args"); 195 $who->message ("You tell " . $other->ob->name . ": $args");
91 $other->ob->message ("$name tells you: $args"); 196 $other->ob->message ("$name tells you: $args");
92 $who->{ext_last_tell} = $other->ob->name; 197 $who->{ext_last_tell} = $other->ob->name;
93 } else { 198 } else {
94 $who->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE); 199 $who->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE);
121 } 226 }
122 227
123 } elsif ($target && $type) { 228 } elsif ($target && $type) {
124 229
125 $timeout ne "" or $timeout = 24; 230 $timeout ne "" or $timeout = 24;
126
127 my $absolute_timeout = time + $timeout * 3600; 231 my $absolute_timeout = time + $timeout * 3600;
128 232
129 if (my $other = cf::player::find $target) { 233 if (cf::player::exists $target) {
130 if ($type eq "tell") { 234 if ($type eq "tell") {
131 $who->message ("Now ignoring private messages from " . $other->ob->name . " for $timeout hours.", cf::NDI_UNIQUE); 235 $who->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_UNIQUE);
132 $who->{ext_ignore_tell}{$other->ob->name} = $absolute_timeout; 236 $who->{ext_ignore_tell}{$target} = $absolute_timeout;
133 } elsif ($type eq "shout") { 237 } elsif ($type eq "shout") {
134 $who->message ("Now ignoring shouts from " . $other->ob->name . " for $timeout hours.", cf::NDI_UNIQUE); 238 $who->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_UNIQUE);
135 $who->{ext_ignore_shout}{$other->ob->name} = $absolute_timeout; 239 $who->{ext_ignore_shout}{$target} = $absolute_timeout;
136 } elsif ($type eq "all") { 240 } elsif ($type eq "all") {
137 $who->message ("Now ignoring everything from " . $other->ob->name . " for $timeout hours.", cf::NDI_UNIQUE); 241 $who->message ("Now ignoring everything from $target for $timeout hours.", cf::NDI_UNIQUE);
138 $who->{ext_ignore_tell}{$other->ob->name} = $absolute_timeout; 242 $who->{ext_ignore_tell}{$target} = $absolute_timeout;
139 $who->{ext_ignore_shout}{$other->ob->name} = $absolute_timeout; 243 $who->{ext_ignore_shout}{$target} = $absolute_timeout;
140 } else { 244 } else {
141 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE); 245 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE);
142 } 246 }
143 } else { 247 } else {
144 $who->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 248 $who->message ("No such player: $target", cf::NDI_UNIQUE);
145 } 249 }
146 250
147 } else { 251 } else {
148 $who->message ("Usage:", cf::NDI_UNIQUE);
149 $who->message ("ignore <player> <tell | shout | all> <timeout>", cf::NDI_UNIQUE); 252 $who->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n"
150 $who->message ("will ignore a player for <timeout> hours.", cf::NDI_UNIQUE); 253 . "will ignore a player for <timeout> hours.\n"
151 $who->message ("ignore list", cf::NDI_UNIQUE); 254 . "Usage: ignore list\n"
152 $who->message ("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);
153 } 256 }
154}; 257};
155 258
156cf::register_command unignore => 0, sub { 259cf::register_command unignore => 0, sub {
157 my ($who, $args) = @_; 260 my ($who, $args) = @_;
158 my ($target, $type) = split /\s+/, $args; 261 my ($target, $type) = split /\s+/, $args;
159 262
160 if ($args eq "") { 263 if ($args eq "") {
161 if ($who->{ ext_ignore_tell }) { 264 if ($who->{ext_ignore_tell}) {
162 $who->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE); 265 $who->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE);
163 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_tell} }), cf::NDI_UNIQUE); 266 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_tell} }), cf::NDI_UNIQUE);
164 $who->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE); 267 $who->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE);
165 $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);
166 } else { 269 } else {
167 $who->message ("Not ignoring anyone", cf::NDI_UNIQUE); 270 $who->message ("Not ignoring anyone", cf::NDI_UNIQUE);
168 } 271 }
169 } else { 272 } else {
170
171 if (my $other = cf::player::find $target) { 273 if (cf::player::exists $target) {
172 if ($type eq "tell") { 274 if ($type eq "tell") {
173 $who->message ("Not ignoring private messages from " . $other->ob->name . " anymore.", cf::NDI_UNIQUE); 275 $who->message ("Not ignoring private messages from $target anymore.", cf::NDI_UNIQUE);
174 delete $who->{ext_ignore_tell}{$other->ob->name}; 276 delete $who->{ext_ignore_tell} {$target};
175 } elsif ($type eq "shout") { 277 } elsif ($type eq "shout") {
176 $who->message ("Not ignoring shouts from " . $other->ob->name." anymore . ", cf::NDI_UNIQUE); 278 $who->message ("Not ignoring shouts from $target anymore.", cf::NDI_UNIQUE);
177 delete $who->{ext_ignore_shout}{$other->ob->name}; 279 delete $who->{ext_ignore_shout}{$target};
178 } elsif ($type eq "all") { 280 } elsif ($type eq "all") {
179 $who->message ("Not ignoring anything from " . $other->ob->name." anymore . ", cf::NDI_UNIQUE); 281 $who->message ("Not ignoring anything from $target anymore.", cf::NDI_UNIQUE);
180 delete $who->{ext_ignore_tell} {$other->ob->name}; 282 delete $who->{ext_ignore_tell} {$target};
181 delete $who->{ext_ignore_shout}{$other->ob->name}; 283 delete $who->{ext_ignore_shout}{$target};
182 } else { 284 } else {
183 $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);
184 } 286 }
185 } else { 287 } else {
186 $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);
187 } 289 }
188
189 } 290 }
190}; 291};
191 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