ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/Protocol.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC/Protocol.pm (file contents):
Revision 1.53 by root, Mon Jul 3 22:32:52 2006 UTC vs.
Revision 1.169 by root, Sat Sep 1 07:22:21 2007 UTC

1package CFClient::Protocol; 1package CFPlus::Protocol;
2 2
3use utf8; 3use utf8;
4use strict; 4use strict;
5 5
6use Crossfire::Protocol::Constants; 6use Crossfire::Protocol::Constants;
7 7
8use CFClient; 8use CFPlus;
9use CFPlus::DB;
9use CFClient::UI; 10use CFPlus::UI;
11use CFPlus::Pod;
12use CFPlus::Macro;
13use CFPlus::Item;
14
15use Crossfire::Protocol::Base 0.95;
10 16
11use base 'Crossfire::Protocol::Base'; 17use base 'Crossfire::Protocol::Base';
12 18
13our %open_logs;
14
15sub new { 19sub new {
16 my $class = shift; 20 my ($class, %arg) = @_;
17 21
18 my $self = $class->SUPER::new (@_); 22 my $self = $class->SUPER::new (%arg,
23 setup_req => {
24 extmap => 1,
25 excmd => 1,
26 xwidget2 => 1,#d#
27 %{$arg{setup_req} || {}},
28 },
29 );
19 30
20 $self->{map_widget}->clr_commands; 31 $self->{map_widget}->clr_commands;
21 32
22 my $cmd_help = CFClient::load_pod CFClient::find_rcfile "pod/command_help.pod", command_help => 1, sub { 33 my @cmd_help = map {
23 my ($pom) = @_;
24
25 my @cmd_help;
26
27 for my $head2 ($pom->head1->[-2]->head2) {
28 $head2->title =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x 34 $_->{kw}[0] =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x
29 or next; 35 or die "unparseable command help: $_->{kw}[0]";
30 36
31 my $cmd = $1; 37 my $cmd = $1;
32 my @args = split /\|/, $2; 38 my @args = split /\|/, $2;
33 @args = (".*") unless @args; 39 @args = (".*") unless @args;
34 40
41 my (undef, @par) = CFPlus::Pod::section_of $_;
42 my $text = CFPlus::Pod::as_label @par;
43
35 $_ = $_ eq ".*" ? "" : " $_" 44 $_ = $_ eq ".*" ? "" : " $_"
36 for @args; 45 for @args;
37 46
38 my $text = CFClient::pod_to_pango $head2->content; 47 map ["$cmd$_", $text],
39
40 push @cmd_help, ["$cmd$_", $text]
41 for sort { (length $a) <=> (length $b) } 48 sort { (length $a) <=> (length $b) }
42 @args; 49 @args
50 } sort { $a->{par} <=> $b->{par} }
51 CFPlus::Pod::find command => "*";
52
53 $self->{json_coder}
54 ->convert_blessed
55 ->filter_json_single_key_object ("\fw" => sub {
56 $self->{widget}{$_[0]}
43 } 57 })
58 ->filter_json_single_key_object ("\fc" => sub {
59 my ($id) = @_;
60 sub {
61 $self->send_exti_msg (w_e => $id, @_);
62 }
63 });
44 64
65 # destroy widgets on logout
66 $self->{on_stop_game_guard} = $self->{map_widget}{root}->connect (stop_game => sub {
67 for my $ws (values %{delete $self->{widgetset} || {}}) {
68 $_->destroy
69 for values %{delete $ws->{w} || {}};
70 }
71 });
72
73 $self->{map_widget}->add_command (@$_)
45 \@cmd_help 74 for @cmd_help;
75
76 {
77 $self->{dialogue} = my $tex = new_from_file CFPlus::Texture
78 CFPlus::find_rcfile "dialogue.png", minify => 1, mipmap => 1;
79 $self->{map}->set_texture (1, @$tex{qw(name w h s t)}, @{$tex->{minified}});
80 }
81
82 {
83 $self->{noface} = my $tex = new_from_file CFPlus::Texture
84 CFPlus::find_rcfile "noface.png", minify => 1, mipmap => 1;
85 $self->{map}->set_texture (2, @$tex{qw(name w h s t)}, @{$tex->{minified}});
86 }
87
88 $self->{open_container} = 0;
89
90 # per server
91 $self->{mapcache} = "mapcache_$self->{host}_$self->{port}";
92
93 $self
94}
95
96sub update_fx_want {
97 my ($self) = @_;
98
99 $self->send_exti_msg (fx_want => {
100 3 => !!$::CFG->{bgm_enable}, # FT_MUSIC
101 5 => !!$::CFG->{audio_enable}, # FT_SOUND
102 6 => 1, # FT_RSRC
103 });
104}
105
106sub ext_capabilities {
107 my ($self, %cap) = @_;
108
109 #$self->send ("setup sound 0"); # we use a different protocol
110 $self->update_fx_want;
111
112 $self->send_exti_req (resource => "exp_table", sub {
113 my ($exp_table) = @_;
114
115 $self->register_face_handler ($exp_table, sub {
116 my ($face) = @_;
117
118 $self->{exp_table} = $self->{json_coder}->decode (delete $face->{data});
119 $_->() for values %{ $self->{on_exp_update} || {} };
120 });
121
122 ()
123 });
124
125 if (my $ts = $cap{tileset}) {
126 if (my ($default) = grep $_->[2] & 1, @$ts) {
127 $self->{tileset} = $default;
128 $self->{tilesize} = $default->[3];
129 $self->setup_req (tileset => $default->[0]);
130
131 my $w = int $self->{mapw} * 32 / $self->{tilesize};
132 my $h = int $self->{maph} * 32 / $self->{tilesize};
133
134 $self->setup_req (mapsize => "${w}x${h}");
135 }
136 }
137}
138
139sub ext_ambient_music {
140 my ($self, $songs) = @_;
141 &::audio_music_set_ambient ($songs);
142}
143
144#############################################################################
145
146sub widget_associate {
147 my ($self, $ws, $id, $widget) = @_;
148
149 $widget ||= new CFPlus::UI::Bin;
150
151 $widget->{s_id} = $id;
152 $self->{widget}{$id} = $widget;
153
154 if ($ws) {
155 $widget->{s_ws} = $ws;
156 $self->{widgetset}{$ws}{w}{$id} = $widget;
157 }
158
159 $widget->connect (on_destroy => sub {
160 my ($widget) = @_;
161
162 delete $self->{widget}{$widget->{s_id}};
163 delete $self->{widgetset}{$widget->{s_ws}}{$widget->{s_id}}
164 if exists $widget->{s_ws};
165 });
166}
167
168# widgetset new
169sub ext_ws_n {
170 my ($self, $id) = @_;
171
172 $self->{widgetset}{$id} = {
173 w => {},
46 }; 174 };
47
48 $self->{map_widget}->add_command (@$_)
49 for @$cmd_help;
50
51 $self->{noface} = new_from_file CFClient::Texture
52 CFClient::find_rcfile "noface.png", minify => 1, mipmap => 1;
53
54 $self->{open_container} = 0;
55
56 # "global"
57 $self->{tilecache} = CFClient::db_table "tilecache";
58 $self->{facemap} = CFClient::db_table "facemap";
59
60 # per server
61 $self->{mapcache} = CFClient::db_table "mapcache_$self->{host}_$self->{port}";
62
63 $self
64} 175}
176
177# widgetset destroy
178sub ext_ws_d {
179 my ($self, $id) = @_;
180
181 my $ws = delete $self->{widgetset}{$id}
182 or return;
183
184 $_->destroy
185 for values %{$ws->{w}};
186}
187
188# widgetset create
189sub ext_ws_c {
190 my ($self, $ws, $id, $class, $args) = @_;
191
192 $self->widget_associate (
193 $ws, $id => scalar eval {
194 local $SIG{__DIE__};
195 "CFPlus::UI::$class"->new (%$args)
196 }
197 );
198}
199
200# widgetset associate
201sub ext_ws_a {
202 my ($self, %ass) = @_;
203
204 # everything that has a name, wether conceivably useful or not
205 my %wkw = (
206 root => $CFPlus::UI::ROOT,
207 tooltip => $CFPlus::UI::TOOLTIP,
208
209 mapwidget => $::MAPWIDGET,
210 buttonbar => $::BUTTONBAR,
211 metaserver => $::METASERVER,
212 buttonbar => $::BUTTONBAR,
213 login_button => $::LOGIN_BUTTON,
214 quit_dialog => $::QUIT_DIALOG,
215 host_entry => $::HOST_ENTRY,
216 metaserver => $::METASERVER,
217 server_info => $::SERVER_INFO,
218
219 setup_dialog => $::SETUP_DIALOG,
220 setup_notebook => $::SETUP_NOTEBOOK,
221 setup_server => $::SETUP_SERVER,
222 setup_keyboard => $::SETUP_KEYBOARD,
223
224 pl_notebook => $::PL_NOTEBOOK,
225 pl_window => $::PL_WINDOW,
226 inventory_page => $::INVENTORY_PAGE,
227 stats_page => $::STATS_PAGE,
228 skill_page => $::SKILL_PAGE,
229 spell_page => $::SPELL_PAGE,
230 spell_list => $::SPELL_LIST,
231
232 floorbox => $::FLOORBOX,
233 help_window => $::HELP_WINDOW,
234 message_window => $::MESSAGE_WINDOW,
235 statusbox => $::SDTATUSBOX,
236
237 inv => $::INV,
238 invr => $::INVR,
239 invr_hb => $::INVR_HB,
240 );
241
242 while (my ($id, $name) = each %ass) {
243 $self->widget_associate (undef, $id => $wkw{$name});
244 }
245}
246
247# widget call
248sub ext_w_c {
249 my ($self, $id, $rcb, $method, @args) = @_;
250
251 my $w = $self->{widget}{$id}
252 or return;
253
254 if ($rcb) {
255 $rcb->($w->$method (@args));
256 } else {
257 $w->$method (@args);
258 }
259}
260
261# widget set
262sub ext_w_s {
263 my ($self, $id, $attr) = @_;
264
265 my $w = $self->{widget}{$id}
266 or return;
267
268 for (my $i = 0; $i < $#$attr; $i += 2) {
269 my ($member, $value) = @$attr[$i, $i+1];
270 if (defined $value) {
271 $w->{$member} = $value;
272 } else {
273 delete $w->{$member};
274 }
275 $w->{parent}->realloc if $member =~ /^c_/ && $w->{visible};
276 }
277}
278
279# widget get
280sub ext_w_g {
281 my ($self, $id, $rid, @attr) = @_;
282
283 my $w = $self->{widget}{$id}
284 or return;
285
286 $self->send_exti_msg (w_e => $rid, map $w->{$_}, @attr);
287}
288
289# message window
290sub ext_channel_info {
291 my ($self, $info) = @_;
292 $self->{channels}->{$info->{id}} = $info;
293 $::MESSAGE_WINDOW->add_channel ($info);
294}
295
296#############################################################################
65 297
66sub logprint { 298sub logprint {
67 my ($self, @a) = @_; 299 my ($self, @a) = @_;
68 my $filename = "$Crossfire::VARDIR/log.$self->{host}";
69 300
70 my $fh = $open_logs{$filename}; 301 CFPlus::DB::logprint "$Crossfire::VARDIR/log.$self->{host}" => (join "", @a), sub { };
71 unless ($fh) {
72 # FIXME: handle this more gracefully?
73 open $fh, ">>", $filename
74 or die "Couldn't open logfile: log.$self->{host}: $!";
75
76 $open_logs{$filename} = $fh;
77 }
78
79 my ($sec, $min, $hour, $mday, $mon, $year) = localtime (time);
80
81 my $ts = sprintf "%04d-%02d-%02d %02d:%02d:%02d",
82 $year + 1900, $mon + 1, $mday, $hour, $min, $sec;
83
84 print $fh "$ts ", @a, "\n";
85 $fh->flush;
86} 302}
87 303
88sub _stat_numdiff { 304sub _stat_numdiff {
89 my ($self, $old, $new) = @_; 305 my ($self, $name, $old, $new) = @_;
90 306
91 my $diff = $new - $old; 307 my $diff = $new - $old;
92 $diff > 0 ? "+$diff" : $diff 308
309 $diff = 0.01 * int $diff * 100;
310
311 0.1 >= abs $diff ? ()
312 : $diff < 0 ? "$name$diff" : "$name+$diff"
93} 313}
94 314
95sub _stat_skillmaskdiff { 315sub _stat_skillmaskdiff {
96 my ($self, $old, $new) = @_; 316 my ($self, $name, $old, $new) = @_;
97 317
98 my $diff = $old ^ $new; 318 my $diff = $old ^ $new
319 or return;
99 320
100 my @diff = map 321 my @diff = map
101 { 322 {
102 $diff & $_ 323 $diff & $_
103 ? (($new & $_ ? "+" : "-") . $self->{spell_paths}{$_}) 324 ? (($new & $_ ? "+" : "-") . $self->{spell_paths}{$_})
150); 371);
151 372
152sub stats_update { 373sub stats_update {
153 my ($self, $stats) = @_; 374 my ($self, $stats) = @_;
154 375
155 if (my $prev = $self->{prev_stats}) { 376 my $prev = $self->{prev_stats} || { };
156 if (my $diff = $stats->{+CS_STAT_EXP64} - $prev->{+CS_STAT_EXP64}) { 377
378 if (my @diffs =
379 (
380 ($stats->{+CS_STAT_EXP64} > $prev->{+CS_STAT_EXP64} ? ($stats->{+CS_STAT_EXP64} - $prev->{+CS_STAT_EXP64}) . " experience gained" : ()),
381 map {
382 $stats->{$_} && $prev->{$_}
383 && $stats->{$_}[1] > $prev->{$_}[1] ? "($self->{skill_info}{$_}+" . ($stats->{$_}[1] - $prev->{$_}[1]) . ")" : ()
384 } sort { $a <=> $b } keys %{$self->{skill_info}}
385 )
386 ) {
387 my $msg = join " ", @diffs;
157 $self->{statusbox}->add ("$diff experience gained", group => "experience $diff", fg => [0.5, 1, 0.5, 0.8], timeout => 5); 388 $self->{statusbox}->add ($msg, group => "experience $msg", fg => [0.5, 1, 0.5, 0.8], timeout => 5);
158 } 389 }
159 390
160 if ( 391 if (
161 my @diffs = map { 392 my @diffs = map $_->[1]->($self, $_->[2], $prev->{$_->[0]}, $stats->{$_->[0]}), @statchange
162 $stats->{$_->[0]} != $prev->{$_->[0]}
163 ? $_->[2] . $_->[1]->($self, $prev->{$_->[0]}, $stats->{$_->[0]}) : ();
164 }
165 @statchange
166 ) { 393 ) {
167 my $msg = "<b>stat change</b>: " . (join " ", @diffs); 394 my $msg = "<b>stat change</b>: " . (join " ", @diffs);
168 $self->{statusbox}->add ($msg, group => $msg, fg => [0.8, 1, 0.2, 1], timeout => 10); 395 $self->{statusbox}->add ($msg, group => "stat $msg", fg => [0.8, 1, 0.2, 1], timeout => 20);
169 }
170 } 396 }
397
398 $self->update_stats_window ($stats, $prev);
171 399
172 $self->{prev_stats} = { %$stats }; 400 $self->{prev_stats} = { %$stats };
401}
173 402
174 ::update_stats_window ($stats); 403my %RES_TBL = (
404 phys => CS_STAT_RES_PHYS,
405 magic => CS_STAT_RES_MAG,
406 fire => CS_STAT_RES_FIRE,
407 elec => CS_STAT_RES_ELEC,
408 cold => CS_STAT_RES_COLD,
409 conf => CS_STAT_RES_CONF,
410 acid => CS_STAT_RES_ACID,
411 drain => CS_STAT_RES_DRAIN,
412 ghit => CS_STAT_RES_GHOSTHIT,
413 pois => CS_STAT_RES_POISON,
414 slow => CS_STAT_RES_SLOW,
415 para => CS_STAT_RES_PARA,
416 tund => CS_STAT_TURN_UNDEAD,
417 fear => CS_STAT_RES_FEAR,
418 depl => CS_STAT_RES_DEPLETE,
419 deat => CS_STAT_RES_DEATH,
420 holyw => CS_STAT_RES_HOLYWORD,
421 blind => CS_STAT_RES_BLIND,
422);
423
424sub update_stats_window {
425 my ($self, $stats, $prev) = @_;
426
427 # I love text protocols...
428
429 my $hp = $stats->{+CS_STAT_HP} * 1;
430 my $hp_m = $stats->{+CS_STAT_MAXHP} * 1;
431 my $sp = $stats->{+CS_STAT_SP} * 1;
432 my $sp_m = $stats->{+CS_STAT_MAXSP} * 1;
433 my $fo = $stats->{+CS_STAT_FOOD} * 1;
434 my $fo_m = 999;
435 my $gr = $stats->{+CS_STAT_GRACE} * 1;
436 my $gr_m = $stats->{+CS_STAT_MAXGRACE} * 1;
437
438 $::GAUGES->{hp} ->set_value ($hp, $hp_m);
439 $::GAUGES->{mana} ->set_value ($sp, $sp_m);
440 $::GAUGES->{food} ->set_value ($fo, $fo_m);
441 $::GAUGES->{grace} ->set_value ($gr, $gr_m);
442 $::GAUGES->{exp} ->set_text ("Exp: " . (::formsep ($stats->{+CS_STAT_EXP64}))
443 . " (lvl " . ($stats->{+CS_STAT_LEVEL} * 1) . ")");
444 $::GAUGES->{prg} ->set_value ($stats->{+CS_STAT_LEVEL}, $stats->{+CS_STAT_EXP64});
445 $::GAUGES->{range} ->set_text ($stats->{+CS_STAT_RANGE});
446 my $title = $stats->{+CS_STAT_TITLE};
447 $title =~ s/^Player: //;
448 $::STATWIDS->{title} ->set_text ("Title: " . $title);
449
450 $::STATWIDS->{st_str} ->set_text (sprintf "%d" , $stats->{+CS_STAT_STR});
451 $::STATWIDS->{st_dex} ->set_text (sprintf "%d" , $stats->{+CS_STAT_DEX});
452 $::STATWIDS->{st_con} ->set_text (sprintf "%d" , $stats->{+CS_STAT_CON});
453 $::STATWIDS->{st_int} ->set_text (sprintf "%d" , $stats->{+CS_STAT_INT});
454 $::STATWIDS->{st_wis} ->set_text (sprintf "%d" , $stats->{+CS_STAT_WIS});
455 $::STATWIDS->{st_pow} ->set_text (sprintf "%d" , $stats->{+CS_STAT_POW});
456 $::STATWIDS->{st_cha} ->set_text (sprintf "%d" , $stats->{+CS_STAT_CHA});
457 $::STATWIDS->{st_wc} ->set_text (sprintf "%d" , $stats->{+CS_STAT_WC});
458 $::STATWIDS->{st_ac} ->set_text (sprintf "%d" , $stats->{+CS_STAT_AC});
459 $::STATWIDS->{st_dam} ->set_text (sprintf "%d" , $stats->{+CS_STAT_DAM});
460 $::STATWIDS->{st_arm} ->set_text (sprintf "%d" , $stats->{+CS_STAT_RES_PHYS});
461 $::STATWIDS->{st_spd} ->set_text (sprintf "%.1f", $stats->{+CS_STAT_SPEED});
462 $::STATWIDS->{st_wspd}->set_text (sprintf "%.1f", $stats->{+CS_STAT_WEAP_SP});
463
464 $self->update_weight;
465
466 $::STATWIDS->{"res_$_"}->set_text (sprintf "%d%", $stats->{$RES_TBL{$_}})
467 for keys %RES_TBL;
468
469 my $sktbl = $::STATWIDS->{skill_tbl};
470 my @skills = keys %{ $self->{skill_info} };
471
472 my @order = sort { $stats->{$b->[0]}[1] <=> $stats->{$a->[0]}[1] or $a->[1] cmp $b->[1] }
473 map [$_, $self->{skill_info}{$_}],
474 grep exists $stats->{$_},
475 @skills;
476
477 if ($self->{stat_order} ne join ",", map $_->[0], @order) {
478 $self->{stat_order} = join ",", map $_->[0], @order;
479
480 $sktbl->clear;
481
482 my $sw = $self->{skillwid}{""} ||= [
483 0, 0, (new CFPlus::UI::Label text => "Experience", align => 1),
484 1, 0, (new CFPlus::UI::Label text => "Lvl.", align => 1),
485 2, 0, (new CFPlus::UI::Label text => "Progress", align => 0),
486 3, 0, (new CFPlus::UI::Label text => "Skill", expand => 1),
487 4, 0, (new CFPlus::UI::Label text => "Experience", align => 1),
488 5, 0, (new CFPlus::UI::Label text => "Lvl.", align => 1),
489 6, 0, (new CFPlus::UI::Label text => "Progress", align => 0),
490 7, 0, (new CFPlus::UI::Label text => "Skill", expand => 1),
491 ];
492
493 my @add = @$sw;
494
495 my $TOOLTIP_ALL = "\n\n<small>Left click - ready skill\nMiddle click - use spell\nRight click - further options</small>";
496
497 my @TOOLTIP_LVL = (tooltip => "<b>Level</b>. The level of the skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1);
498 my @TOOLTIP_EXP = (tooltip => "<b>Experience</b>. The experience points you have in this skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1);
499
500 my ($x, $y) = (0, 1);
501 for (@order) {
502 my ($idx, $name) = @$_;
503
504 my $spell_cb = sub {
505 my ($widget, $ev) = @_;
506
507 if ($ev->{button} == 1) {
508 $::CONN->user_send ("ready_skill $name");
509 } elsif ($ev->{button} == 2) {
510 $::CONN->user_send ("use_skill $name");
511 } elsif ($ev->{button} == 3) {
512 my $shortname = CFPlus::shorten $name, 14;
513 (new CFPlus::UI::Menu
514 items => [
515 ["bind <i>ready_skill $shortname</i> to a key" => sub { CFPlus::Macro::quick_macro ["ready_skill $name"] }],
516 ["bind <i>use_skill $shortname</i> to a key" => sub { CFPlus::Macro::quick_macro ["use_skill $name"] }],
517 ],
518 )->popup ($ev);
519 } else {
520 return 0;
521 }
522
523 1
524 };
525
526 my $sw = $self->{skillwid}{$idx} ||= [
527 # exp
528 (new CFPlus::UI::Label
529 align => 1, font => $::FONT_FIXED, fg => [1, 1, 0], on_button_down => $spell_cb, @TOOLTIP_EXP),
530
531 # level
532 (new CFPlus::UI::Label
533 text => "0", align => 1, font => $::FONT_FIXED, fg => [0, 1, 0], padding_x => 4, on_button_down => $spell_cb, @TOOLTIP_LVL),
534
535 # progress
536 (new CFPlus::UI::ExperienceProgress),
537
538 # label
539 (new CFPlus::UI::Label text => $name, on_button_down => $spell_cb,
540 can_events => 1, can_hover => 1, tooltip => (CFPlus::Pod::section_label skill_description => $name) . $TOOLTIP_ALL),
541 ];
542
543 push @add,
544 $x * 4 + 0, $y, $sw->[0],
545 $x * 4 + 1, $y, $sw->[1],
546 $x * 4 + 2, $y, $sw->[2],
547 $x * 4 + 3, $y, $sw->[3],
548 ;
549
550 $x++ and ($x, $y) = (0, $y + 1);
551 }
552
553 $sktbl->add_at (@add);
554 }
555
556 for (@order) {
557 my ($idx, $name) = @$_;
558 my $val = $stats->{$idx};
559
560 next if $prev->{$idx}[1] eq $val->[1];
561
562 my $sw = $self->{skillwid}{$idx};
563 $sw->[0]->set_text (::formsep ($val->[1]));
564 $sw->[1]->set_text ($val->[0] * 1);
565 $sw->[2]->set_value (@$val);
566
567 $::GAUGES->{sklprg}->set_label ("$name %d%%");
568 $::GAUGES->{sklprg}->set_value (@$val);
569 }
175} 570}
176 571
177sub user_send { 572sub user_send {
178 my ($self, $command) = @_; 573 my ($self, $command) = @_;
179 574
575 $self->{record}->($command)
180 if ($self->{record}) { 576 if $self->{record};
181 push @{$self->{record}}, $command;
182 }
183 577
184 $self->logprint ("send: ", $command); 578 $self->logprint ("send: ", $command);
185 $self->send_command ($command); 579 $self->send_command ($command);
186 ::status ($command);
187} 580}
188 581
189sub start_record { 582sub record {
190 my ($self) = @_; 583 my ($self, $cb) = @_;
191 584
192 $self->{record} = []; 585 $self->{record} = $cb;
193}
194
195sub stop_record {
196 my ($self) = @_;
197 return delete $self->{record};
198} 586}
199 587
200sub map_scroll { 588sub map_scroll {
201 my ($self, $dx, $dy) = @_; 589 my ($self, $dx, $dy) = @_;
202 590
204} 592}
205 593
206sub feed_map1a { 594sub feed_map1a {
207 my ($self, $data) = @_; 595 my ($self, $data) = @_;
208 596
209 $self->{map}->map1a_update ($data); 597 my $missing = $self->{map}->map1a_update ($data, $self->{setup}{extmap});
598 my $delay;
599
600 for my $tile (@$missing) {
601 next if $self->{delay}{$tile};
602
603 $delay = 1;
604
605 if (my $tex = $::CONN->{texture}[$tile]) {
606 $tex->upload;
607 } else {
608 $self->{delay}{$tile} = 1;
609
610 # we assume the face is in-flight and will eventually come
611 push @{$self->{tile_cb}{$tile}}, sub {
612 delete $self->{delay}{$tile};
613 $_[0]->upload;
614 };
615 }
616 }
617
618 if ($delay) {
619 # delay the map drawing a tiny bit in the hope of getting the missing fetched
620 Event->timer (after => 0.03, cb => sub {
621 $_[0]->w->cancel;
622 $self->{map_widget}->update
623 if $self->{map_widget};
624 });
625 } else {
210 $self->{map_widget}->update; 626 $self->{map_widget}->update;
627 }
211} 628}
212 629
213sub magicmap { 630sub magicmap {
214 my ($self, $w, $h, $x, $y, $data) = @_; 631 my ($self, $w, $h, $x, $y, $data) = @_;
215 632
222 my $map_info = delete $self->{map_info} 639 my $map_info = delete $self->{map_info}
223 or return; 640 or return;
224 641
225 my ($hash, $x, $y, $w, $h) = @$map_info; 642 my ($hash, $x, $y, $w, $h) = @$map_info;
226 643
227 my $data = $self->{map}->get_rect ($x, $y, $w, $h); 644 my $data = Compress::LZF::compress $self->{map}->get_rect ($x, $y, $w, $h);
228 $self->{mapcache}->put ($hash => Compress::LZF::compress $data); 645 $self->{map_cache_new}{$hash} = \$data;
229 #warn sprintf "SAVEmap[%s] length %d\n", $hash, length $data;#d# 646 CFPlus::DB::put $self->{mapcache} => $hash => $data, sub { };
230} 647}
231 648
232sub map_clear { 649sub map_clear {
233 my ($self) = @_; 650 my ($self) = @_;
234 651
237 654
238 $self->{map}->clear; 655 $self->{map}->clear;
239 delete $self->{map_widget}{magicmap}; 656 delete $self->{map_widget}{magicmap};
240} 657}
241 658
659sub bg_fetch {
660 my ($self) = @_;
661
662 my $tile;
663
664 do {
665 $tile = pop @{$self->{bg_fetch}}
666 or return;
667 } while $self->{texture}[$tile];
668
669 CFPlus::DB::get tilecache => $tile, sub {
670 my ($data) = @_;
671
672 return unless $self->{map}; # stop when destroyed
673
674 if (defined $data) {
675 $self->have_tile ($tile, $data);
676 $self->{texture}[$tile]->upload;
677 }
678
679 $self->bg_fetch;
680 };
681}
242 682
243sub load_map($$$) { 683sub load_map($$$) {
244 my ($self, $hash, $x, $y) = @_; 684 my ($self, $hash, $x, $y) = @_;
245 685
246 if (defined (my $data = $self->{mapcache}->get ($hash))) { 686 my $gen = $self->{map_change_gen};
687
688 my $cb = sub {
689 return unless $gen == $self->{map_change_gen};
690
691 my ($data) = @_;
692
693 if (defined $data) {
694 $self->{map_cache_new}{$hash} = \$data;
695
247 $data = Compress::LZF::decompress $data; 696 my $data = Compress::LZF::decompress $data;
248 #warn sprintf "LOADmap[%s,%d,%d] length %d\n", $hash, $x, $y, length $data;#d#
249 for my $id ($self->{map}->set_rect ($x, $y, $data)) {
250 my $data = $self->{tilecache}->get ($id)
251 or next;
252 697
253 $self->set_texture ($id => $data); 698 my $inprogress = @{ $self->{bg_fetch} || [] };
699 unshift @{ $self->{bg_fetch} }, $self->{map}->set_rect ($x, $y, $data);
700 $self->bg_fetch unless $inprogress;
254 } 701 }
702 };
703
704 if (my $rdata = $self->{map_cache_old}{$hash}) {
705 $cb->($$rdata);
706 } else {
707 CFPlus::DB::get $self->{mapcache} => $hash, $cb;
255 } 708 }
256} 709}
257 710
258# hardcode /world/world_xxx_xxx map names, the savings are enourmous, 711# hardcode /world/world_xxx_xxx map names, the savings are enourmous,
259# (server resource,s latency, bandwidth), so this hack is warranted. 712# (server resource,s latency, bandwidth), so this hack is warranted.
324 777
325 $self->flood_fill ($block, $gx, $gy, "$path$tile", $hash, $flags) 778 $self->flood_fill ($block, $gx, $gy, "$path$tile", $hash, $flags)
326 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1; 779 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
327 780
328 } else { 781 } else {
782 my $gen = $self->{map_change_gen};
329 $self->send_mapinfo ("spatial $path$tile", sub { 783 $self->send_mapinfo ("spatial $path$tile", sub {
784 return unless $gen == $self->{map_change_gen};
785
330 my ($mode, $flags, $x, $y, $w, $h, $hash) = @_; 786 my ($mode, $flags, $x, $y, $w, $h, $hash) = @_;
331 787
332 return if $mode ne "spatial"; 788 return if $mode ne "spatial";
333 789
334 $x += $self->{map}->ox; 790 $x += $self->{map}->ox;
348 804
349sub map_change { 805sub map_change {
350 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_; 806 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
351 807
352 $self->flush_map; 808 $self->flush_map;
809
810 ++$self->{map_change_gen};
811 $self->{map_cache_old} = delete $self->{map_cache_new};
353 812
354 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy); 813 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
355 814
356 my $mapmapw = $self->{mapmap}->{w}; 815 my $mapmapw = $self->{mapmap}->{w};
357 my $mapmaph = $self->{mapmap}->{h}; 816 my $mapmaph = $self->{mapmap}->{h};
374 $self->load_map ($hash, $x, $y); 833 $self->load_map ($hash, $x, $y);
375 $self->flood_fill (0, 0, 0, "", $hash, $flags); 834 $self->flood_fill (0, 0, 0, "", $hash, $flags);
376} 835}
377 836
378sub face_find { 837sub face_find {
838 my ($self, $facenum, $face, $cb) = @_;
839
840 if ($face->{type} == 0) { # FT_FACE
841 my $id = CFPlus::DB::get_tile_id_sync $face->{name};
842
843 $face->{id} = $id;
844 $self->{map}->set_tileid ($facenum => $id);
845
846 CFPlus::DB::get tilecache => $id, $cb;
847
848 } elsif ($face->{type} & 1) { # with metadata
849 CFPlus::DB::get res_meta => $face->{name}, $cb;
850
851 } else { # no metadata
852 CFPlus::DB::get res_data => $face->{name}, $cb;
853 }
854}
855
856sub face_update {
857 my ($self, $facenum, $face, $changed) = @_;
858
859 if ($face->{type} == 0) {
860 # image, FT_FACE
861 CFPlus::DB::put tilecache => $face->{id} => $face->{data}, sub { }
862 if $changed;
863
864 $self->have_tile ($face->{id}, delete $face->{data});
865
866 } elsif ($face->{type} & 1) {
867 # split metadata case, FT_MUSIC, FT_SOUND
868 if ($changed) { # new data
869 my ($meta, $data) = unpack "(w/a*)*", $face->{data};
870 $face->{data} = $meta;
871
872 # rely on strict ordering here and also on later fetch
873 CFPlus::DB::put res_data => $face->{name} => $data, sub { };
874 CFPlus::DB::put res_meta => $face->{name} => $meta, sub { };
875 }
876
877 $face->{data} = $self->{json_coder}->decode ($face->{data});
878 ::add_license ($face);
879 ::message ({ markup => CFPlus::asxml "downloaded resource '$face->{data}{name}', type $face->{type}." })
880 if $changed;
881
882 if ($face->{type} == 3) { # FT_MUSIC
883 &::audio_music_push ($facenum);
884 } elsif ($face->{type} == 5) { # FT_SOUND
885 &::audio_sound_push ($facenum);
886 }
887
888 } else {
889 # flat resource case, FT_RSRC
890 CFPlus::DB::put res_data => $face->{name} => $face->{data}, sub { }
891 if $changed;
892 }
893
894 if (my $cbs = $self->{face_cb}{$facenum}) {
895 $_->($face, $changed) for @$cbs;
896 }
897}
898
899sub smooth_update {
379 my ($self, $facenum, $face) = @_; 900 my ($self, $facenum, $face) = @_;
380 901
381 my $hash = "$face->{chksum},$face->{name}"; 902 $self->{map}->set_smooth ($facenum, $face->{smoothface}, $face->{smoothlevel});
903}
382 904
383 my $id = $self->{facemap}->get ($hash); 905sub have_tile {
906 my ($self, $tile, $data) = @_;
384 907
385 unless ($id) { 908 return unless $self->{map};
386 # create new id for face
387 # I love transactions
388 for (1..100) {
389 my $txn = $CFClient::DB_ENV->txn_begin;
390 my $status = $self->{facemap}->db_get (id => $id);
391 if ($status == 0 || $status == BerkeleyDB::DB_NOTFOUND) {
392 $id = ($id || 64) + 1;
393 if ($self->{facemap}->put (id => $id) == 0
394 && $self->{facemap}->put ($hash => $id) == 0) {
395 $txn->txn_commit;
396 909
397 goto gotid; 910 my $tex = $self->{texture}[$tile] ||=
398 } 911 new CFPlus::Texture
912 tile => $tile,
913 image => $data, delete_image => 1,
914 minify => 1, mipmap => 1;
915
916 if (my $cbs = delete $self->{tile_cb}{$tile}) {
917 $_->($tex) for @$cbs;
918 }
919}
920
921# call in non-void context registers a temporary
922# hook with handle, otherwise its permanent
923sub on_face_change {
924 my ($self, $num, $cb) = @_;
925
926 push @{$self->{face_cb}{$num}}, $cb;
927
928 defined wantarray
929 ? CFPlus::guard {
930 @{$self->{face_cb}{$num}}
931 = grep $_ != $cb,
932 @{$self->{face_cb}{$num}};
399 } 933 }
400 $txn->txn_abort; 934 : ()
401 }
402
403 CFClient::fatal "maximum number of transaction retries reached - database problems?";
404 }
405
406gotid:
407 $face->{id} = $id;
408 $self->{map}->set_face ($facenum => $id);
409 $self->{faceid}[$facenum] = $id;#d#
410
411 my $face = $self->{tilecache}->get ($id);
412
413 if ($face) {
414 #$self->face_prefetch;
415 $face
416 } else {
417 my $tex = $self->{noface};
418 $self->{map}->set_texture ($id, @$tex{qw(name w h s t)}, @{$tex->{minified}});
419 undef
420 };
421} 935}
422 936
423sub face_update { 937# call in non-void context registers a temporary
938# hook with handle, otherwise its permanent
939sub register_face_handler {
424 my ($self, $facenum, $face) = @_; 940 my ($self, $num, $cb) = @_;
425 941
426 $self->{tilecache}->put ($face->{id} => $face->{image}); #TODO: try to avoid duplicate writes 942 return unless $num;
427 943
428 $self->set_texture ($face->{id} => delete $face->{image}); 944 # invoke if available right now
429} 945 $cb->($self->{face}[$num], 0)
946 unless exists $self->{face}[$num]{loading};
430 947
431sub set_texture { 948 # future changes
432 my ($self, $id, $data) = @_; 949 $self->on_face_change ($num => $cb)
433
434 $self->{texture}[$id] ||= do {
435 my $tex =
436 new_from_image CFClient::Texture
437 $data, minify => 1, mipmap => 1;
438
439 $self->{map}->set_texture ($id, @$tex{qw(name w h s t)}, @{$tex->{minified}});
440 $self->{map_widget}->update;
441
442 $tex
443 };
444} 950}
445 951
446sub sound_play { 952sub sound_play {
447 my ($self, $x, $y, $soundnum, $type) = @_; 953 my ($self, $type, $face, $dx, $dy, $vol) = @_;
448 954
449 $self->{sound_play}->($x, $y, $soundnum, $type); 955 &::audio_sound_play ($face, $dx, $dy, $vol)
956 unless $type & 1; # odd types are silent for future expansion
450} 957}
451 958
452my $LAST_QUERY; # server is stupid, stupid, stupid 959my $LAST_QUERY; # server is stupid, stupid, stupid
453 960
454sub query { 961sub query {
458 $LAST_QUERY = $prompt; 965 $LAST_QUERY = $prompt;
459 966
460 $self->{query}-> ($self, $flags, $prompt); 967 $self->{query}-> ($self, $flags, $prompt);
461} 968}
462 969
463sub drawinfo { 970sub sanitise_xml($) {
464 my ($self, $color, $text) = @_; 971 local $_ = shift;
465 972
466 my @color = ( 973 # we now weed out all tags we do not support
974 s%<(?!/?i>|/?u>|/?b>|fg |/fg>)%&lt;%g;
975 # now all entities
976 s/&(?!amp;|lt;|gt;|apos;|quot;|#[0-9]+;|#x[0-9a-fA-F]+;)/&amp;/g;
977
978 # handle some elements
979 s/<fg name='([^']*)'>(.*?)<\/fg>/<span foreground='$1'>$2<\/span>/gs;
980 s/<fg name="([^"]*)">(.*?)<\/fg>/<span foreground="$1">$2<\/span>/gs;
981
982 $_
983}
984
985our %NAME_TO_COLOR = (
986 black => 0,
987 white => 1,
988 darkblue => 2,
989 red => 3,
990 orange => 4,
991 lightblue => 5,
992 darkorange => 6,
993 green => 7,
994 darkgreen => 8,
995 grey => 9,
996 brown => 10,
997 yellow => 11,
998 tan => 12,
999);
1000
1001our @CF_COLOR = (
467 [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00], 1002 [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00],
468 [1.00, 1.00, 1.00], 1003 [1.00, 1.00, 1.00],
469 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55] 1004 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55]
470 [1.00, 0.00, 0.00], 1005 [1.00, 0.00, 0.00],
471 [1.00, 0.54, 0.00], 1006 [1.00, 0.54, 0.00],
472 [0.11, 0.56, 1.00], 1007 [0.11, 0.56, 1.00],
473 [0.93, 0.46, 0.00], 1008 [0.93, 0.46, 0.00],
474 [0.18, 0.54, 0.34], 1009 [0.18, 0.54, 0.34],
475 [0.56, 0.73, 0.56], 1010 [0.56, 0.73, 0.56],
476 [0.80, 0.80, 0.80], 1011 [0.80, 0.80, 0.80],
477 [0.55, 0.41, 0.13], 1012 [0.75, 0.61, 0.20],
478 [0.99, 0.77, 0.26], 1013 [0.99, 0.77, 0.26],
479 [0.74, 0.65, 0.41], 1014 [0.74, 0.65, 0.41],
480 ); 1015);
481 1016
1017sub msg {
1018 my ($self, $color, $type, $text, @extra) = @_;
1019
1020 $text = sanitise_xml $text;
1021
1022 if (my $cb = $self->{cb_msg}{$type}) {
1023 $_->($self, $color, $type, $text, @extra) for values %$cb;
1024 } elsif ($type =~ /^(?:chargen-race-title|chargen-race-description)$/) {
1025 $type =~ s/-/_/g;
1026 $self->{$type} = $text;
1027 } else {
482 $self->logprint ("info: ", $text); 1028 $self->logprint ("msg: ", $text);
1029 return if $color < 0; # negative color == ignore if not understood
483 1030
484 my $time = sprintf "%02d:%02d:%02d", (localtime time)[2,1,0]; 1031 my $fg = $CF_COLOR[$color & NDI_COLOR_MASK] || [1, 0, 0];
485 1032
486 # try to create single paragraphs of multiple lines sent by the server 1033 ## try to create single paragraphs of multiple lines sent by the server
1034 # no longer neecssary with TRT servers
487 $text =~ s/(?<=\S)\n(?=\w)/ /g; 1035 #$text =~ s/(?<=\S)\n(?=\w)/ /g;
488 1036
489 $text = CFClient::UI::Label::escape $text; 1037 ::message ({
490 $text =~ s/\[b\](.*?)\[\/b\]/<b>\1<\/b>/g; 1038 fg => $fg,
491 $text =~ s/\[color=(.*?)\](.*?)\[\/color\]/<span foreground='\1'>\2<\/span>/g; 1039 markup => $_,
1040 type => $type,
1041 extra => [@extra],
1042 color_flags => $color
1043 }) for split /\n/, $text;
492 1044
493 $self->{logview}->add_paragraph ($color[$color], $_)
494 for map "$time $_", split /\n/, $text;
495 $self->{logview}->scroll_to_bottom;
496
497 $self->{statusbox}->add ($text, 1045 $self->{statusbox}->add ($text,
498 group => $text, 1046 group => $text,
499 fg => $color[$color], 1047 fg => $fg,
500 timeout => $color >= 2 ? 60 : 10, 1048 timeout => $color >= 2 ? 180 : 10,
501 tooltip_font => $::FONT_FIXED, 1049 tooltip_font => $::FONT_FIXED,
502 ); 1050 );
503} 1051 }
504
505sub drawextinfo {
506 my ($self, $color, $type, $subtype, $message) = @_;
507
508 $self->drawinfo ($color, $message);
509} 1052}
510 1053
511sub spell_add { 1054sub spell_add {
512 my ($self, $spell) = @_; 1055 my ($self, $spell) = @_;
513 1056
514 # try to create single paragraphs of multiple lines sent by the server 1057 # try to create single paragraphs out of the multiple lines sent by the server
515 $spell->{message} =~ s/(?<=\S)\n(?=\w)/ /g; 1058 $spell->{message} =~ s/(?<=\S)\n(?=\w)/ /g;
516 $spell->{message} =~ s/\n+$//; 1059 $spell->{message} =~ s/\n+$//;
517 $spell->{message} ||= "Server did not provide a description for this spell."; 1060 $spell->{message} ||= "Server did not provide a description for this spell.";
518 1061
519 $::SPELL_PAGE->add_spell ($spell); 1062 $::SPELL_LIST->add_spell ($spell);
520 1063
521 $self->{map_widget}->add_command ("invoke $spell->{name}", CFClient::UI::Label::escape $spell->{message}); 1064 $self->{map_widget}->add_command ("invoke $spell->{name}", CFPlus::asxml $spell->{message});
522 $self->{map_widget}->add_command ("cast $spell->{name}", CFClient::UI::Label::escape $spell->{message}); 1065 $self->{map_widget}->add_command ("cast $spell->{name}", CFPlus::asxml $spell->{message});
523} 1066}
524 1067
525sub spell_delete { 1068sub spell_delete {
526 my ($self, $spell) = @_; 1069 my ($self, $spell) = @_;
527 1070
528 $::SPELL_PAGE->remove_spell ($spell); 1071 $::SPELL_LIST->remove_spell ($spell);
1072}
1073
1074sub setup {
1075 my ($self, $setup) = @_;
1076
1077 $self->{map_widget}->set_tilesize ($self->{tilesize});
1078 $::MAP->resize ($self->{mapw}, $self->{maph});
529} 1079}
530 1080
531sub addme_success { 1081sub addme_success {
532 my ($self) = @_; 1082 my ($self) = @_;
533 1083
534 my $skill_help = CFClient::load_pod CFClient::find_rcfile "pod/skill_help.pod", skill_help => 1, sub {
535 my ($pom) = @_;
536
537 my %skill_help; 1084 my %skill_help;
538 1085
539 for my $head2 ($pom->head1->[3]->head2) { 1086 for my $node (CFPlus::Pod::find skill_description => "*") {
540 $skill_help{$head2->title} = CFClient::pod_to_pango $head2->content; 1087 my (undef, @par) = CFPlus::Pod::section_of $node;
541 } 1088 $skill_help{$node->{kw}[0]} = CFPlus::Pod::as_label @par;
542
543 \%skill_help
544 }; 1089 };
545 1090
546 for my $skill (values %{$self->{skill_info}}) { 1091 for my $skill (values %{$self->{skill_info}}) {
547 $self->{map_widget}->add_command ("ready_skill $skill", 1092 $self->{map_widget}->add_command ("ready_skill $skill",
548 (CFClient::UI::Label::escape "Ready the skill '$skill'\n\n") 1093 (CFPlus::asxml "Ready the skill '$skill'\n\n")
549 . $skill_help->{$skill}); 1094 . $skill_help{$skill});
550 $self->{map_widget}->add_command ("use_skill $skill", 1095 $self->{map_widget}->add_command ("use_skill $skill",
551 (CFClient::UI::Label::escape "Immediately use the skill '$skill'\n\n") 1096 (CFPlus::asxml "Immediately use the skill '$skill'\n\n")
552 . $skill_help->{$skill}); 1097 . $skill_help{$skill});
553 } 1098 }
554} 1099}
555 1100
556sub eof { 1101sub eof {
557 my ($self) = @_; 1102 my ($self) = @_;
559 $self->{map_widget}->clr_commands; 1104 $self->{map_widget}->clr_commands;
560 1105
561 ::stop_game (); 1106 ::stop_game ();
562} 1107}
563 1108
564sub image_info {
565 my ($self, $numfaces) = @_;
566
567 $self->{num_faces} = $numfaces;
568 $self->{face_prefetch} = [1 .. $numfaces];
569 $self->face_prefetch;
570}
571
572sub face_prefetch {
573 my ($self) = @_;
574
575 return unless $::CFG->{face_prefetch};
576
577 if ($self->{num_faces}) {
578 return if @{ $self->{send_queue} || [] };
579 my $todo = @{ $self->{face_prefetch} }
580 or return;
581
582 my ($face) = splice @{ $self->{face_prefetch} }, + rand @{ $self->{face_prefetch} }, 1, ();
583
584 $self->send ("requestinfo image_sums $face $face");
585
586 $self->{statusbox}->add (CFClient::UI::Label::escape "prefetching $todo",
587 group => "prefetch", timeout => 3, fg => [1, 1, 0, 0.5]);
588 } elsif (!exists $self->{num_faces}) {
589 $self->send ("requestinfo image_info");
590
591 $self->{num_faces} = 0;
592
593 $self->{statusbox}->add (CFClient::UI::Label::escape "starting to prefetch",
594 group => "prefetch", timeout => 3, fg => [1, 1, 0, 0.5]);
595 }
596}
597
598sub update_floorbox { 1109sub update_floorbox {
599 $CFClient::UI::ROOT->on_refresh ($::FLOORBOX => sub { 1110 $CFPlus::UI::ROOT->on_refresh ($::FLOORBOX => sub {
600 return unless $::CONN; 1111 return unless $::CONN;
601 1112
602 $::FLOORBOX->clear; 1113 $::FLOORBOX->clear;
603 1114
1115 my @add;
1116
604 my $row; 1117 my $row;
605 for (sort { $a->{count} <=> $b->{count} } values %{ $::CONN->{container}{0} }) { 1118 for (sort { $a->{count} <=> $b->{count} } values %{ $::CONN->{container}{$::CONN->{open_container} || 0} }) {
606 if ($row < 6) { 1119 if ($row < 6) {
607 local $_->{face_widget}; # hack to force recreation of widget 1120 local $_->{face_widget}; # hack to force recreation of widget
608 local $_->{desc_widget}; # hack to force recreation of widget 1121 local $_->{desc_widget}; # hack to force recreation of widget
609 CFClient::Item::update_widgets $_; 1122 CFPlus::Item::update_widgets $_;
610 1123
1124 push @add,
611 $::FLOORBOX->add (0, $row, $_->{face_widget}); 1125 0, $row, $_->{face_widget},
612 $::FLOORBOX->add (1, $row, $_->{desc_widget}); 1126 1, $row, $_->{desc_widget};
613 1127
614 $row++; 1128 $row++;
615 } else { 1129 } else {
616 $::FLOORBOX->add (1, $row, new CFClient::UI::Button 1130 push @add, 1, $row, new CFPlus::UI::Button
617 text => "More...", 1131 text => "More...",
618 on_activate => sub { ::toggle_player_page ($::INVENTORY_PAGE); 0 }, 1132 on_activate => sub { ::toggle_player_page ($::INVENTORY_PAGE); 0 },
619 ); 1133 ;
620 last; 1134 last;
621 } 1135 }
622 } 1136 }
1137 if ($::CONN->{open_container}) {
1138 push @add, 1, $row++, new CFPlus::UI::Button
1139 text => "Close container",
1140 on_activate => sub { $::CONN->send ("apply $::CONN->{open_container}") }
1141 ;
1142 }
1143
1144 $::FLOORBOX->add_at (@add);
623 }); 1145 });
624 1146
625 $::WANT_REFRESH++; 1147 $::WANT_REFRESH->start;
626} 1148}
627 1149
628sub set_opencont { 1150sub set_opencont {
629 my ($conn, $tag, $name) = @_; 1151 my ($conn, $tag, $name) = @_;
630 $conn->{open_container} = $tag; 1152 $conn->{open_container} = $tag;
1153 update_floorbox;
631 1154
632 $::INV_RIGHT_HB->clear (); 1155 $::INVR_HB->clear ();
633 $::INV_RIGHT_HB->add (new CFClient::UI::Label align => 0, expand => 1, text => $name); 1156 $::INVR_HB->add (new CFPlus::UI::Label align => 0, expand => 1, text => $name);
634 1157
635 if ($tag != 0) { # Floor isn't closable, is it? 1158 if ($tag != 0) { # Floor isn't closable, is it?
636 $::INV_RIGHT_HB->add (new CFClient::UI::Button 1159 $::INVR_HB->add (new CFPlus::UI::Button
637 text => "Close container", 1160 text => "Close container",
638 tooltip => "Close the currently open container (if one is open)", 1161 tooltip => "Close the currently open container (if one is open)",
639 on_activate => sub { 1162 on_activate => sub {
640 $::CONN->send ("apply $tag") # $::CONN->{open_container}") 1163 $::CONN->send ("apply $tag") # $::CONN->{open_container}")
641 if $tag != 0; 1164 if $tag != 0;
642 #if $CONN->{open_container} != 0;
643 0 1165 0
644 }, 1166 },
645 ); 1167 );
646 } 1168 }
647 1169
649} 1171}
650 1172
651sub update_containers { 1173sub update_containers {
652 my ($self) = @_; 1174 my ($self) = @_;
653 1175
654 $CFClient::UI::ROOT->on_refresh ("update_containers_$self" => sub { 1176 $CFPlus::UI::ROOT->on_refresh ("update_containers_$self" => sub {
655 for my $tag (keys %{ delete $self->{update_container} }) { 1177 my $todo = delete $self->{update_container}
1178 or return;
1179
1180 for my $tag (keys %$todo) {
1181 update_floorbox if $tag == 0 or $tag == $self->{open_container};
656 if ($tag == 0) { 1182 if ($tag == 0) {
657 update_floorbox;
658 $::INVR->set_items ($self->{container}{0}) 1183 $::INVR->set_items ($self->{container}{0})
659 if $tag == $self->{open_container}; 1184 if $tag == $self->{open_container};
660 } elsif ($tag == $self->{player}{tag}) { 1185 } elsif ($tag == $self->{player}{tag}) {
661 $::INV->set_items ($self->{container}{$tag}) 1186 $::INV->set_items ($self->{container}{$tag})
662 } else { 1187 } else {
693sub item_update { 1218sub item_update {
694 my ($self, $item) = @_; 1219 my ($self, $item) = @_;
695 1220
696 #d# print "item_update: $item->{tag} in $item->{container} ($self->{player}{tag}) ($::CONN->{open_container})\n"; 1221 #d# print "item_update: $item->{tag} in $item->{container} ($self->{player}{tag}) ($::CONN->{open_container})\n";
697 1222
698 CFClient::Item::update_widgets $item; 1223 CFPlus::Item::update_widgets $item;
699 1224
700 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) { 1225 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) {
701 set_opencont ($::CONN, 0, "Floor"); 1226 set_opencont ($::CONN, 0, "Floor");
702 1227
703 } elsif ($item->{flags} & F_OPEN) { 1228 } elsif ($item->{flags} & F_OPEN) {
704 set_opencont ($::CONN, $item->{tag}, CFClient::Item::desc_string $item); 1229 set_opencont ($::CONN, $item->{tag}, CFPlus::Item::desc_string $item);
705 1230
706 } else { 1231 } else {
707 $self->{update_container}{$item->{container}}++; 1232 $self->{update_container}{$item->{container}}++;
708 $self->update_containers; 1233 $self->update_containers;
709# if ($item->{container} == 0) {
710# update_floorbox;
711# update_container (0);
712# } elsif ($item->{container} == $self->{player}{tag}) {
713# $::INV->set_items ($self->{container}{$item->{container}})
714# }
715 } 1234 }
716} 1235}
717 1236
718sub player_update { 1237sub player_update {
719 my ($self, $player) = @_; 1238 my ($self, $player) = @_;
1239
1240 $self->update_weight;
1241}
1242
1243sub update_weight {
1244 my ($self) = @_;
1245
1246 my $weight = .001 * $self->{player}{weight};
1247 my $limit = .001 * $self->{stat}{+CS_STAT_WEIGHT_LIM};
1248
720 $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $player->{weight} / 1000); 1249 $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $weight);
1250 $::STATWIDS->{m_weight}->set_text (sprintf "%.1fkg", $limit);
1251 $::STATWIDS->{i_weight}->set_text (sprintf "%.1f/%.1fkg", $weight, $limit);
721} 1252}
722 1253
723sub update_server_info { 1254sub update_server_info {
724 my ($self) = @_; 1255 my ($self) = @_;
725 1256
728 $::SERVER_INFO->set_markup ( 1259 $::SERVER_INFO->set_markup (
729 "server <tt>$self->{host}:$self->{port}</tt>\n" 1260 "server <tt>$self->{host}:$self->{port}</tt>\n"
730 . "protocol version <tt>$self->{version}</tt>\n" 1261 . "protocol version <tt>$self->{version}</tt>\n"
731 . "minimap support $yesno[$self->{setup}{mapinfocmd} > 0]\n" 1262 . "minimap support $yesno[$self->{setup}{mapinfocmd} > 0]\n"
732 . "extended command support $yesno[$self->{setup}{extcmd} > 0]\n" 1263 . "extended command support $yesno[$self->{setup}{extcmd} > 0]\n"
1264 . "examine command support $yesno[$self->{setup}{excmd} > 0]\n"
1265 . "editing support $yesno[!!$self->{editor_support}]\n"
1266 . "map attributes $yesno[$self->{setup}{extmap} > 0]\n"
1267 . "big image protocol support $yesno[$self->{setup}{fxix} > 0]\n"
733 . "cfplus support $yesno[$self->{cfplus_ext} > 0]" 1268 . "cfplus support $yesno[$self->{cfplus_ext} > 0]"
734 . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n" 1269 . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n"
735 . "map size $self->{mapw}×$self->{maph}\n" 1270 . "map size $self->{mapw}×$self->{maph}\n"
736 ); 1271 );
1272
737} 1273}
738 1274
739sub logged_in { 1275sub logged_in {
740 my ($self) = @_; 1276 my ($self) = @_;
741 1277
742 $self->send_ext_req (cfplus_support => "1", sub { 1278 $self->send_ext_req (cfplus_support => version => 2, sub {
1279 my (%msg) = @_;
1280
743 $self->{cfplus_ext} = $_[0]; 1281 $self->{cfplus_ext} = $msg{version};
744 $self->update_server_info; 1282 $self->update_server_info;
1283
1284 if ($self->{cfplus_ext} >= 2) {
1285 $self->send_ext_req ("editor_support", sub {
1286 $self->{editor_support} = { @_ };
1287 $self->update_server_info;
1288
1289 0
1290 });
1291 }
1292
1293 0
745 }); 1294 });
746 1295
747 $self->update_server_info; 1296 $self->update_server_info;
748 1297
749 $self->send_command ("output-sync $::CFG->{output_sync}"); 1298 $self->send_command ("output-sync $::CFG->{output_sync}");
750 $self->send_command ("output-count $::CFG->{output_count}"); 1299 $self->send_command ("output-count $::CFG->{output_count}");
1300 $self->send_command ("output-rate $::CFG->{output_rate}") if $::CFG->{output_rate} > 0;
751 $self->send_command ("pickup $::CFG->{pickup}"); 1301 $self->send_command ("pickup $::CFG->{pickup}");
752} 1302}
753 1303
754sub lookat { 1304sub lookat {
755 my ($self, $x, $y) = @_; 1305 my ($self, $x, $y) = @_;
756 1306
757 if ($self->{cfplus_ext}) { 1307 if ($self->{cfplus_ext}) {
758 $self->send_ext_req (lookat => "$x $y", sub { 1308 $self->send_ext_req (lookat => $x, $y, sub {
759 my %res = split /\x00/, $_[0]; 1309 my (%msg) = @_;
760 1310
761 if (exists $res{npc_dialog}) { 1311 if (exists $msg{npc_dialog}) {
762 # start npc chat dialog 1312 # start npc chat dialog
763 $self->{npc_dialog} = new CFClient::NPCDialog:: 1313 $self->{npc_dialog} = new CFPlus::NPCDialog::
764 dx => $x, 1314 token => $msg{npc_dialog},
765 dy => $y,
766 title => "$res{npc_dialog} (NPC)", 1315 title => "$msg{npc_dialog}[0] (NPC)",
767 conn => $self, 1316 conn => $self,
768 ; 1317 ;
769 } 1318 }
770 }); 1319 });
771 } 1320 }
774} 1323}
775 1324
776sub destroy { 1325sub destroy {
777 my ($self) = @_; 1326 my ($self) = @_;
778 1327
779 $self->{npc_dialog}->destroy 1328 (delete $self->{npc_dialog})->destroy
780 if $self->{npc_dialog}; 1329 if $self->{npc_dialog};
781 1330
782 $self->SUPER::destroy; 1331 $self->SUPER::destroy;
783}
784 1332
1333 %$self = ();
1334}
1335
785package CFClient::NPCDialog; 1336package CFPlus::NPCDialog;
786 1337
787our @ISA = 'CFClient::UI::FancyFrame'; 1338our @ISA = 'CFPlus::UI::Toplevel';
788 1339
789sub new { 1340sub new {
790 my $class = shift; 1341 my $class = shift;
791 1342
792 my $self = $class->SUPER::new ( 1343 my $self = $class->SUPER::new (
795 name => "npc_dialog", 1346 name => "npc_dialog",
796 force_w => $::WIDTH * 0.7, 1347 force_w => $::WIDTH * 0.7,
797 force_h => $::HEIGHT * 0.7, 1348 force_h => $::HEIGHT * 0.7,
798 title => "NPC Dialog", 1349 title => "NPC Dialog",
799 kw => { hi => 0, yes => 0, no => 0 }, 1350 kw => { hi => 0, yes => 0, no => 0 },
1351 has_close_button => 1,
800 @_, 1352 @_,
801 ); 1353 );
802 1354
803 Scalar::Util::weaken (my $this = $self); 1355 CFPlus::weaken (my $this = $self);
1356
1357 $self->connect (delete => sub { $this->destroy; 1 });
804 1358
805 # better use a pane... 1359 # better use a pane...
806 $self->add (my $hbox = new CFClient::UI::HBox); 1360 $self->add (my $hbox = new CFPlus::UI::HBox);
807 $hbox->add ($self->{textview} = new CFClient::UI::TextScroller expand => 1); 1361 $hbox->add ($self->{textview} = new CFPlus::UI::TextScroller expand => 1);
808 1362
809 $hbox->add (my $vbox = new CFClient::UI::VBox); 1363 $hbox->add (my $vbox = new CFPlus::UI::VBox);
810 1364
811 $vbox->add (new CFClient::UI::Label text => "Message Entry:"); 1365 $vbox->add (new CFPlus::UI::Label text => "Message Entry:");
812 $vbox->add ($self->{entry} = new CFClient::UI::Entry 1366 $vbox->add ($self->{entry} = new CFPlus::UI::Entry
813 tooltip => "Enter a message you want to tell the NPC and press <b>return</b>.\n\n" 1367 tooltip => "#npc_message_entry",
814 . "Sometimes you have to tell an NPC something you cannot find out during "
815 . "a normal conversation (such as a password). In those cases you have to use "
816 . "this text entry. You can also enter responses manually instead of using the response "
817 . "buttons below.",
818 on_activate => sub { 1368 on_activate => sub {
819 my ($entry, $text) = @_; 1369 my ($entry, $text) = @_;
820 1370
821 return unless $text =~ /\S/; 1371 return unless $text =~ /\S/;
822 1372
825 1375
826 0 1376 0
827 }, 1377 },
828 ); 1378 );
829 1379
830 $vbox->add ($self->{options} = new CFClient::UI::VBox); 1380 $vbox->add ($self->{options} = new CFPlus::UI::VBox);
831 1381
832 $self->{bye_button} = new CFClient::UI::Button 1382 $self->{bye_button} = new CFPlus::UI::Button
833 text => "Bye (close)", 1383 text => "Bye (close)",
834 tooltip => "Use this button to end talking to the NPC. This also closes the dialog window.", 1384 tooltip => "Use this button to end talking to the NPC. This also closes the dialog window.",
835 on_activate => sub { $this->destroy; 0 }, 1385 on_activate => sub { $this->destroy; 1 },
836 ; 1386 ;
837 1387
838 $self->update_options; 1388 $self->update_options;
839 1389
840 $self->{token} = $self->{conn}->ext_token; 1390 $self->{id} = "npc-channel-" . $self->{conn}->token;
841 $self->{conn}->connect_ext ($self->{token} => sub { $this->feed (@_) }); 1391 $self->{conn}->connect_ext ($self->{id} => sub {
842 $self->{conn}->send ("ext npc_dialog_begin $self->{token} $self->{dx} $self->{dy}"); 1392 $this->feed (@_) if $this;
1393 });
1394
1395 $self->{conn}->send_ext_msg (npc_dialog_begin => $self->{id}, $self->{token});
843 1396
844 $self->{entry}->grab_focus; 1397 $self->{entry}->grab_focus;
845 1398
846 $self->{textview}->add_paragraph ([1, 1, 0, 1], "<small>[starting conversation with <b>$self->{title}</b>]</small>\n\n"); 1399 $self->{textview}->add_paragraph ({
1400 fg => [1, 1, 0, 1],
1401 markup => "<small>[starting conversation with <b>$self->{title}</b>]</small>\n\n",
1402 });
847 1403
848 $self->show; 1404 $self->show;
849 $self 1405 $self
850}; 1406};
851 1407
852sub update_options { 1408sub update_options {
853 my ($self) = @_; 1409 my ($self) = @_;
854 1410
855 Scalar::Util::weaken $self; 1411 CFPlus::weaken $self;
856 1412
857 $self->{options}->clear; 1413 $self->{options}->clear;
858 $self->{options}->add ($self->{bye_button}); 1414 $self->{options}->add ($self->{bye_button});
859 1415
860 for my $kw (sort keys %{ $self->{kw} }) { 1416 for my $kw (sort keys %{ $self->{kw} }) {
861 $self->{options}->add (new CFClient::UI::Button 1417 $self->{options}->add (new CFPlus::UI::Button
862 text => $kw, 1418 text => $kw,
863 on_activate => sub { 1419 on_activate => sub {
864 $self->send ($kw); 1420 $self->send ($kw);
865 0 1421 0
866 }, 1422 },
867 ); 1423 );
868 } 1424 }
869} 1425}
870 1426
871sub feed { 1427sub feed {
872 my ($self, $data) = @_; 1428 my ($self, $type, @arg) = @_;
873 1429
874 Scalar::Util::weaken $self; 1430 CFPlus::weaken $self;
875 1431
876 my ($type, $msg) = split / /, $data, 2;
877
878 if ($type eq "msg") { 1432 if ($type eq "update") {
879 my ($msg, @kw) = split /\x00/, $msg; 1433 my (%info) = @arg;
880 $self->{kw}{$_} = 1 for @kw;
881 1434
882 $msg = "\n" . CFClient::UI::Label::escape $msg; 1435 $self->{kw}{$_} = 1 for @{$info{add_topics} || []};
883 my $match = join "|", map "\\b\Q$_\E\\b", sort { (length $b) <=> (length $a) } keys %{ $self->{kw} }; 1436 $self->{kw}{$_} = 0 for @{$info{del_topics} || []};
884 my @link;
885 $msg =~ s{
886 ($match)
887 }{
888 my $kw = $1;
889
890 push @link, new CFClient::UI::Label
891 markup => "<span foreground='#c0c0ff' underline='single'>$kw</span>",
892 can_hover => 1,
893 can_events => 1,
894 padding_x => 0,
895 padding_y => 0,
896 on_button_up => sub {
897 $self->send ($kw);
898 };
899
900 chr 0xfffc
901 }giex;
902 1437
903 $self->{textview}->add_paragraph ([1, 1, 1, 1], [$msg, @link]); 1438 if (exists $info{msg}) {
1439 my $text = "\n" . CFPlus::Protocol::sanitise_xml $info{msg};
1440 my $match = join "|", map "\\b\Q$_\E\\b", sort { (length $b) <=> (length $a) } keys %{ $self->{kw} };
1441 my @link;
1442 $text =~ s{
1443 ($match)
1444 }{
1445 my $kw = $1;
1446
1447 push @link, new CFPlus::UI::Label
1448 markup => "<span foreground='#c0c0ff' underline='single'>$kw</span>",
1449 can_hover => 1,
1450 can_events => 1,
1451 padding_x => 0,
1452 padding_y => 0,
1453 on_button_up => sub {
1454 $self->send ($kw);
1455 };
1456
1457 "\x{fffc}"
1458 }giex;
1459
1460 $self->{textview}->add_paragraph ({ markup => $text, widget => \@link });
904 $self->{textview}->scroll_to_bottom; 1461 $self->{textview}->scroll_to_bottom;
1462 }
1463
905 $self->update_options; 1464 $self->update_options;
906 } else { 1465 } else {
907 $self->destroy; 1466 $self->destroy;
908 } 1467 }
909 1468
911} 1470}
912 1471
913sub send { 1472sub send {
914 my ($self, $msg) = @_; 1473 my ($self, $msg) = @_;
915 1474
916 $self->{conn}->send ("ext npc_dialog_tell $self->{token} $msg"); 1475 $self->{textview}->add_paragraph ({ markup => "\n" . CFPlus::asxml $msg });
917 $self->{textview}->add_paragraph ([1, 1, 0, 1], "\n" . CFClient::UI::Label::escape $msg);
918 $self->{textview}->scroll_to_bottom; 1476 $self->{textview}->scroll_to_bottom;
1477
1478 $self->{conn}->send_ext_msg (npc_dialog_tell => $self->{id}, $msg);
919} 1479}
920 1480
921sub destroy { 1481sub destroy {
922 my ($self) = @_; 1482 my ($self) = @_;
923 1483
924 #Carp::cluck "debug\n";#d# #todo# enable: destroy gets called twice because scalar keys {} is 1 1484 #Carp::cluck "debug\n";#d# #todo# enable: destroy gets called twice because scalar keys {} is 1
925 1485
1486 if ($self->{conn}) {
1487 $self->{conn}->send_ext_msg (npc_dialog_end => $self->{id}) if $self->{id};
926 delete $self->{conn}{npc_dialog}; 1488 delete $self->{conn}{npc_dialog};
927 $self->{conn}->disconnect_ext ($self->{token}); 1489 $self->{conn}->disconnect_ext ($self->{id});
1490 }
928 1491
929 $self->SUPER::destroy; 1492 $self->SUPER::destroy;
930} 1493}
931 1494
9321; 14951
1496

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines