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.7 by root, Sun May 7 08:26:47 2006 UTC vs.
Revision 1.32 by root, Fri Aug 25 13:33:57 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
6use NPC_Dialogue;
7use POSIX (); # for strftime only
8
9sub clean_timeouts($) {
10 my ($player) = @_;
11 my $NOW = time;
12
13 for my $hash (@$player{qw(ext_ignore_shout ext_ignore_tell)}) {
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 }
23 }
24}
25
26cf::attach_to_players
27 prio => -1000,
28 on_login => sub {
29 my ($pl) = @_;
30
31 clean_timeouts $pl->ob;
32 },
33;
34
35cf::register_command listen => 0, sub {
36 my ($who, $msg) = @_;
37 my $player = cf::player::find $who->name;
38
39 if ($msg ne "") {
40 my $prev_listen = $player->listening;
41 $player->listening ($msg);
42 if ($prev_listen == $player->listening) {
43 $who->message ("Your verbose level stayed $prev_listen.", cf::NDI_UNIQUE);
44 } else {
45 $who->message ("Your verbose level is now " . $player->listening . ". (previously: $prev_listen)", cf::NDI_UNIQUE);
46 }
47 } else {
48 $who->message ("Your verbose level is " . $player->listening . ".", cf::NDI_UNIQUE);
49 }
50};
51
52cf::register_command say => 0, sub {
53 my ($who, $msg) = @_;
54
55 utf8::decode $msg;
56
57 if ($msg) {
58 my $name = $who->name;
59
60 utf8::encode $msg; # ->message not yet utf8-ified
61 $_->ob->message ("$name says: $msg", cf::NDI_GREY | cf::NDI_UNIQUE)
62 for grep $who->on_same_map_as ($_->ob), cf::player::list;
63 utf8::decode $msg;
64
65 # npcs, magic_ears etc.
66 # first find all objects and their inventories within a 5x5 square
67 # that have something resembling dialogue
68 my ($map, $x, $y) = ($who->map, $who->x - 2, $who->y - 2);
69
70 for my $npc (
71 grep NPC_Dialogue::has_dialogue $_,
72 map +($_, $_->inv),
73 grep $_,
74 map $map->at ($x + $_ % 5, $y + (int $_ / 5)),
75 0..24
76 ) {
77 # if some listener teleported us somewhere else, stop right here
78 last unless $map->path == $who->map->path;
79
80 my $dialog = new NPC_Dialogue ob => $who, npc => $npc;
81 my ($reply, @kw) = $dialog->tell ($msg);
82
83 if (defined $reply) {
84 if ($npc->type == cf::MAGIC_EAR) {
85 if (length $reply) {
86 $_->ob->message ($reply, cf::NDI_BROWN | cf::NDI_UNIQUE)
87 for grep $who->on_same_map_as ($_->ob), cf::player::list;
88 }
89 $npc->use_trigger;
90 } else {
91 if (length $reply) {
92 $_->ob->message ($npc->name . " says: $reply", cf::NDI_BROWN | cf::NDI_UNIQUE)
93 for grep $who->on_same_map_as ($_->ob), cf::player::list;
94 }
95 }
96 }
97
98 if (@kw) {
99 $_->ob->message ("[further topics: " . (join ", ", @kw) . "]", cf::NDI_BROWN | cf::NDI_UNIQUE)
100 for grep $who->on_same_map_as ($_->ob), cf::player::list;
101 }
102 }
103
104 } else {
105 $who->message ("What do you want to say?", cf::NDI_UNIQUE);
106 }
107};
5 108
6cf::register_command chat => 0, sub { 109cf::register_command chat => 0, sub {
7 my ($who, $msg) = @_; 110 my ($who, $msg) = @_;
8 111
112 utf8::decode $msg;
113
9 if ($msg) { 114 if ($msg) {
10 my $name = $who->name; 115 my $name = $who->name;
116 my $NOW = time;
117
118 utf8::encode $msg; # ->message not yet utf8-ified
119# cf::LOG cf::llevDebug, sprintf "QBERT [%s] %s\n", $name, $msg;
120 cf::ext::schmorp_irc::do_notice (sprintf "[%s] %s", $name, $msg);
11 121
12 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) 122 $_->ob->message ("$name chats: $msg", cf::NDI_BLUE)
13 for grep !$_->ob->{ext_ignore_shout}, cf::player::list; 123 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 10 } cf::player::list;
14 124
15 } else { 125 } else {
16 $who->message ("Chat what?", cf::NDI_UNIQUE); 126 $who->message ("Chat what?", cf::NDI_UNIQUE);
17 } 127 }
18}; 128};
19 129
20cf::register_command shout => 0, sub { 130cf::register_command shout => 0, sub {
21 my ($who, $msg) = @_; 131 my ($who, $msg) = @_;
22 132
133 utf8::decode $msg;
134
23 if ($msg) { 135 if ($msg) {
136 my $NOW = time;
24 my $name = $who->name; 137 my $name = $who->name;
25 138
139# cf::LOG cf::llevDebug, sprintf "QBERT {%s} %s\n", $name, $msg;
140 cf::ext::schmorp_irc::do_notice (sprintf "{%s} %s\n", $name, $msg);
141
142 utf8::encode $msg; # ->message not yet utf8-ified
26 $_->ob->message ("$name shouts: $msg", cf::NDI_RED) 143 $_->ob->message ("$name shouts: $msg", cf::NDI_RED)
27 for grep !$_->ob->{ext_ignore_shout}, cf::player::list; 144 for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW && $_->listening >= 2 } cf::player::list;
28 145
29 } else { 146 } else {
30 $who->message ("Shout what?", cf::NDI_UNIQUE); 147 $who->message ("Shout what?", cf::NDI_UNIQUE);
31 } 148 }
32 149
34 151
35cf::register_command tell => 0, sub { 152cf::register_command tell => 0, sub {
36 my ($who, $args) = @_; 153 my ($who, $args) = @_;
37 my ($target, $msg) = split /\s+/, $args, 2; 154 my ($target, $msg) = split /\s+/, $args, 2;
38 155
156 utf8::decode $msg;
157
39 my $name = $who->name; 158 my $name = $who->name;
40 159
41 if (my $other = cf::player::find $target) { 160 if (my $other = cf::player::find $target) {
42 161
43 $other->ob->{ext_ignore_tell}{$name} >= time 162 if ($msg) {
44 or delete $other->ob->{ext_ignore_tell}{$name};
45
46 if ($target ne $name and !$other->ob->{ext_ignore_tell}{$name}) {
47 $who->message ("You tell $target: $msg");
48 $other->ob->message ("$name tells you: $msg");
49 $other->ob->{ext_last_tell} = $name;
50 } elsif ($target eq $name) { 163 if ($target eq $name) {
51 $who->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE); 164 $who->message ("You are talking to yourself, you freak!", cf::NDI_UNIQUE);
165 } elsif ($other->ob->{ext_ignore_tell}{$name} >= time) {
166 $who->message ("$target ignores what you say. Give up on it.", cf::NDI_UNIQUE);
52 } else { 167 } else {
53 $who->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE); 168 utf8::encode $msg; # ->message not yet utf8-ified
169 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $target, $msg;
170
171 $who->message ("You tell $target: $msg");
172 $other->ob->message ("$name tells you: $msg");
173 $other->ob->{ext_last_tell} = $name;
54 } 174 }
55
56 } else { 175 } else {
176 $who->message ("What do you want to tell $target?", cf::NDI_UNIQUE);
177 }
178
179 } else {
57 $who->message ("No such player or ambiguous name. Your message: $msg", cf::NDI_UNIQUE); 180 $who->message ("No such player. Your message: $msg", cf::NDI_UNIQUE);
58 } 181 }
59}; 182};
60 183
61cf::register_command reply => 0, sub { 184cf::register_command reply => 0, sub {
62 my ($who, $args) = @_; 185 my ($who, $args) = @_;
63 my $name = $who->name; 186 my $name = $who->name;
64 187
188 utf8::decode $args;
189
65 if (my $other = cf::player::find $who->{ext_last_tell}) { 190 if (my $other = cf::player::find $who->{ext_last_tell}) {
191 if ($args) {
66 192
67 $other->ob->{ext_ignore_tell}{$name} >= time 193 $other->ob->{ext_ignore_tell}{$name} >= time
68 or delete $other->ob->{ext_ignore_tell}{$name}; 194 or delete $other->ob->{ext_ignore_tell}{$name};
69 195
70 if (!$other->ob->{ext_ignore_tell}{$name}) { 196 if ($other->ob->{ext_ignore_tell}{$name} < time) {
197 utf8::encode $args; # ->message not yet utf8-ified
198 cf::LOG cf::llevDebug, sprintf "TELL [%s>%s] %s\n", $name, $other->ob->name, $args;
199
71 $who->message ("You tell " . $other->ob->name . ": $args"); 200 $who->message ("You tell " . $other->ob->name . ": $args");
72 $other->ob->message ("$name tells you: $args"); 201 $other->ob->message ("$name tells you: $args");
73 $who->{ext_last_tell} = $other->ob->name; 202 $who->{ext_last_tell} = $other->ob->name;
74 } else { 203 } else {
75 $who->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE); 204 $who->message ($other->ob->name . " ignores what you say. Give up on it.", cf::NDI_UNIQUE);
205 }
206 } else {
207 $who->message ("What do you want to tell ".$other->ob->name."?", cf::NDI_UNIQUE);
76 } 208 }
77 209
78 } else { 210 } else {
79 $who->message ("Can't reply, player left. Your message: $args", cf::NDI_UNIQUE); 211 $who->message ("Can't reply, player left. Your message: $args", cf::NDI_UNIQUE);
80 } 212 }
83cf::register_command ignore => 0, sub { 215cf::register_command ignore => 0, sub {
84 my ($who, $args) = @_; 216 my ($who, $args) = @_;
85 my ($target, $type, $timeout) = split /\s+/, $args; 217 my ($target, $type, $timeout) = split /\s+/, $args;
86 218
87 if ($args eq "list") { 219 if ($args eq "list") {
220 clean_timeouts $who;
221
88 if ((my @ignored_tell = sort keys %{$who->{ext_ignore_tell}}) 222 if ((my @ignored_tell = sort keys %{$who->{ext_ignore_tell}})
89 + (my @ignored_shout = sort keys %{$who->{ext_ignore_shout}})) { 223 + (my @ignored_shout = sort keys %{$who->{ext_ignore_shout}})) {
90 $who->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE); 224 $who->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE);
91 $who->message ((join ", ", @ignored_tell), cf::NDI_UNIQUE); 225 $who->message ((join ", ", @ignored_tell), cf::NDI_UNIQUE);
92 $who->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE); 226 $who->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE);
97 } 231 }
98 232
99 } elsif ($target && $type) { 233 } elsif ($target && $type) {
100 234
101 $timeout ne "" or $timeout = 24; 235 $timeout ne "" or $timeout = 24;
102
103 my $absolute_timeout = time + $timeout * 3600; 236 my $absolute_timeout = time + $timeout * 3600;
104 237
105 if (my $other = cf::player::find $target) { 238 if (cf::player::exists $target) {
106 if ($type eq "tell") { 239 if ($type eq "tell") {
107 $who->message ("Now ignoring private messages from " . $other->ob->name . " for $timeout hours.", cf::NDI_UNIQUE); 240 $who->message ("Now ignoring private messages from $target for $timeout hours.", cf::NDI_UNIQUE);
108 $who->{ext_ignore_tell}{$other->ob->name} = $absolute_timeout; 241 $who->{ext_ignore_tell}{$target} = $absolute_timeout;
109 } elsif ($type eq "shout") { 242 } elsif ($type eq "shout") {
110 $who->message ("Now ignoring shouts from " . $other->ob->name . " for $timeout hours.", cf::NDI_UNIQUE); 243 $who->message ("Now ignoring shouts from $target for $timeout hours.", cf::NDI_UNIQUE);
111 $who->{ext_ignore_shout}{$other->ob->name} = $absolute_timeout; 244 $who->{ext_ignore_shout}{$target} = $absolute_timeout;
112 } elsif ($type eq "all") { 245 } elsif ($type eq "all") {
113 $who->message ("Now ignoring everything from " . $other->ob->name . " for $timeout hours.", cf::NDI_UNIQUE); 246 $who->message ("Now ignoring everything from $target for $timeout hours.", cf::NDI_UNIQUE);
114 $who->{ext_ignore_tell}{$other->ob->name} = $absolute_timeout; 247 $who->{ext_ignore_tell}{$target} = $absolute_timeout;
115 $who->{ext_ignore_shout}{$other->ob->name} = $absolute_timeout; 248 $who->{ext_ignore_shout}{$target} = $absolute_timeout;
116 } else { 249 } else {
117 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE); 250 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE);
118 } 251 }
119 } else { 252 } else {
120 $who->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 253 $who->message ("No such player: $target", cf::NDI_UNIQUE);
121 } 254 }
122 255
123 } else { 256 } else {
124 $who->message ("Usage:", cf::NDI_UNIQUE);
125 $who->message ("ignore <player> <tell | shout | all> <timeout>", cf::NDI_UNIQUE); 257 $who->message ("Usage: ignore <player> <tell|shout|all> <timeout>\n"
126 $who->message ("will ignore a player for <timeout> hours.", cf::NDI_UNIQUE); 258 . "will ignore a player for <timeout> hours.\n"
127 $who->message ("ignore list", cf::NDI_UNIQUE); 259 . "Usage: ignore list\n"
128 $who->message ("will show you a list of players currently ignored.", cf::NDI_UNIQUE); 260 . "will show you a list of players currently ignored.", cf::NDI_UNIQUE);
129 } 261 }
130}; 262};
131 263
132cf::register_command unignore => 0, sub { 264cf::register_command unignore => 0, sub {
133 my ($who, $args) = @_; 265 my ($who, $args) = @_;
134 my ($target, $type) = split /\s+/, $args; 266 my ($target, $type) = split /\s+/, $args;
135 267
136 if ($args eq "") { 268 if ($args eq "") {
137 if ($who->{ ext_ignore_tell }) { 269 if ($who->{ext_ignore_tell}) {
138 $who->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE); 270 $who->message ("Currently ignoring private messages from: ", cf::NDI_UNIQUE);
139 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_tell} }), cf::NDI_UNIQUE); 271 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_tell} }), cf::NDI_UNIQUE);
140 $who->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE); 272 $who->message ("Currently ignoring shouts from: ", cf::NDI_UNIQUE);
141 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_shout} }), cf::NDI_UNIQUE); 273 $who->message ((join ", ", sort keys %{ $who->{ext_ignore_shout} }), cf::NDI_UNIQUE);
142 } else { 274 } else {
143 $who->message ("Not ignoring anyone", cf::NDI_UNIQUE); 275 $who->message ("Not ignoring anyone", cf::NDI_UNIQUE);
144 } 276 }
145 } else { 277 } else {
146
147 if (my $other = cf::player::find $target) { 278 if (cf::player::exists $target) {
148 if ($type eq "tell") { 279 if ($type eq "tell") {
149 $who->message ("Not ignoring private messages from " . $other->ob->name . " anymore.", cf::NDI_UNIQUE); 280 $who->message ("Not ignoring private messages from $target anymore.", cf::NDI_UNIQUE);
150 delete $who->{ext_ignore_tell}{$other->ob->name}; 281 delete $who->{ext_ignore_tell} {$target};
151 } elsif ($type eq "shout") { 282 } elsif ($type eq "shout") {
152 $who->message ("Not ignoring shouts from " . $other->ob->name." anymore . ", cf::NDI_UNIQUE); 283 $who->message ("Not ignoring shouts from $target anymore.", cf::NDI_UNIQUE);
153 delete $who->{ext_ignore_shout}{$other->ob->name}; 284 delete $who->{ext_ignore_shout}{$target};
154 } elsif ($type eq "all") { 285 } elsif ($type eq "all") {
155 $who->message ("Not ignoring anything from " . $other->ob->name." anymore . ", cf::NDI_UNIQUE); 286 $who->message ("Not ignoring anything from $target anymore.", cf::NDI_UNIQUE);
156 delete $who->{ext_ignore_tell} {$other->ob->name}; 287 delete $who->{ext_ignore_tell} {$target};
157 delete $who->{ext_ignore_shout}{$other->ob->name}; 288 delete $who->{ext_ignore_shout}{$target};
158 } else { 289 } else {
159 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE); 290 $who->message ("You need to specify tell, shout or all.", cf::NDI_UNIQUE);
160 } 291 }
161 } else { 292 } else {
162 $who->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE); 293 $who->message ("No such player or ambiguous name: $target", cf::NDI_UNIQUE);
163 } 294 }
164
165 } 295 }
166}; 296};
167 297
298cf::register_command seen => 0, sub {
299 my ($who, $args) = @_;
300
301 if (my ($login) = $args =~ /(\S+)/) {
302 if ($login eq $who->name) {
303 $who->message ("Very funny, $login. Ha. Ha.", cf::NDI_UNIQUE);
304 } elsif (cf::player::find $login) {
305 $who->message ("$login is right here on this server!", cf::NDI_UNIQUE);
306 } elsif (cf::player::exists $login
307 and stat sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($login) x 2) {
308 my $time = (stat _)[9];
309
310 $who->message ("$login was last seen here "
311 . (POSIX::strftime "%Y-%m-%d %H:%M:%S +0000", gmtime $time)
312 . " which was " . (int +(time - $time) / 3600) . " hours ago.", cf::NDI_UNIQUE);
313 } else {
314 $who->message ("No player named $login is known to me.", cf::NDI_UNIQUE);
315 }
316 } else {
317 $who->message ("Usage: seen <player>", cf::NDI_UNIQUE);
318 }
319};
320

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines