ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/Protocol.pm
Revision: 1.91
Committed: Sat Dec 9 02:21:25 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.90: +16 -11 lines
Log Message:
- slightly cleaned up and "outsourced" components
- completely rewrote keybind bindings
  - not functional yet
  - buggy a shell
  - hits perlbug

File Contents

# User Rev Content
1 root 1.69 package CFPlus::Protocol;
2 root 1.1
3     use utf8;
4     use strict;
5    
6 root 1.2 use Crossfire::Protocol::Constants;
7    
8 root 1.69 use CFPlus;
9     use CFPlus::UI;
10     use CFPlus::Pod;
11 root 1.91 use CFPlus::Macro;
12     use CFPlus::Item;
13 root 1.1
14 root 1.87 use Crossfire::Protocol::Base 0.95;
15    
16 root 1.1 use base 'Crossfire::Protocol::Base';
17    
18     sub new {
19     my $class = shift;
20    
21 root 1.82 my $self = $class->SUPER::new (@_, setup_req => { extmap => 1 });
22 root 1.1
23     $self->{map_widget}->clr_commands;
24    
25 root 1.72 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 root 1.74 } sort { $a->{par} <=> $b->{par} }
43 root 1.77 CFPlus::Pod::find command => "*";
44 root 1.1
45 root 1.72 $self->{map_widget}->add_command (@$_)
46     for @cmd_help;
47 root 1.1
48 root 1.69 $self->{noface} = new_from_file CFPlus::Texture
49     CFPlus::find_rcfile "noface.png", minify => 1, mipmap => 1;
50 root 1.1
51 root 1.83 {
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 root 1.1 $self->{open_container} = 0;
58    
59     # "global"
60 root 1.79 $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 root 1.1
65     # per server
66 root 1.79 $self->{mapcache} = CFPlus::db_table "mapcache_$self->{host}_$self->{port}"
67     or die "mapcache_$self->{host}_$self->{port}: unable to open database table";
68 root 1.1
69     $self
70     }
71    
72 elmex 1.34 sub logprint {
73     my ($self, @a) = @_;
74    
75 root 1.59 $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 elmex 1.34
81 root 1.59 $fh->autoflush (1);
82    
83     $fh;
84     };
85 elmex 1.34
86 root 1.59 my ($sec, $min, $hour, $mday, $mon, $year) = localtime time;
87 elmex 1.34
88     my $ts = sprintf "%04d-%02d-%02d %02d:%02d:%02d",
89     $year + 1900, $mon + 1, $mday, $hour, $min, $sec;
90    
91 root 1.59 print {$self->{log_fh}} "$ts ", @a, "\n";
92 elmex 1.34 }
93    
94 root 1.52 sub _stat_numdiff {
95 root 1.54 my ($self, $name, $old, $new) = @_;
96 root 1.52
97     my $diff = $new - $old;
98 root 1.54
99     $diff = 0.01 * int $diff * 100;
100    
101     0.1 >= abs $diff ? ()
102     : $diff < 0 ? "$name$diff" : "$name+$diff"
103 root 1.52 }
104    
105     sub _stat_skillmaskdiff {
106 root 1.54 my ($self, $name, $old, $new) = @_;
107 root 1.52
108 root 1.54 my $diff = $old ^ $new
109     or return;
110 root 1.52
111 root 1.53 my @diff = map
112     {
113     $diff & $_
114     ? (($new & $_ ? "+" : "-") . $self->{spell_paths}{$_})
115     : ()
116     }
117     sort { $a <=> $b } keys %{$self->{spell_paths}};
118 root 1.52
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 root 1.1 sub stats_update {
164     my ($self, $stats) = @_;
165    
166 root 1.59 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 root 1.52
219 root 1.59 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 root 1.64 $self->update_weight;
256 root 1.59
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 root 1.69 $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 root 1.59
273 elmex 1.68 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 root 1.65 my ($x, $y) = (0, 1);
279 root 1.59 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 root 1.52 ) {
285 root 1.59 my ($idx, $name) = @$_;
286    
287 elmex 1.68 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 root 1.90 my $shortname = CFPlus::shorten $name, 14;
296 root 1.69 (new CFPlus::UI::Menu
297 elmex 1.68 items => [
298 root 1.91 ["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 elmex 1.68 ],
301     )->popup ($ev);
302     } else {
303     return 0;
304     }
305    
306     1
307     };
308    
309 root 1.69 $sktbl->add ($x * 3 + 0, $y, $self->{stat_widget_exp}{$idx} = new CFPlus::UI::Label
310 elmex 1.68 text => "0", align => 1, font => $::FONT_FIXED, fg => [1, 1, 0], on_button_down => $spell_cb, @TOOLTIP_EXP);
311 root 1.69 $sktbl->add ($x * 3 + 1, $y, $self->{stat_widget_lvl}{$idx} = new CFPlus::UI::Label
312 elmex 1.68 text => "0", align => 1, font => $::FONT_FIXED, fg => [0, 1, 0], padding_x => 4, on_button_down => $spell_cb, @TOOLTIP_LVL);
313 root 1.74 $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 root 1.59
316     $x++ and ($x, $y) = (0, $y + 1);
317 root 1.52 }
318 root 1.1 }
319    
320 root 1.59 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 root 1.1 }
325    
326 root 1.91 sub macro_send {
327     my ($self, $macro) = @_;
328    
329     for my $cmd (@{ $macro->{action} }) {
330     $self->send_command ($cmd);
331     }
332     }
333    
334 root 1.1 sub user_send {
335     my ($self, $command) = @_;
336    
337 root 1.91 $self->{record}->($command)
338 root 1.87 if $self->{record};
339 elmex 1.9
340 elmex 1.34 $self->logprint ("send: ", $command);
341 root 1.1 $self->send_command ($command);
342 root 1.45 ::status ($command);
343 root 1.1 }
344    
345 root 1.91 sub record {
346     my ($self, $cb) = @_;
347 elmex 1.9
348 root 1.91 $self->{record} = $cb;
349 elmex 1.9 }
350    
351 root 1.1 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 root 1.79 $self->{map}->map1a_update ($data, $self->{setup}{extmap});
361 root 1.1 $self->{map_widget}->update;
362     }
363    
364 root 1.36 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 root 1.1 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 root 1.37 delete $self->{map_widget}{magicmap};
391 root 1.1 }
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 root 1.69 my $txn = $CFPlus::DB_ENV->txn_begin;
541 root 1.15 my $status = $self->{facemap}->db_get (id => $id);
542 root 1.1 if ($status == 0 || $status == BerkeleyDB::DB_NOTFOUND) {
543 root 1.35 $id = ($id || 64) + 1;
544 root 1.1 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 root 1.15 $txn->txn_abort;
552 root 1.1 }
553    
554 root 1.69 CFPlus::fatal "maximum number of transaction retries reached - database problems?";
555 root 1.1 }
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 root 1.58 my ($self, $facenum, $face, $changed) = @_;
576 root 1.1
577 root 1.58 $self->{tilecache}->put ($face->{id} => $face->{image}) if $changed;
578 root 1.1
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 root 1.69 new_from_image CFPlus::Texture
588 root 1.1 $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 root 1.22 $self->{query}-> ($self, $flags, $prompt);
612 root 1.1 }
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 root 1.61 [0.75, 0.61, 0.20],
629 root 1.1 [0.99, 0.77, 0.26],
630     [0.74, 0.65, 0.41],
631     );
632    
633 elmex 1.34 $self->logprint ("info: ", $text);
634    
635 root 1.23 # try to create single paragraphs of multiple lines sent by the server
636 root 1.24 $text =~ s/(?<=\S)\n(?=\w)/ /g;
637 root 1.23
638 root 1.69 $text = CFPlus::asxml $text;
639 root 1.1 $text =~ s/\[b\](.*?)\[\/b\]/<b>\1<\/b>/g;
640     $text =~ s/\[color=(.*?)\](.*?)\[\/color\]/<span foreground='\1'>\2<\/span>/g;
641    
642 root 1.86 ::message ({ fg => $color[$color], markup => $_ })
643     for split /\n/, $text;
644 root 1.1
645 elmex 1.5 $self->{statusbox}->add ($text,
646 root 1.1 group => $text,
647     fg => $color[$color],
648 root 1.71 timeout => $color >= 2 ? 180 : 10,
649 root 1.1 tooltip_font => $::FONT_FIXED,
650     );
651     }
652    
653     sub drawextinfo {
654     my ($self, $color, $type, $subtype, $message) = @_;
655    
656     $self->drawinfo ($color, $message);
657     }
658    
659     sub spell_add {
660     my ($self, $spell) = @_;
661    
662 root 1.66 # try to create single paragraphs out of the multiple lines sent by the server
663 root 1.27 $spell->{message} =~ s/(?<=\S)\n(?=\w)/ /g;
664     $spell->{message} =~ s/\n+$//;
665     $spell->{message} ||= "Server did not provide a description for this spell.";
666    
667 root 1.88 $::SPELL_LIST->add_spell ($spell);
668 elmex 1.14
669 root 1.69 $self->{map_widget}->add_command ("invoke $spell->{name}", CFPlus::asxml $spell->{message});
670     $self->{map_widget}->add_command ("cast $spell->{name}", CFPlus::asxml $spell->{message});
671 root 1.1 }
672    
673     sub spell_delete {
674     my ($self, $spell) = @_;
675 root 1.51
676 root 1.88 $::SPELL_LIST->remove_spell ($spell);
677 root 1.1 }
678    
679 root 1.87 sub setup {
680     my ($self, $setup) = @_;
681    
682     $::MAP->resize ($self->{mapw}, $self->{maph});
683     }
684    
685 root 1.1 sub addme_success {
686     my ($self) = @_;
687    
688 root 1.72 my %skill_help;
689 root 1.21
690 root 1.72 for my $node (CFPlus::Pod::find skill_description => "*") {
691     my (undef, @par) = CFPlus::Pod::section_of $node;
692     $skill_help{$node->{kw}[0]} = CFPlus::Pod::as_label @par;
693 root 1.21 };
694 root 1.72
695 root 1.1 for my $skill (values %{$self->{skill_info}}) {
696     $self->{map_widget}->add_command ("ready_skill $skill",
697 root 1.69 (CFPlus::asxml "Ready the skill '$skill'\n\n")
698 root 1.72 . $skill_help{$skill});
699 root 1.1 $self->{map_widget}->add_command ("use_skill $skill",
700 root 1.69 (CFPlus::asxml "Immediately use the skill '$skill'\n\n")
701 root 1.72 . $skill_help{$skill});
702 root 1.1 }
703     }
704    
705     sub eof {
706     my ($self) = @_;
707    
708     $self->{map_widget}->clr_commands;
709    
710     ::stop_game ();
711     }
712    
713     sub image_info {
714     my ($self, $numfaces) = @_;
715    
716     $self->{num_faces} = $numfaces;
717     $self->{face_prefetch} = [1 .. $numfaces];
718     $self->face_prefetch;
719     }
720    
721     sub face_prefetch {
722     my ($self) = @_;
723    
724     return unless $::CFG->{face_prefetch};
725    
726     if ($self->{num_faces}) {
727     return if @{ $self->{send_queue} || [] };
728     my $todo = @{ $self->{face_prefetch} }
729     or return;
730    
731     my ($face) = splice @{ $self->{face_prefetch} }, + rand @{ $self->{face_prefetch} }, 1, ();
732    
733     $self->send ("requestinfo image_sums $face $face");
734    
735 root 1.69 $self->{statusbox}->add (CFPlus::asxml "prefetching $todo",
736 root 1.19 group => "prefetch", timeout => 3, fg => [1, 1, 0, 0.5]);
737 root 1.1 } elsif (!exists $self->{num_faces}) {
738     $self->send ("requestinfo image_info");
739    
740     $self->{num_faces} = 0;
741    
742 root 1.69 $self->{statusbox}->add (CFPlus::asxml "starting to prefetch",
743 root 1.19 group => "prefetch", timeout => 3, fg => [1, 1, 0, 0.5]);
744 root 1.1 }
745     }
746    
747     sub update_floorbox {
748 root 1.69 $CFPlus::UI::ROOT->on_refresh ($::FLOORBOX => sub {
749 root 1.1 return unless $::CONN;
750 elmex 1.62
751 root 1.1 $::FLOORBOX->clear;
752    
753     my $row;
754 elmex 1.62 for (sort { $a->{count} <=> $b->{count} } values %{ $::CONN->{container}{$::CONN->{open_container} || 0} }) {
755 root 1.25 if ($row < 6) {
756 root 1.1 local $_->{face_widget}; # hack to force recreation of widget
757     local $_->{desc_widget}; # hack to force recreation of widget
758 root 1.69 CFPlus::Item::update_widgets $_;
759 root 1.1
760     $::FLOORBOX->add (0, $row, $_->{face_widget});
761     $::FLOORBOX->add (1, $row, $_->{desc_widget});
762    
763     $row++;
764     } else {
765 root 1.69 $::FLOORBOX->add (1, $row, new CFPlus::UI::Button
766 root 1.30 text => "More...",
767 root 1.51 on_activate => sub { ::toggle_player_page ($::INVENTORY_PAGE); 0 },
768 root 1.25 );
769 root 1.1 last;
770     }
771     }
772 elmex 1.62 if ($::CONN->{open_container}) {
773 root 1.69 $::FLOORBOX->add (1, $row++, new CFPlus::UI::Button
774 elmex 1.62 text => "Close container",
775     on_activate => sub { $::CONN->send ("apply $::CONN->{open_container}") }
776     );
777     }
778 root 1.1 });
779 elmex 1.62
780 root 1.1 $::WANT_REFRESH++;
781     }
782    
783     sub set_opencont {
784     my ($conn, $tag, $name) = @_;
785     $conn->{open_container} = $tag;
786 elmex 1.62 update_floorbox;
787 elmex 1.10
788     $::INV_RIGHT_HB->clear ();
789 root 1.69 $::INV_RIGHT_HB->add (new CFPlus::UI::Label align => 0, expand => 1, text => $name);
790 elmex 1.10
791     if ($tag != 0) { # Floor isn't closable, is it?
792 root 1.69 $::INV_RIGHT_HB->add (new CFPlus::UI::Button
793 elmex 1.10 text => "Close container",
794     tooltip => "Close the currently open container (if one is open)",
795     on_activate => sub {
796     $::CONN->send ("apply $tag") # $::CONN->{open_container}")
797     if $tag != 0;
798     #if $CONN->{open_container} != 0;
799 root 1.38 0
800 elmex 1.10 },
801     );
802     }
803    
804 root 1.1 $::INVR->set_items ($conn->{container}{$tag});
805     }
806    
807 root 1.47 sub update_containers {
808     my ($self) = @_;
809 root 1.1
810 root 1.69 $CFPlus::UI::ROOT->on_refresh ("update_containers_$self" => sub {
811 root 1.55 my $todo = delete $self->{update_container}
812     or return;
813    
814     for my $tag (keys %$todo) {
815 elmex 1.62 update_floorbox if $tag == 0 or $tag == $self->{open_container};
816 root 1.47 if ($tag == 0) {
817 root 1.48 $::INVR->set_items ($self->{container}{0})
818     if $tag == $self->{open_container};
819 root 1.47 } elsif ($tag == $self->{player}{tag}) {
820     $::INV->set_items ($self->{container}{$tag})
821     } else {
822 root 1.48 $::INVR->set_items ($self->{container}{$tag})
823     if $tag == $self->{open_container};
824 root 1.47 }
825     }
826     });
827 root 1.1 }
828    
829 root 1.48 sub container_add {
830     my ($self, $tag, $items) = @_;
831    
832     $self->{update_container}{$tag}++;
833     $self->update_containers;
834     }
835    
836 root 1.1 sub container_clear {
837     my ($self, $tag) = @_;
838    
839 root 1.47 $self->{update_container}{$tag}++;
840     $self->update_containers;
841 root 1.1 }
842    
843     sub item_delete {
844     my ($self, @items) = @_;
845    
846 root 1.49 $self->{update_container}{$_->{container}}++
847 root 1.47 for @items;
848    
849     $self->update_containers;
850 root 1.1 }
851    
852     sub item_update {
853     my ($self, $item) = @_;
854    
855     #d# print "item_update: $item->{tag} in $item->{container} ($self->{player}{tag}) ($::CONN->{open_container})\n";
856    
857 root 1.69 CFPlus::Item::update_widgets $item;
858 root 1.1
859 root 1.2 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) {
860 root 1.1 set_opencont ($::CONN, 0, "Floor");
861    
862 root 1.2 } elsif ($item->{flags} & F_OPEN) {
863 root 1.69 set_opencont ($::CONN, $item->{tag}, CFPlus::Item::desc_string $item);
864 root 1.47
865 root 1.1 } else {
866 root 1.47 $self->{update_container}{$item->{container}}++;
867     $self->update_containers;
868 root 1.1 }
869     }
870    
871 elmex 1.3 sub player_update {
872     my ($self, $player) = @_;
873 root 1.64
874     $self->update_weight;
875     }
876    
877     sub update_weight {
878     my ($self) = @_;
879    
880     my $weight = .001 * $self->{player}{weight};
881     my $limit = .001 * $self->{stat}{+CS_STAT_WEIGHT_LIM};
882    
883     $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $weight);
884     $::STATWIDS->{m_weight}->set_text (sprintf "%.1fkg", $limit);
885     $::STATWIDS->{i_weight}->set_text (sprintf "%.1f/%.1fkg", $weight, $limit);
886 root 1.28 }
887    
888 root 1.32 sub update_server_info {
889     my ($self) = @_;
890    
891     my @yesno = ("<span foreground='red'>no</span>", "<span foreground='green'>yes</span>");
892    
893     $::SERVER_INFO->set_markup (
894     "server <tt>$self->{host}:$self->{port}</tt>\n"
895     . "protocol version <tt>$self->{version}</tt>\n"
896     . "minimap support $yesno[$self->{setup}{mapinfocmd} > 0]\n"
897     . "extended command support $yesno[$self->{setup}{extcmd} > 0]\n"
898 root 1.86 . "editing support $yesno[!!$self->{editor_support}]\n"
899 root 1.80 . "map attributes $yesno[$self->{setup}{extmap} > 0]\n"
900 root 1.32 . "cfplus support $yesno[$self->{cfplus_ext} > 0]"
901     . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n"
902     . "map size $self->{mapw}×$self->{maph}\n"
903     );
904 elmex 1.89
905     ::setup_build_button ($self->{editor_support}->{builder_ui});
906 root 1.32 }
907    
908 root 1.28 sub logged_in {
909     my ($self) = @_;
910    
911 root 1.70 $self->send_ext_req (cfplus_support => version => 1, sub {
912     $self->{cfplus_ext} = $_[0]{version};
913 root 1.32 $self->update_server_info;
914 root 1.70
915 root 1.85 if ($self->{cfplus_ext} >= 2) {
916     $self->send_ext_req ("editor_support", sub {
917 root 1.86 $self->{editor_support} = $_[0];
918 root 1.85 $self->update_server_info;
919    
920     0
921     });
922     }
923    
924 root 1.70 0
925 root 1.32 });
926 root 1.31
927 root 1.32 $self->update_server_info;
928 root 1.13
929     $self->send_command ("output-sync $::CFG->{output_sync}");
930     $self->send_command ("output-count $::CFG->{output_count}");
931 root 1.29 $self->send_command ("pickup $::CFG->{pickup}");
932 elmex 1.3 }
933    
934 elmex 1.89 sub buildat {
935     my ($self, $builditem, $x, $y) = @_;
936    
937     if ($self->{cfplus_ext}) {
938     $self->send_ext_msg (builder_build => dx => $x, dy => $y, (ref ($builditem) eq 'HASH') ? %$builditem : (item => $builditem));
939     }
940     }
941    
942 root 1.32 sub lookat {
943     my ($self, $x, $y) = @_;
944    
945     if ($self->{cfplus_ext}) {
946 root 1.70 $self->send_ext_req (lookat => dx => $x, dy => $y, sub {
947     my ($msg) = @_;
948 root 1.32
949 root 1.70 if (exists $msg->{npc_dialog}) {
950 root 1.32 # start npc chat dialog
951 root 1.69 $self->{npc_dialog} = new CFPlus::NPCDialog::
952 root 1.32 dx => $x,
953     dy => $y,
954 root 1.70 title => "$msg->{npc_dialog} (NPC)",
955 root 1.32 conn => $self,
956     ;
957     }
958     });
959     }
960    
961     $self->send ("lookat $x $y");
962     }
963    
964     sub destroy {
965     my ($self) = @_;
966    
967 root 1.79 (delete $self->{npc_dialog})->destroy
968 root 1.32 if $self->{npc_dialog};
969    
970     $self->SUPER::destroy;
971     }
972    
973 root 1.69 package CFPlus::NPCDialog;
974 root 1.32
975 root 1.76 our @ISA = 'CFPlus::UI::Toplevel';
976 root 1.32
977     sub new {
978     my $class = shift;
979    
980     my $self = $class->SUPER::new (
981     x => 'center',
982     y => 'center',
983     name => "npc_dialog",
984     force_w => $::WIDTH * 0.7,
985     force_h => $::HEIGHT * 0.7,
986     title => "NPC Dialog",
987     kw => { hi => 0, yes => 0, no => 0 },
988 root 1.64 has_close_button => 1,
989 root 1.32 @_,
990     );
991    
992     Scalar::Util::weaken (my $this = $self);
993    
994 root 1.64 $self->connect (delete => sub { $this->destroy; 1 });
995    
996 root 1.32 # better use a pane...
997 root 1.69 $self->add (my $hbox = new CFPlus::UI::HBox);
998     $hbox->add ($self->{textview} = new CFPlus::UI::TextScroller expand => 1);
999 root 1.32
1000 root 1.69 $hbox->add (my $vbox = new CFPlus::UI::VBox);
1001 root 1.32
1002 root 1.69 $vbox->add (new CFPlus::UI::Label text => "Message Entry:");
1003     $vbox->add ($self->{entry} = new CFPlus::UI::Entry
1004 root 1.73 tooltip => "#npc_message_entry",
1005 root 1.32 on_activate => sub {
1006     my ($entry, $text) = @_;
1007    
1008     return unless $text =~ /\S/;
1009    
1010     $entry->set_text ("");
1011     $this->send ($text);
1012 root 1.38
1013     0
1014 root 1.32 },
1015     );
1016    
1017 root 1.69 $vbox->add ($self->{options} = new CFPlus::UI::VBox);
1018 root 1.32
1019 root 1.69 $self->{bye_button} = new CFPlus::UI::Button
1020 root 1.32 text => "Bye (close)",
1021     tooltip => "Use this button to end talking to the NPC. This also closes the dialog window.",
1022 root 1.64 on_activate => sub { $this->destroy; 1 },
1023 root 1.32 ;
1024    
1025     $self->update_options;
1026    
1027 root 1.70 $self->{id} = $self->{conn}->send_ext_req (
1028     npc_dialog_begin => dx => $self->{dx}, dy => $self->{dy},
1029     sub { $this && $this->feed (@_) }
1030     );
1031 root 1.32
1032 root 1.38 $self->{entry}->grab_focus;
1033 root 1.32
1034 root 1.67 $self->{textview}->add_paragraph ({
1035     fg => [1, 1, 0, 1],
1036     markup => "<small>[starting conversation with <b>$self->{title}</b>]</small>\n\n",
1037     });
1038 root 1.32
1039     $self->show;
1040     $self
1041     };
1042    
1043     sub update_options {
1044     my ($self) = @_;
1045    
1046     Scalar::Util::weaken $self;
1047    
1048     $self->{options}->clear;
1049 root 1.39 $self->{options}->add ($self->{bye_button});
1050 root 1.32
1051     for my $kw (sort keys %{ $self->{kw} }) {
1052 root 1.69 $self->{options}->add (new CFPlus::UI::Button
1053 root 1.32 text => $kw,
1054     on_activate => sub {
1055     $self->send ($kw);
1056 root 1.38 0
1057 root 1.32 },
1058     );
1059     }
1060     }
1061    
1062     sub feed {
1063 root 1.70 my ($self, $msg) = @_;
1064 root 1.32
1065 root 1.42 Scalar::Util::weaken $self;
1066    
1067 root 1.70 if ($msg->{msgtype} eq "reply") {
1068     $self->{kw}{$_} = 1 for @{$msg->{add_topics} || []};
1069     $self->{kw}{$_} = 0 for @{$msg->{del_topics} || []};
1070 root 1.61
1071 root 1.70 my $text = "\n" . CFPlus::asxml $msg->{msg};
1072 root 1.32 my $match = join "|", map "\\b\Q$_\E\\b", sort { (length $b) <=> (length $a) } keys %{ $self->{kw} };
1073 root 1.41 my @link;
1074 root 1.70 $text =~ s{
1075 root 1.41 ($match)
1076     }{
1077 root 1.42 my $kw = $1;
1078    
1079 root 1.69 push @link, new CFPlus::UI::Label
1080 root 1.42 markup => "<span foreground='#c0c0ff' underline='single'>$kw</span>",
1081 root 1.41 can_hover => 1,
1082 root 1.42 can_events => 1,
1083 root 1.43 padding_x => 0,
1084     padding_y => 0,
1085 root 1.42 on_button_up => sub {
1086     $self->send ($kw);
1087     };
1088 root 1.41
1089 root 1.75 "\x{fffc}"
1090 root 1.41 }giex;
1091 root 1.32
1092 root 1.70 $self->{textview}->add_paragraph ({ markup => $text, widget => \@link });
1093 root 1.42 $self->{textview}->scroll_to_bottom;
1094 root 1.32 $self->update_options;
1095     } else {
1096     $self->destroy;
1097     }
1098    
1099     1
1100     }
1101    
1102     sub send {
1103     my ($self, $msg) = @_;
1104    
1105 root 1.69 $self->{textview}->add_paragraph ({ markup => "\n" . CFPlus::asxml $msg });
1106 root 1.42 $self->{textview}->scroll_to_bottom;
1107 root 1.61
1108 root 1.70 $self->{conn}->send_ext_msg (npc_dialog_tell => msgid => $self->{id}, msg => $msg);
1109 root 1.32 }
1110    
1111     sub destroy {
1112     my ($self) = @_;
1113    
1114 root 1.39 #Carp::cluck "debug\n";#d# #todo# enable: destroy gets called twice because scalar keys {} is 1
1115 root 1.32
1116 root 1.70 if ($self->{conn}) {
1117     $self->{conn}->send_ext_msg (npc_dialog_end => msgid => $self->{id}) if $self->{id};
1118     delete $self->{conn}{npc_dialog};
1119     $self->{conn}->disconnect_ext ($self->{id});
1120     }
1121 root 1.32
1122     $self->SUPER::destroy;
1123     }
1124    
1125 root 1.67 1
1126 root 1.84