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.34 by root, Fri Aug 25 15:24:54 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines