ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/Protocol.pm
Revision: 1.89
Committed: Mon Dec 4 15:17:14 2006 UTC (17 years, 6 months ago) by elmex
Branch: MAIN
Changes since 1.88: +10 -0 lines
Log Message:
added builder ui.

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