ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/Protocol.pm
Revision: 1.93
Committed: Fri Dec 22 03:43:05 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-0_97
Changes since 1.92: +4 -2 lines
Log Message:
fix crash on evil servers :)

File Contents

# Content
1 package CFPlus::Protocol;
2
3 use utf8;
4 use strict;
5
6 use Crossfire::Protocol::Constants;
7
8 use CFPlus;
9 use CFPlus::UI;
10 use CFPlus::Pod;
11 use CFPlus::Macro;
12 use CFPlus::Item;
13
14 use Crossfire::Protocol::Base 0.95;
15
16 use base 'Crossfire::Protocol::Base';
17
18 sub new {
19 my $class = shift;
20
21 my $self = $class->SUPER::new (@_, setup_req => { extmap => 1 });
22
23 $self->{map_widget}->clr_commands;
24
25 my @cmd_help = map {
26 $_->{kw}[0] =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x
27 or die "unparseable command help: $_->{kw}[0]";
28
29 my $cmd = $1;
30 my @args = split /\|/, $2;
31 @args = (".*") unless @args;
32
33 my (undef, @par) = CFPlus::Pod::section_of $_;
34 my $text = CFPlus::Pod::as_label @par;
35
36 $_ = $_ eq ".*" ? "" : " $_"
37 for @args;
38
39 map ["$cmd$_", $text],
40 sort { (length $a) <=> (length $b) }
41 @args
42 } sort { $a->{par} <=> $b->{par} }
43 CFPlus::Pod::find command => "*";
44
45 $self->{map_widget}->add_command (@$_)
46 for @cmd_help;
47
48 $self->{noface} = new_from_file CFPlus::Texture
49 CFPlus::find_rcfile "noface.png", minify => 1, mipmap => 1;
50
51 {
52 $self->{dialogue} = my $tex = new_from_file CFPlus::Texture
53 CFPlus::find_rcfile "dialogue.png", minify => 1, mipmap => 1;
54 $self->{map}->set_texture (1, @$tex{qw(name w h s t)}, @{$tex->{minified}});
55 }
56
57 $self->{open_container} = 0;
58
59 # "global"
60 $self->{tilecache} = CFPlus::db_table "tilecache"
61 or die "tilecache: unable to open database table";
62 $self->{facemap} = CFPlus::db_table "facemap"
63 or die "facemap: unable to open database table";
64
65 # per server
66 $self->{mapcache} = CFPlus::db_table "mapcache_$self->{host}_$self->{port}"
67 or die "mapcache_$self->{host}_$self->{port}: unable to open database table";
68
69 $self
70 }
71
72 sub logprint {
73 my ($self, @a) = @_;
74
75 $self->{log_fh} ||= do {
76 my $path = "$Crossfire::VARDIR/log.$self->{host}";
77
78 open my $fh, ">>:utf8", $path
79 or die "Couldn't open logfile $path: $!";
80
81 $fh->autoflush (1);
82
83 $fh;
84 };
85
86 my ($sec, $min, $hour, $mday, $mon, $year) = localtime time;
87
88 my $ts = sprintf "%04d-%02d-%02d %02d:%02d:%02d",
89 $year + 1900, $mon + 1, $mday, $hour, $min, $sec;
90
91 print {$self->{log_fh}} "$ts ", @a, "\n";
92 }
93
94 sub _stat_numdiff {
95 my ($self, $name, $old, $new) = @_;
96
97 my $diff = $new - $old;
98
99 $diff = 0.01 * int $diff * 100;
100
101 0.1 >= abs $diff ? ()
102 : $diff < 0 ? "$name$diff" : "$name+$diff"
103 }
104
105 sub _stat_skillmaskdiff {
106 my ($self, $name, $old, $new) = @_;
107
108 my $diff = $old ^ $new
109 or return;
110
111 my @diff = map
112 {
113 $diff & $_
114 ? (($new & $_ ? "+" : "-") . $self->{spell_paths}{$_})
115 : ()
116 }
117 sort { $a <=> $b } keys %{$self->{spell_paths}};
118
119 join "", @diff
120 }
121
122 # all stats that are chacked against changes
123 my @statchange = (
124 [&CS_STAT_STR => \&_stat_numdiff, "Str"],
125 [&CS_STAT_INT => \&_stat_numdiff, "Int"],
126 [&CS_STAT_WIS => \&_stat_numdiff, "Wis"],
127 [&CS_STAT_DEX => \&_stat_numdiff, "Dex"],
128 [&CS_STAT_CON => \&_stat_numdiff, "Con"],
129 [&CS_STAT_CHA => \&_stat_numdiff, "Cha"],
130 [&CS_STAT_POW => \&_stat_numdiff, "Pow"],
131 [&CS_STAT_WC => \&_stat_numdiff, "Wc"],
132 [&CS_STAT_AC => \&_stat_numdiff, "Ac"],
133 [&CS_STAT_DAM => \&_stat_numdiff, "Dam"],
134 [&CS_STAT_SPEED => \&_stat_numdiff, "Speed"],
135 [&CS_STAT_WEAP_SP => \&_stat_numdiff, "WSp"],
136 [&CS_STAT_MAXHP => \&_stat_numdiff, "HP"],
137 [&CS_STAT_MAXSP => \&_stat_numdiff, "Mana"],
138 [&CS_STAT_MAXGRACE => \&_stat_numdiff, "Grace"],
139 [&CS_STAT_WEIGHT_LIM => \&_stat_numdiff, "Weight"],
140 [&CS_STAT_SPELL_ATTUNE => \&_stat_skillmaskdiff, "attuned"],
141 [&CS_STAT_SPELL_REPEL => \&_stat_skillmaskdiff, "repelled"],
142 [&CS_STAT_SPELL_DENY => \&_stat_skillmaskdiff, "denied"],
143 [&CS_STAT_RES_PHYS => \&_stat_numdiff, "phys"],
144 [&CS_STAT_RES_MAG => \&_stat_numdiff, "magic"],
145 [&CS_STAT_RES_FIRE => \&_stat_numdiff, "fire"],
146 [&CS_STAT_RES_ELEC => \&_stat_numdiff, "electricity"],
147 [&CS_STAT_RES_COLD => \&_stat_numdiff, "cold"],
148 [&CS_STAT_RES_CONF => \&_stat_numdiff, "confusion"],
149 [&CS_STAT_RES_ACID => \&_stat_numdiff, "acid"],
150 [&CS_STAT_RES_DRAIN => \&_stat_numdiff, "drain"],
151 [&CS_STAT_RES_GHOSTHIT => \&_stat_numdiff, "ghosthit"],
152 [&CS_STAT_RES_POISON => \&_stat_numdiff, "poison"],
153 [&CS_STAT_RES_SLOW => \&_stat_numdiff, "slow"],
154 [&CS_STAT_RES_PARA => \&_stat_numdiff, "paralyse"],
155 [&CS_STAT_TURN_UNDEAD => \&_stat_numdiff, "turnundead"],
156 [&CS_STAT_RES_FEAR => \&_stat_numdiff, "fear"],
157 [&CS_STAT_RES_DEPLETE => \&_stat_numdiff, "depletion"],
158 [&CS_STAT_RES_DEATH => \&_stat_numdiff, "death"],
159 [&CS_STAT_RES_HOLYWORD => \&_stat_numdiff, "godpower"],
160 [&CS_STAT_RES_BLIND => \&_stat_numdiff, "blind"],
161 );
162
163 sub stats_update {
164 my ($self, $stats) = @_;
165
166 my $prev = $self->{prev_stats} || { };
167
168 if (my @diffs =
169 (
170 ($stats->{+CS_STAT_EXP64} > $prev->{+CS_STAT_EXP64} ? ($stats->{+CS_STAT_EXP64} - $prev->{+CS_STAT_EXP64}) . " experience gained" : ()),
171 map {
172 $stats->{$_} && $prev->{$_}
173 && $stats->{$_}[1] > $prev->{$_}[1] ? "($self->{skill_info}{$_}+" . ($stats->{$_}[1] - $prev->{$_}[1]) . ")" : ()
174 } sort { $a <=> $b } keys %{$self->{skill_info}}
175 )
176 ) {
177 my $msg = join " ", @diffs;
178 $self->{statusbox}->add ($msg, group => "experience $msg", fg => [0.5, 1, 0.5, 0.8], timeout => 5);
179 }
180
181 if (
182 my @diffs = map $_->[1]->($self, $_->[2], $prev->{$_->[0]}, $stats->{$_->[0]}), @statchange
183 ) {
184 my $msg = "<b>stat change</b>: " . (join " ", @diffs);
185 $self->{statusbox}->add ($msg, group => "stat $msg", fg => [0.8, 1, 0.2, 1], timeout => 10);
186 }
187
188 $self->update_stats_window ($stats, $prev);
189
190 $self->{prev_stats} = { %$stats };
191 }
192
193 my %RES_TBL = (
194 phys => CS_STAT_RES_PHYS,
195 magic => CS_STAT_RES_MAG,
196 fire => CS_STAT_RES_FIRE,
197 elec => CS_STAT_RES_ELEC,
198 cold => CS_STAT_RES_COLD,
199 conf => CS_STAT_RES_CONF,
200 acid => CS_STAT_RES_ACID,
201 drain => CS_STAT_RES_DRAIN,
202 ghit => CS_STAT_RES_GHOSTHIT,
203 pois => CS_STAT_RES_POISON,
204 slow => CS_STAT_RES_SLOW,
205 para => CS_STAT_RES_PARA,
206 tund => CS_STAT_TURN_UNDEAD,
207 fear => CS_STAT_RES_FEAR,
208 depl => CS_STAT_RES_DEPLETE,
209 deat => CS_STAT_RES_DEATH,
210 holyw => CS_STAT_RES_HOLYWORD,
211 blind => CS_STAT_RES_BLIND,
212 );
213
214 sub update_stats_window {
215 my ($self, $stats, $prev) = @_;
216
217 # I love text protocols...
218
219 my $hp = $stats->{+CS_STAT_HP} * 1;
220 my $hp_m = $stats->{+CS_STAT_MAXHP} * 1;
221 my $sp = $stats->{+CS_STAT_SP} * 1;
222 my $sp_m = $stats->{+CS_STAT_MAXSP} * 1;
223 my $fo = $stats->{+CS_STAT_FOOD} * 1;
224 my $fo_m = 999;
225 my $gr = $stats->{+CS_STAT_GRACE} * 1;
226 my $gr_m = $stats->{+CS_STAT_MAXGRACE} * 1;
227
228 $::GAUGES->{hp} ->set_value ($hp, $hp_m);
229 $::GAUGES->{mana} ->set_value ($sp, $sp_m);
230 $::GAUGES->{food} ->set_value ($fo, $fo_m);
231 $::GAUGES->{grace} ->set_value ($gr, $gr_m);
232 $::GAUGES->{exp} ->set_text ("Exp: " . (::formsep ($stats->{+CS_STAT_EXP64}))
233 . " (lvl " . ($stats->{+CS_STAT_LEVEL} * 1) . ")");
234 my $rng = $stats->{+CS_STAT_RANGE};
235 $rng =~ s/^Range: //; # thank you so much dear server
236 $::GAUGES->{range} ->set_text ("Rng: " . $rng);
237 my $title = $stats->{+CS_STAT_TITLE};
238 $title =~ s/^Player: //;
239 $::STATWIDS->{title} ->set_text ("Title: " . $title);
240
241 $::STATWIDS->{st_str} ->set_text (sprintf "%d" , $stats->{+CS_STAT_STR});
242 $::STATWIDS->{st_dex} ->set_text (sprintf "%d" , $stats->{+CS_STAT_DEX});
243 $::STATWIDS->{st_con} ->set_text (sprintf "%d" , $stats->{+CS_STAT_CON});
244 $::STATWIDS->{st_int} ->set_text (sprintf "%d" , $stats->{+CS_STAT_INT});
245 $::STATWIDS->{st_wis} ->set_text (sprintf "%d" , $stats->{+CS_STAT_WIS});
246 $::STATWIDS->{st_pow} ->set_text (sprintf "%d" , $stats->{+CS_STAT_POW});
247 $::STATWIDS->{st_cha} ->set_text (sprintf "%d" , $stats->{+CS_STAT_CHA});
248 $::STATWIDS->{st_wc} ->set_text (sprintf "%d" , $stats->{+CS_STAT_WC});
249 $::STATWIDS->{st_ac} ->set_text (sprintf "%d" , $stats->{+CS_STAT_AC});
250 $::STATWIDS->{st_dam} ->set_text (sprintf "%d" , $stats->{+CS_STAT_DAM});
251 $::STATWIDS->{st_arm} ->set_text (sprintf "%d" , $stats->{+CS_STAT_RES_PHYS});
252 $::STATWIDS->{st_spd} ->set_text (sprintf "%.1f", $stats->{+CS_STAT_SPEED});
253 $::STATWIDS->{st_wspd}->set_text (sprintf "%.1f", $stats->{+CS_STAT_WEAP_SP});
254
255 $self->update_weight;
256
257 $::STATWIDS->{"res_$_"}->set_text (sprintf "%d%", $stats->{$RES_TBL{$_}})
258 for keys %RES_TBL;
259
260 my $sktbl = $::STATWIDS->{skill_tbl};
261 my @skills = keys %{ $self->{skill_info} };
262
263 if (grep +(exists $stats->{$_}) != (exists $prev->{$_}), @skills) {
264 $sktbl->clear;
265
266 $sktbl->add (0, 0, new CFPlus::UI::Label text => "Experience", align => 1);
267 $sktbl->add (1, 0, new CFPlus::UI::Label text => "Lvl.", align => 1);
268 $sktbl->add (2, 0, new CFPlus::UI::Label text => "Skill", expand => 1);
269 $sktbl->add (3, 0, new CFPlus::UI::Label text => "Experience", align => 1);
270 $sktbl->add (4, 0, new CFPlus::UI::Label text => "Lvl.", align => 1);
271 $sktbl->add (5, 0, new CFPlus::UI::Label text => "Skill", expand => 1);
272
273 my $TOOLTIP_ALL = "\n\n<small>Left click - ready skill\nMiddle click - use spell\nRight click - further options</small>";
274
275 my @TOOLTIP_LVL = (tooltip => "<b>Level</b>. The level of the skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1);
276 my @TOOLTIP_EXP = (tooltip => "<b>Experience</b>. The experience points you have in this skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1);
277
278 my ($x, $y) = (0, 1);
279 for (
280 sort { $stats->{$b->[0]}[1] <=> $stats->{$a->[0]}[1] or $a->[1] cmp $b->[1] }
281 map [$_, $self->{skill_info}{$_}],
282 grep exists $stats->{$_},
283 @skills
284 ) {
285 my ($idx, $name) = @$_;
286
287 my $spell_cb = sub {
288 my ($widget, $ev) = @_;
289
290 if ($ev->{button} == 1) {
291 $::CONN->user_send ("ready_skill $name");
292 } elsif ($ev->{button} == 2) {
293 $::CONN->user_send ("use_skill $name");
294 } elsif ($ev->{button} == 3) {
295 my $shortname = CFPlus::shorten $name, 14;
296 (new CFPlus::UI::Menu
297 items => [
298 ["bind <i>ready_skill $shortname</i> to a key" => sub { CFPlus::Macro::quick_macro ["ready_skill $name"] }],
299 ["bind <i>use_skill $shortname</i> to a key" => sub { CFPlus::Macro::quick_macro ["use_skill $name"] }],
300 ],
301 )->popup ($ev);
302 } else {
303 return 0;
304 }
305
306 1
307 };
308
309 $sktbl->add ($x * 3 + 0, $y, $self->{stat_widget_exp}{$idx} = new CFPlus::UI::Label
310 text => "0", align => 1, font => $::FONT_FIXED, fg => [1, 1, 0], on_button_down => $spell_cb, @TOOLTIP_EXP);
311 $sktbl->add ($x * 3 + 1, $y, $self->{stat_widget_lvl}{$idx} = new CFPlus::UI::Label
312 text => "0", align => 1, font => $::FONT_FIXED, fg => [0, 1, 0], padding_x => 4, on_button_down => $spell_cb, @TOOLTIP_LVL);
313 $sktbl->add ($x * 3 + 2, $y, new CFPlus::UI::Label text => $name, on_button_down => $spell_cb,
314 can_events => 1, can_hover => 1, tooltip => (CFPlus::Pod::section_label skill_description => $name) . $TOOLTIP_ALL);
315
316 $x++ and ($x, $y) = (0, $y + 1);
317 }
318 }
319
320 for (grep exists $stats->{$_}, @skills) {
321 $self->{stat_widget_exp}{$_}->set_text (::formsep ($stats->{$_}[1]));
322 $self->{stat_widget_lvl}{$_}->set_text ($stats->{$_}[0] * 1);
323 }
324 }
325
326 sub macro_send {
327 my ($self, $macro) = @_;
328
329 for my $cmd (@{ $macro->{action} }) {
330 $self->send_command ($cmd);
331 }
332 }
333
334 sub user_send {
335 my ($self, $command) = @_;
336
337 $self->{record}->($command)
338 if $self->{record};
339
340 $self->logprint ("send: ", $command);
341 $self->send_command ($command);
342 ::status ($command);
343 }
344
345 sub record {
346 my ($self, $cb) = @_;
347
348 $self->{record} = $cb;
349 }
350
351 sub map_scroll {
352 my ($self, $dx, $dy) = @_;
353
354 $self->{map}->scroll ($dx, $dy);
355 }
356
357 sub feed_map1a {
358 my ($self, $data) = @_;
359
360 $self->{map}->map1a_update ($data, $self->{setup}{extmap});
361 $self->{map_widget}->update;
362 }
363
364 sub magicmap {
365 my ($self, $w, $h, $x, $y, $data) = @_;
366
367 $self->{map_widget}->set_magicmap ($w, $h, $x, $y, $data);
368 }
369
370 sub flush_map {
371 my ($self) = @_;
372
373 my $map_info = delete $self->{map_info}
374 or return;
375
376 my ($hash, $x, $y, $w, $h) = @$map_info;
377
378 my $data = $self->{map}->get_rect ($x, $y, $w, $h);
379 $self->{mapcache}->put ($hash => Compress::LZF::compress $data);
380 #warn sprintf "SAVEmap[%s] length %d\n", $hash, length $data;#d#
381 }
382
383 sub map_clear {
384 my ($self) = @_;
385
386 $self->flush_map;
387 delete $self->{neigh_map};
388
389 $self->{map}->clear;
390 delete $self->{map_widget}{magicmap};
391 }
392
393
394 sub load_map($$$) {
395 my ($self, $hash, $x, $y) = @_;
396
397 if (defined (my $data = $self->{mapcache}->get ($hash))) {
398 $data = Compress::LZF::decompress $data;
399 #warn sprintf "LOADmap[%s,%d,%d] length %d\n", $hash, $x, $y, length $data;#d#
400 for my $id ($self->{map}->set_rect ($x, $y, $data)) {
401 my $data = $self->{tilecache}->get ($id)
402 or next;
403
404 $self->set_texture ($id => $data);
405 }
406 }
407 }
408
409 # hardcode /world/world_xxx_xxx map names, the savings are enourmous,
410 # (server resource,s latency, bandwidth), so this hack is warranted.
411 # the right fix is to make real tiled maps with an overview file
412 sub send_mapinfo {
413 my ($self, $data, $cb) = @_;
414
415 if ($self->{map_info}[0] =~ m%^/world/world_(\d\d\d)_(\d\d\d)$%) {
416 my ($wx, $wy) = ($1, $2);
417
418 if ($data =~ /^spatial ([1-4]+)$/) {
419 my @dx = (0, 0, 1, 0, -1);
420 my @dy = (0, -1, 0, 1, 0);
421 my ($dx, $dy);
422
423 for (split //, $1) {
424 $dx += $dx[$_];
425 $dy += $dy[$_];
426 }
427
428 $cb->(spatial => 15,
429 $self->{map_info}[1] - $self->{map}->ox + $dx * 50,
430 $self->{map_info}[2] - $self->{map}->oy + $dy * 50,
431 50, 50,
432 sprintf "/world/world_%03d_%03d", $wx + $dx, $wy + $dy
433 );
434
435 return;
436 }
437 }
438
439 $self->SUPER::send_mapinfo ($data, $cb);
440 }
441
442 # this method does a "flood fill" into every tile direction
443 # it assumes that tiles are arranged in a rectangular grid,
444 # i.e. a map is the same as the left of the right map etc.
445 # failure to comply are harmless and result in display errors
446 # at worst.
447 sub flood_fill {
448 my ($self, $block, $gx, $gy, $path, $hash, $flags) = @_;
449
450 # the server does not allow map paths > 6
451 return if 7 <= length $path;
452
453 my ($x0, $y0, $x1, $y1) = @{$self->{neigh_rect}};
454
455 for (
456 [1, 3, 0, -1],
457 [2, 4, 1, 0],
458 [3, 1, 0, 1],
459 [4, 2, -1, 0],
460 ) {
461 my ($tile, $tile2, $dx, $dy) = @$_;
462
463 next if $block & (1 << $tile);
464 my $block = $block | (1 << $tile2);
465
466 my $gx = $gx + $dx;
467 my $gy = $gy + $dy;
468
469 next unless $flags & (1 << ($tile - 1));
470 next if $self->{neigh_grid}{$gx, $gy}++;
471
472 my $neigh = $self->{neigh_map}{$hash} ||= [];
473 if (my $info = $neigh->[$tile]) {
474 my ($flags, $x, $y, $w, $h, $hash) = @$info;
475
476 $self->flood_fill ($block, $gx, $gy, "$path$tile", $hash, $flags)
477 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
478
479 } else {
480 $self->send_mapinfo ("spatial $path$tile", sub {
481 my ($mode, $flags, $x, $y, $w, $h, $hash) = @_;
482
483 return if $mode ne "spatial";
484
485 $x += $self->{map}->ox;
486 $y += $self->{map}->oy;
487
488 $self->load_map ($hash, $x, $y)
489 unless $self->{neigh_map}{$hash}[5]++;#d#
490
491 $neigh->[$tile] = [$flags, $x, $y, $w, $h, $hash];
492
493 $self->flood_fill ($block, $gx, $gy, "$path$tile", $hash, $flags)
494 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
495 });
496 }
497 }
498 }
499
500 sub map_change {
501 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
502
503 $self->flush_map;
504
505 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
506
507 my $mapmapw = $self->{mapmap}->{w};
508 my $mapmaph = $self->{mapmap}->{h};
509
510 $self->{neigh_rect} = [
511 $ox - $mapmapw * 0.5, $oy - $mapmapw * 0.5,
512 $ox + $mapmapw * 0.5 + $w, $oy + $mapmapw * 0.5 + $h,
513 ];
514
515 delete $self->{neigh_grid};
516
517 $x += $ox;
518 $y += $oy;
519
520 $self->{map_info} = [$hash, $x, $y, $w, $h];
521
522 (my $map = $hash) =~ s/^.*?\/([^\/]+)$/\1/;
523 $::STATWIDS->{map}->set_text ("Map: " . $map);
524
525 $self->load_map ($hash, $x, $y);
526 $self->flood_fill (0, 0, 0, "", $hash, $flags);
527 }
528
529 sub face_find {
530 my ($self, $facenum, $face) = @_;
531
532 my $hash = "$face->{chksum},$face->{name}";
533
534 my $id = $self->{facemap}->get ($hash);
535
536 unless ($id) {
537 # create new id for face
538 # I love transactions
539 for (1..100) {
540 my $txn = $CFPlus::DB_ENV->txn_begin;
541 my $status = $self->{facemap}->db_get (id => $id);
542 if ($status == 0 || $status == BerkeleyDB::DB_NOTFOUND) {
543 $id = ($id || 64) + 1;
544 if ($self->{facemap}->put (id => $id) == 0
545 && $self->{facemap}->put ($hash => $id) == 0) {
546 $txn->txn_commit;
547
548 goto gotid;
549 }
550 }
551 $txn->txn_abort;
552 }
553
554 CFPlus::fatal "maximum number of transaction retries reached - database problems?";
555 }
556
557 gotid:
558 $face->{id} = $id;
559 $self->{map}->set_face ($facenum => $id);
560 $self->{faceid}[$facenum] = $id;#d#
561
562 my $face = $self->{tilecache}->get ($id);
563
564 if ($face) {
565 #$self->face_prefetch;
566 $face
567 } else {
568 my $tex = $self->{noface};
569 $self->{map}->set_texture ($id, @$tex{qw(name w h s t)}, @{$tex->{minified}});
570 undef
571 };
572 }
573
574 sub face_update {
575 my ($self, $facenum, $face, $changed) = @_;
576
577 $self->{tilecache}->put ($face->{id} => $face->{image}) if $changed;
578
579 $self->set_texture ($face->{id} => delete $face->{image});
580 }
581
582 sub set_texture {
583 my ($self, $id, $data) = @_;
584
585 $self->{texture}[$id] ||= do {
586 my $tex =
587 new_from_image CFPlus::Texture
588 $data, minify => 1, mipmap => 1;
589
590 $self->{map}->set_texture ($id, @$tex{qw(name w h s t)}, @{$tex->{minified}});
591 $self->{map_widget}->update;
592
593 $tex
594 };
595 }
596
597 sub sound_play {
598 my ($self, $x, $y, $soundnum, $type) = @_;
599
600 $self->{sound_play}->($x, $y, $soundnum, $type);
601 }
602
603 my $LAST_QUERY; # server is stupid, stupid, stupid
604
605 sub query {
606 my ($self, $flags, $prompt) = @_;
607
608 $prompt = $LAST_QUERY unless length $prompt;
609 $LAST_QUERY = $prompt;
610
611 $self->{query}-> ($self, $flags, $prompt);
612 }
613
614 sub drawinfo {
615 my ($self, $color, $text) = @_;
616
617 my @color = (
618 [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00],
619 [1.00, 1.00, 1.00],
620 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55]
621 [1.00, 0.00, 0.00],
622 [1.00, 0.54, 0.00],
623 [0.11, 0.56, 1.00],
624 [0.93, 0.46, 0.00],
625 [0.18, 0.54, 0.34],
626 [0.56, 0.73, 0.56],
627 [0.80, 0.80, 0.80],
628 [0.75, 0.61, 0.20],
629 [0.99, 0.77, 0.26],
630 [0.74, 0.65, 0.41],
631 );
632
633 my $fg = $color[$color % @color];
634
635 $self->logprint ("info: ", $text);
636
637 # try to create single paragraphs of multiple lines sent by the server
638 $text =~ s/(?<=\S)\n(?=\w)/ /g;
639
640 $text = CFPlus::asxml $text;
641 $text =~ s/\[b\](.*?)\[\/b\]/<b>\1<\/b>/g;
642 $text =~ s/\[color=(.*?)\](.*?)\[\/color\]/<span foreground='\1'>\2<\/span>/g;
643
644 ::message ({ fg => $fg, markup => $_ })
645 for split /\n/, $text;
646
647 $self->{statusbox}->add ($text,
648 group => $text,
649 fg => $fg,
650 timeout => $color >= 2 ? 180 : 10,
651 tooltip_font => $::FONT_FIXED,
652 );
653 }
654
655 sub drawextinfo {
656 my ($self, $color, $type, $subtype, $message) = @_;
657
658 $self->drawinfo ($color, $message);
659 }
660
661 sub spell_add {
662 my ($self, $spell) = @_;
663
664 # try to create single paragraphs out of the multiple lines sent by the server
665 $spell->{message} =~ s/(?<=\S)\n(?=\w)/ /g;
666 $spell->{message} =~ s/\n+$//;
667 $spell->{message} ||= "Server did not provide a description for this spell.";
668
669 $::SPELL_LIST->add_spell ($spell);
670
671 $self->{map_widget}->add_command ("invoke $spell->{name}", CFPlus::asxml $spell->{message});
672 $self->{map_widget}->add_command ("cast $spell->{name}", CFPlus::asxml $spell->{message});
673 }
674
675 sub spell_delete {
676 my ($self, $spell) = @_;
677
678 $::SPELL_LIST->remove_spell ($spell);
679 }
680
681 sub setup {
682 my ($self, $setup) = @_;
683
684 $::MAP->resize ($self->{mapw}, $self->{maph});
685 }
686
687 sub addme_success {
688 my ($self) = @_;
689
690 my %skill_help;
691
692 for my $node (CFPlus::Pod::find skill_description => "*") {
693 my (undef, @par) = CFPlus::Pod::section_of $node;
694 $skill_help{$node->{kw}[0]} = CFPlus::Pod::as_label @par;
695 };
696
697 for my $skill (values %{$self->{skill_info}}) {
698 $self->{map_widget}->add_command ("ready_skill $skill",
699 (CFPlus::asxml "Ready the skill '$skill'\n\n")
700 . $skill_help{$skill});
701 $self->{map_widget}->add_command ("use_skill $skill",
702 (CFPlus::asxml "Immediately use the skill '$skill'\n\n")
703 . $skill_help{$skill});
704 }
705 }
706
707 sub eof {
708 my ($self) = @_;
709
710 $self->{map_widget}->clr_commands;
711
712 ::stop_game ();
713 }
714
715 sub image_info {
716 my ($self, $numfaces) = @_;
717
718 $self->{num_faces} = $numfaces;
719 $self->{face_prefetch} = [1 .. $numfaces];
720 $self->face_prefetch;
721 }
722
723 sub face_prefetch {
724 my ($self) = @_;
725
726 return unless $::CFG->{face_prefetch};
727
728 if ($self->{num_faces}) {
729 return if @{ $self->{send_queue} || [] };
730 my $todo = @{ $self->{face_prefetch} }
731 or return;
732
733 my ($face) = splice @{ $self->{face_prefetch} }, + rand @{ $self->{face_prefetch} }, 1, ();
734
735 $self->send ("requestinfo image_sums $face $face");
736
737 $self->{statusbox}->add (CFPlus::asxml "prefetching $todo",
738 group => "prefetch", timeout => 3, fg => [1, 1, 0, 0.5]);
739 } elsif (!exists $self->{num_faces}) {
740 $self->send ("requestinfo image_info");
741
742 $self->{num_faces} = 0;
743
744 $self->{statusbox}->add (CFPlus::asxml "starting to prefetch",
745 group => "prefetch", timeout => 3, fg => [1, 1, 0, 0.5]);
746 }
747 }
748
749 sub update_floorbox {
750 $CFPlus::UI::ROOT->on_refresh ($::FLOORBOX => sub {
751 return unless $::CONN;
752
753 $::FLOORBOX->clear;
754
755 my $row;
756 for (sort { $a->{count} <=> $b->{count} } values %{ $::CONN->{container}{$::CONN->{open_container} || 0} }) {
757 if ($row < 6) {
758 local $_->{face_widget}; # hack to force recreation of widget
759 local $_->{desc_widget}; # hack to force recreation of widget
760 CFPlus::Item::update_widgets $_;
761
762 $::FLOORBOX->add (0, $row, $_->{face_widget});
763 $::FLOORBOX->add (1, $row, $_->{desc_widget});
764
765 $row++;
766 } else {
767 $::FLOORBOX->add (1, $row, new CFPlus::UI::Button
768 text => "More...",
769 on_activate => sub { ::toggle_player_page ($::INVENTORY_PAGE); 0 },
770 );
771 last;
772 }
773 }
774 if ($::CONN->{open_container}) {
775 $::FLOORBOX->add (1, $row++, new CFPlus::UI::Button
776 text => "Close container",
777 on_activate => sub { $::CONN->send ("apply $::CONN->{open_container}") }
778 );
779 }
780 });
781
782 $::WANT_REFRESH++;
783 }
784
785 sub set_opencont {
786 my ($conn, $tag, $name) = @_;
787 $conn->{open_container} = $tag;
788 update_floorbox;
789
790 $::INV_RIGHT_HB->clear ();
791 $::INV_RIGHT_HB->add (new CFPlus::UI::Label align => 0, expand => 1, text => $name);
792
793 if ($tag != 0) { # Floor isn't closable, is it?
794 $::INV_RIGHT_HB->add (new CFPlus::UI::Button
795 text => "Close container",
796 tooltip => "Close the currently open container (if one is open)",
797 on_activate => sub {
798 $::CONN->send ("apply $tag") # $::CONN->{open_container}")
799 if $tag != 0;
800 #if $CONN->{open_container} != 0;
801 0
802 },
803 );
804 }
805
806 $::INVR->set_items ($conn->{container}{$tag});
807 }
808
809 sub update_containers {
810 my ($self) = @_;
811
812 $CFPlus::UI::ROOT->on_refresh ("update_containers_$self" => sub {
813 my $todo = delete $self->{update_container}
814 or return;
815
816 for my $tag (keys %$todo) {
817 update_floorbox if $tag == 0 or $tag == $self->{open_container};
818 if ($tag == 0) {
819 $::INVR->set_items ($self->{container}{0})
820 if $tag == $self->{open_container};
821 } elsif ($tag == $self->{player}{tag}) {
822 $::INV->set_items ($self->{container}{$tag})
823 } else {
824 $::INVR->set_items ($self->{container}{$tag})
825 if $tag == $self->{open_container};
826 }
827 }
828 });
829 }
830
831 sub container_add {
832 my ($self, $tag, $items) = @_;
833
834 $self->{update_container}{$tag}++;
835 $self->update_containers;
836 }
837
838 sub container_clear {
839 my ($self, $tag) = @_;
840
841 $self->{update_container}{$tag}++;
842 $self->update_containers;
843 }
844
845 sub item_delete {
846 my ($self, @items) = @_;
847
848 $self->{update_container}{$_->{container}}++
849 for @items;
850
851 $self->update_containers;
852 }
853
854 sub item_update {
855 my ($self, $item) = @_;
856
857 #d# print "item_update: $item->{tag} in $item->{container} ($self->{player}{tag}) ($::CONN->{open_container})\n";
858
859 CFPlus::Item::update_widgets $item;
860
861 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) {
862 set_opencont ($::CONN, 0, "Floor");
863
864 } elsif ($item->{flags} & F_OPEN) {
865 set_opencont ($::CONN, $item->{tag}, CFPlus::Item::desc_string $item);
866
867 } else {
868 $self->{update_container}{$item->{container}}++;
869 $self->update_containers;
870 }
871 }
872
873 sub player_update {
874 my ($self, $player) = @_;
875
876 $self->update_weight;
877 }
878
879 sub update_weight {
880 my ($self) = @_;
881
882 my $weight = .001 * $self->{player}{weight};
883 my $limit = .001 * $self->{stat}{+CS_STAT_WEIGHT_LIM};
884
885 $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $weight);
886 $::STATWIDS->{m_weight}->set_text (sprintf "%.1fkg", $limit);
887 $::STATWIDS->{i_weight}->set_text (sprintf "%.1f/%.1fkg", $weight, $limit);
888 }
889
890 sub update_server_info {
891 my ($self) = @_;
892
893 my @yesno = ("<span foreground='red'>no</span>", "<span foreground='green'>yes</span>");
894
895 $::SERVER_INFO->set_markup (
896 "server <tt>$self->{host}:$self->{port}</tt>\n"
897 . "protocol version <tt>$self->{version}</tt>\n"
898 . "minimap support $yesno[$self->{setup}{mapinfocmd} > 0]\n"
899 . "extended command support $yesno[$self->{setup}{extcmd} > 0]\n"
900 . "editing support $yesno[!!$self->{editor_support}]\n"
901 . "map attributes $yesno[$self->{setup}{extmap} > 0]\n"
902 . "cfplus support $yesno[$self->{cfplus_ext} > 0]"
903 . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n"
904 . "map size $self->{mapw}×$self->{maph}\n"
905 );
906
907 ::setup_build_button ($self->{editor_support}->{builder_ui});
908 }
909
910 sub logged_in {
911 my ($self) = @_;
912
913 $self->send_ext_req (cfplus_support => version => 1, sub {
914 $self->{cfplus_ext} = $_[0]{version};
915 $self->update_server_info;
916
917 if ($self->{cfplus_ext} >= 2) {
918 $self->send_ext_req ("editor_support", sub {
919 $self->{editor_support} = $_[0];
920 $self->update_server_info;
921
922 0
923 });
924 }
925
926 0
927 });
928
929 $self->update_server_info;
930
931 $self->send_command ("output-sync $::CFG->{output_sync}");
932 $self->send_command ("output-count $::CFG->{output_count}");
933 $self->send_command ("pickup $::CFG->{pickup}");
934 }
935
936 sub buildat {
937 my ($self, $builditem, $x, $y) = @_;
938
939 if ($self->{cfplus_ext}) {
940 $self->send_ext_msg (builder_build => dx => $x, dy => $y, (ref ($builditem) eq 'HASH') ? %$builditem : (item => $builditem));
941 }
942 }
943
944 sub lookat {
945 my ($self, $x, $y) = @_;
946
947 if ($self->{cfplus_ext}) {
948 $self->send_ext_req (lookat => dx => $x, dy => $y, sub {
949 my ($msg) = @_;
950
951 if (exists $msg->{npc_dialog}) {
952 # start npc chat dialog
953 $self->{npc_dialog} = new CFPlus::NPCDialog::
954 dx => $x,
955 dy => $y,
956 title => "$msg->{npc_dialog} (NPC)",
957 conn => $self,
958 ;
959 }
960 });
961 }
962
963 $self->send ("lookat $x $y");
964 }
965
966 sub destroy {
967 my ($self) = @_;
968
969 (delete $self->{npc_dialog})->destroy
970 if $self->{npc_dialog};
971
972 $self->SUPER::destroy;
973 }
974
975 package CFPlus::NPCDialog;
976
977 our @ISA = 'CFPlus::UI::Toplevel';
978
979 sub new {
980 my $class = shift;
981
982 my $self = $class->SUPER::new (
983 x => 'center',
984 y => 'center',
985 name => "npc_dialog",
986 force_w => $::WIDTH * 0.7,
987 force_h => $::HEIGHT * 0.7,
988 title => "NPC Dialog",
989 kw => { hi => 0, yes => 0, no => 0 },
990 has_close_button => 1,
991 @_,
992 );
993
994 CFPlus::weaken (my $this = $self);
995
996 $self->connect (delete => sub { $this->destroy; 1 });
997
998 # better use a pane...
999 $self->add (my $hbox = new CFPlus::UI::HBox);
1000 $hbox->add ($self->{textview} = new CFPlus::UI::TextScroller expand => 1);
1001
1002 $hbox->add (my $vbox = new CFPlus::UI::VBox);
1003
1004 $vbox->add (new CFPlus::UI::Label text => "Message Entry:");
1005 $vbox->add ($self->{entry} = new CFPlus::UI::Entry
1006 tooltip => "#npc_message_entry",
1007 on_activate => sub {
1008 my ($entry, $text) = @_;
1009
1010 return unless $text =~ /\S/;
1011
1012 $entry->set_text ("");
1013 $this->send ($text);
1014
1015 0
1016 },
1017 );
1018
1019 $vbox->add ($self->{options} = new CFPlus::UI::VBox);
1020
1021 $self->{bye_button} = new CFPlus::UI::Button
1022 text => "Bye (close)",
1023 tooltip => "Use this button to end talking to the NPC. This also closes the dialog window.",
1024 on_activate => sub { $this->destroy; 1 },
1025 ;
1026
1027 $self->update_options;
1028
1029 $self->{id} = $self->{conn}->send_ext_req (
1030 npc_dialog_begin => dx => $self->{dx}, dy => $self->{dy},
1031 sub { $this && $this->feed (@_) }
1032 );
1033
1034 $self->{entry}->grab_focus;
1035
1036 $self->{textview}->add_paragraph ({
1037 fg => [1, 1, 0, 1],
1038 markup => "<small>[starting conversation with <b>$self->{title}</b>]</small>\n\n",
1039 });
1040
1041 $self->show;
1042 $self
1043 };
1044
1045 sub update_options {
1046 my ($self) = @_;
1047
1048 CFPlus::weaken $self;
1049
1050 $self->{options}->clear;
1051 $self->{options}->add ($self->{bye_button});
1052
1053 for my $kw (sort keys %{ $self->{kw} }) {
1054 $self->{options}->add (new CFPlus::UI::Button
1055 text => $kw,
1056 on_activate => sub {
1057 $self->send ($kw);
1058 0
1059 },
1060 );
1061 }
1062 }
1063
1064 sub feed {
1065 my ($self, $msg) = @_;
1066
1067 CFPlus::weaken $self;
1068
1069 if ($msg->{msgtype} eq "reply") {
1070 $self->{kw}{$_} = 1 for @{$msg->{add_topics} || []};
1071 $self->{kw}{$_} = 0 for @{$msg->{del_topics} || []};
1072
1073 my $text = "\n" . CFPlus::asxml $msg->{msg};
1074 my $match = join "|", map "\\b\Q$_\E\\b", sort { (length $b) <=> (length $a) } keys %{ $self->{kw} };
1075 my @link;
1076 $text =~ s{
1077 ($match)
1078 }{
1079 my $kw = $1;
1080
1081 push @link, new CFPlus::UI::Label
1082 markup => "<span foreground='#c0c0ff' underline='single'>$kw</span>",
1083 can_hover => 1,
1084 can_events => 1,
1085 padding_x => 0,
1086 padding_y => 0,
1087 on_button_up => sub {
1088 $self->send ($kw);
1089 };
1090
1091 "\x{fffc}"
1092 }giex;
1093
1094 $self->{textview}->add_paragraph ({ markup => $text, widget => \@link });
1095 $self->{textview}->scroll_to_bottom;
1096 $self->update_options;
1097 } else {
1098 $self->destroy;
1099 }
1100
1101 1
1102 }
1103
1104 sub send {
1105 my ($self, $msg) = @_;
1106
1107 $self->{textview}->add_paragraph ({ markup => "\n" . CFPlus::asxml $msg });
1108 $self->{textview}->scroll_to_bottom;
1109
1110 $self->{conn}->send_ext_msg (npc_dialog_tell => msgid => $self->{id}, msg => $msg);
1111 }
1112
1113 sub destroy {
1114 my ($self) = @_;
1115
1116 #Carp::cluck "debug\n";#d# #todo# enable: destroy gets called twice because scalar keys {} is 1
1117
1118 if ($self->{conn}) {
1119 $self->{conn}->send_ext_msg (npc_dialog_end => msgid => $self->{id}) if $self->{id};
1120 delete $self->{conn}{npc_dialog};
1121 $self->{conn}->disconnect_ext ($self->{id});
1122 }
1123
1124 $self->SUPER::destroy;
1125 }
1126
1127 1
1128