ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/chat.ext
Revision: 1.20
Committed: Wed Jul 19 08:52:57 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
Changes since 1.19: +55 -16 lines
Log Message:
make use of ->reply, implement say in perl, still untested but activated perl-eval

File Contents

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