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.183 by root, Wed Dec 26 21:03:21 2007 UTC vs.
Revision 1.218 by root, Thu Apr 8 19:11:21 2010 UTC

1package DC::Protocol; 1package DC::Protocol;
2 2
3use utf8; 3use common::sense;
4use strict; 4
5use Guard ();
5 6
6use Deliantra::Protocol::Constants; 7use Deliantra::Protocol::Constants;
7 8
8use DC; 9use DC;
9use DC::DB; 10use DC::DB;
12use DC::Macro; 13use DC::Macro;
13use DC::Item; 14use DC::Item;
14 15
15use base 'Deliantra::Protocol::Base'; 16use base 'Deliantra::Protocol::Base';
16 17
18our $TEX_DIALOGUE = new_from_resource DC::Texture
19 "dialogue.png", minify => 1, mipmap => 1;
20
21our $TEX_NOFACE = new_from_resource DC::Texture
22 "noface.png", minify => 1, mipmap => 1, wrap => 1;
23
24sub MIN_TEXTURE_UNUSED() { 1 }#d#
25
17sub new { 26sub new {
18 my ($class, %arg) = @_; 27 my ($class, %arg) = @_;
19 28
20 my $self = $class->SUPER::new (%arg, 29 my $self = $class->SUPER::new (%arg,
21 setup_req => { 30 setup_req => {
22 extmap => 1, 31 extmap => 1,
23 excmd => 1, 32 excmd => 1,
24 widget => 1, 33 widget => 2,
25 %{$arg{setup_req} || {}}, 34 %{$arg{setup_req} || {}},
26 }, 35 },
27 ); 36 );
28 37
29 $self->{map_widget}->clr_commands; 38 $self->{map_widget}->clr_commands;
30 39
31 my @cmd_help = map { 40 my @cmd_help = map {
32 $_->{kw}[0] =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x 41 $_->[DC::Pod::N_KW][0] =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x
33 or die "unparseable command help: $_->{kw}[0]"; 42 or die "unparseable command help: $_->[DC::Pod::N_KW][0]";
34 43
35 my $cmd = $1; 44 my $cmd = $1;
36 my @args = split /\|/, $2; 45 my @args = split /\|/, $2;
37 @args = (".*") unless @args; 46 @args = (".*") unless @args;
38 47
43 for @args; 52 for @args;
44 53
45 map ["$cmd$_", $text], 54 map ["$cmd$_", $text],
46 sort { (length $a) <=> (length $b) } 55 sort { (length $a) <=> (length $b) }
47 @args 56 @args
48 } sort { $a->{par} <=> $b->{par} } 57 } sort { $a->[DC::Pod::N_PAR] <=> $b->[DC::Pod::N_PAR] }
49 DC::Pod::find command => "*"; 58 DC::Pod::find command => "*";
50 59
51 $self->{json_coder} 60 $self->{json_coder}
52 ->convert_blessed 61 ->convert_blessed
53 ->filter_json_single_key_object ("\fw" => sub { 62 ->filter_json_single_key_object ("\fw" => sub {
64 $self->{on_stop_game_guard} = $self->{map_widget}{root}->connect (stop_game => sub { 73 $self->{on_stop_game_guard} = $self->{map_widget}{root}->connect (stop_game => sub {
65 for my $ws (values %{delete $self->{widgetset} || {}}) { 74 for my $ws (values %{delete $self->{widgetset} || {}}) {
66 $_->destroy 75 $_->destroy
67 for values %{delete $ws->{w} || {}}; 76 for values %{delete $ws->{w} || {}};
68 } 77 }
78
79 delete $self->{items};
80 $::INV->clear;
81 $::INVR->clear;
82 $::INVR_HB->clear;
83 $::FLOORBOX->clear;
69 }); 84 });
70 85
71 $self->{map_widget}->add_command (@$_) 86 $self->{map_widget}->add_command (@$_)
72 for @cmd_help; 87 for @cmd_help;
73 88
74 { 89 {
75 $self->{dialogue} = my $tex = new_from_file DC::Texture 90 $self->{dialogue} = my $tex = $TEX_DIALOGUE;
76 DC::find_rcfile "dialogue.png", minify => 1, mipmap => 1;
77 $self->{map}->set_texture (1, @$tex{qw(name w h s t)}, @{$tex->{minified}}); 91 $self->{map}->set_texture (1, @$tex{qw(name w h s t)}, @{$tex->{minified}});
78 } 92 }
79 93
80 { 94 {
81 $self->{noface} = my $tex = new_from_file DC::Texture 95 $self->{noface} = my $tex = $TEX_NOFACE;
82 DC::find_rcfile "noface.png", minify => 1, mipmap => 1;
83 $self->{map}->set_texture (2, @$tex{qw(name w h s t)}, @{$tex->{minified}}); 96 $self->{map}->set_texture (2, @$tex{qw(name w h s t)}, @{$tex->{minified}});
84 } 97 }
98
99# $self->{expire_count} = DC::DB::FIRST_TILE_ID; # minimum non-fixed tile id
100# $self->{expire_w} = EV::timer 1, 1, sub {
101# my $count = (int @{ $self->{texture} } / MIN_TEXTURE_UNUSED) || 1;
102#
103# for ($self->{map}->expire_textures ($self->{expire_count}, $count)) {
104# warn DC::SvREFCNT $self->{texture}[$_];
105# $self->{texture}[$_]->unload;
106# warn "expire texture $_\n";#d#
107# }
108#
109# ($self->{expire_count} += $count) < @{ $self->{texture} }
110# or $self->{expire_count} = DC::DB::FIRST_TILE_ID;
111# warn "count is $count\n";#d#
112# };
85 113
86 $self->{open_container} = 0; 114 $self->{open_container} = 0;
87 115
88 # per server 116 # per server
89 $self->{mapcache} = "mapcache_$self->{host}_$self->{port}"; 117 $self->{mapcache} = "mapcache_$self->{host}_$self->{port}";
102} 130}
103 131
104sub ext_capabilities { 132sub ext_capabilities {
105 my ($self, %cap) = @_; 133 my ($self, %cap) = @_;
106 134
107 #$self->send ("setup sound 0"); # we use a different protocol
108 $self->update_fx_want; 135 $self->update_fx_want;
109 136
110 $self->send_exti_req (resource => "exp_table", sub { 137 $self->send_exti_req (resource => "exp_table", sub {
111 my ($exp_table) = @_; 138 my ($exp_table) = @_;
112 139
193 "DC::UI::$class"->new (%$args) 220 "DC::UI::$class"->new (%$args)
194 } 221 }
195 ); 222 );
196} 223}
197 224
225# widgetset create template
226sub ext_ws_ct {
227 my ($self, $ws, $type, $template, $done_cb, $cfg) = @_;
228
229 $done_cb ||= sub { };
230
231 my $parse_list; $parse_list = sub {
232 my ($list) = @_;
233 my @w;
234
235 while (@$list) {
236 my ($class, $args) = splice @$list, 0, 2;
237 my $name = delete $args->{s_id};
238 my $cl = delete $args->{s_cl};
239 my $cfg = delete $cfg->{$name};
240 my $id = delete $cfg->{id};
241 my $w = eval { "DC::UI::$class"->new (%$args, %{ $cfg || {} }) }
242 or next;
243
244 $self->widget_associate ($ws, $id, $w)
245 if $id;
246
247 $w->add ($parse_list->($cl))
248 if $cl;
249
250 push @w, $w;
251 }
252
253 @w
254 };
255
256 # either array reference, or face #
257 if ($type eq "inline") {
258 $done_cb->();
259 $parse_list->($template);
260 } elsif ($type eq "face") {
261 my $handler; $handler = $self->register_face_handler ($template, sub {
262 my ($face) = @_;
263
264 undef $handler;
265 $done_cb->();
266 $parse_list->($self->{json_coder}->decode ($face->{data}));
267 });
268 } else {
269 $done_cb->(0);
270 }
271}
272
198# widgetset associate 273# widgetset associate
199sub ext_ws_a { 274sub ext_ws_a {
200 my ($self, %ass) = @_; 275 my ($self, %ass) = @_;
201 276
202 # everything that has a name, wether conceivably useful or not 277 # everything that has a name, wether conceivably useful or not
203 my %wkw = ( 278 my %wkw = (
204 root => $DC::UI::ROOT, 279 root => $DC::UI::ROOT,
205 tooltip => $DC::UI::TOOLTIP, 280 tooltip => $DC::UI::TOOLTIP,
206 281
207 mapwidget => $::MAPWIDGET, 282 mapwidget => $::MAPWIDGET,
283 menubar => $::MENUBAR,
284 menupopup => $::MENUPOPUP,
285 pickup_enable => $::PICKUP_ENABLE,
208 buttonbar => $::BUTTONBAR, 286 buttonbar => $::BUTTONBAR,
209 metaserver => $::METASERVER, 287 metaserver => $::METASERVER,
210 buttonbar => $::BUTTONBAR, 288 buttonbar => $::BUTTONBAR,
211 login_button => $::LOGIN_BUTTON, 289 login_button => $::LOGIN_BUTTON,
212 quit_dialog => $::QUIT_DIALOG, 290 quit_dialog => $::QUIT_DIALOG,
228 spell_list => $::SPELL_LIST, 306 spell_list => $::SPELL_LIST,
229 307
230 floorbox => $::FLOORBOX, 308 floorbox => $::FLOORBOX,
231 help_window => $::HELP_WINDOW, 309 help_window => $::HELP_WINDOW,
232 message_window => $::MESSAGE_WINDOW, 310 message_window => $::MESSAGE_WINDOW,
311 message_dist => $::MESSAGE_DIST,
233 statusbox => $::SDTATUSBOX, 312 statusbox => $::STATUSBOX,
234 313
235 inv => $::INV, 314 inv => $::INV,
236 invr => $::INVR, 315 invr => $::INVR,
237 invr_hb => $::INVR_HB, 316 invr_hb => $::INVR_HB,
238 ); 317 );
286 365
287# message window 366# message window
288sub ext_channel_info { 367sub ext_channel_info {
289 my ($self, $info) = @_; 368 my ($self, $info) = @_;
290 $self->{channels}->{$info->{id}} = $info; 369 $self->{channels}->{$info->{id}} = $info;
291 $::MESSAGE_WINDOW->add_channel ($info); 370 $::MESSAGE_DIST->add_channel ($info);
292} 371}
293 372
294############################################################################# 373#############################################################################
295 374
296sub logprint { 375sub logprint {
322 ? (($new & $_ ? "+" : "-") . $self->{spell_paths}{$_}) 401 ? (($new & $_ ? "+" : "-") . $self->{spell_paths}{$_})
323 : () 402 : ()
324 } 403 }
325 sort { $a <=> $b } keys %{$self->{spell_paths}}; 404 sort { $a <=> $b } keys %{$self->{spell_paths}};
326 405
327 join "", @diff 406 "\u$name: " . (join ", ", @diff)
328} 407}
329 408
330# all stats that are chacked against changes 409# all stats that are chacked against changes
331my @statchange = ( 410my @statchange = (
332 [&CS_STAT_STR => \&_stat_numdiff, "Str"], 411 [&CS_STAT_STR => \&_stat_numdiff, "Str"],
387 } 466 }
388 467
389 if ( 468 if (
390 my @diffs = map $_->[1]->($self, $_->[2], $prev->{$_->[0]}, $stats->{$_->[0]}), @statchange 469 my @diffs = map $_->[1]->($self, $_->[2], $prev->{$_->[0]}, $stats->{$_->[0]}), @statchange
391 ) { 470 ) {
392 my $msg = "<b>stat change</b>: " . (join " ", @diffs); 471 my $msg = "<b>stat change</b>: " . (join " ", map "($_)", @diffs);
393 $self->{statusbox}->add ($msg, group => "stat $msg", fg => [0.8, 1, 0.2, 1], timeout => 20); 472 $self->{statusbox}->add ($msg, group => "stat $msg", fg => [0.8, 1, 0.2, 1], timeout => 20);
394 } 473 }
395 474
396 $self->update_stats_window ($stats, $prev); 475 $self->update_stats_window ($stats, $prev);
397 476
435 514
436 $::GAUGES->{hp} ->set_value ($hp, $hp_m); 515 $::GAUGES->{hp} ->set_value ($hp, $hp_m);
437 $::GAUGES->{mana} ->set_value ($sp, $sp_m); 516 $::GAUGES->{mana} ->set_value ($sp, $sp_m);
438 $::GAUGES->{food} ->set_value ($fo, $fo_m); 517 $::GAUGES->{food} ->set_value ($fo, $fo_m);
439 $::GAUGES->{grace} ->set_value ($gr, $gr_m); 518 $::GAUGES->{grace} ->set_value ($gr, $gr_m);
440 $::GAUGES->{exp} ->set_text ("Exp: " . (::formsep ($stats->{+CS_STAT_EXP64})) 519 $::GAUGES->{exp} ->set_label ("Exp: " . (::formsep ($stats->{+CS_STAT_EXP64}))#d#
441 . " (lvl " . ($stats->{+CS_STAT_LEVEL} * 1) . ")"); 520 . " (lvl " . ($stats->{+CS_STAT_LEVEL} * 1) . ")");
442 $::GAUGES->{prg} ->set_value ($stats->{+CS_STAT_LEVEL}, $stats->{+CS_STAT_EXP64}); 521 $::GAUGES->{exp} ->set_value ($stats->{+CS_STAT_LEVEL}, $stats->{+CS_STAT_EXP64});
443 $::GAUGES->{range} ->set_text ($stats->{+CS_STAT_RANGE}); 522 $::GAUGES->{range} ->set_text ($stats->{+CS_STAT_RANGE});
444 my $title = $stats->{+CS_STAT_TITLE}; 523 my $title = $stats->{+CS_STAT_TITLE};
445 $title =~ s/^Player: //; 524 $title =~ s/^Player: //;
446 $::STATWIDS->{title} ->set_text ("Title: " . $title); 525 $::STATWIDS->{title} ->set_text ("Title: " . $title);
447 526
459 $::STATWIDS->{st_spd} ->set_text (sprintf "%.1f", $stats->{+CS_STAT_SPEED}); 538 $::STATWIDS->{st_spd} ->set_text (sprintf "%.1f", $stats->{+CS_STAT_SPEED});
460 $::STATWIDS->{st_wspd}->set_text (sprintf "%.1f", $stats->{+CS_STAT_WEAP_SP}); 539 $::STATWIDS->{st_wspd}->set_text (sprintf "%.1f", $stats->{+CS_STAT_WEAP_SP});
461 540
462 $self->update_weight; 541 $self->update_weight;
463 542
464 $::STATWIDS->{"res_$_"}->set_text (sprintf "%d%", $stats->{$RES_TBL{$_}}) 543 $::STATWIDS->{"res_$_"}->set_text (sprintf "%d%%", $stats->{$RES_TBL{$_}})
465 for keys %RES_TBL; 544 for keys %RES_TBL;
466 545
467 my $sktbl = $::STATWIDS->{skill_tbl}; 546 my $sktbl = $::STATWIDS->{skill_tbl};
468 my @skills = keys %{ $self->{skill_info} }; 547 my @skills = keys %{ $self->{skill_info} };
469 548
478 $sktbl->clear; 557 $sktbl->clear;
479 558
480 my $sw = $self->{skillwid}{""} ||= [ 559 my $sw = $self->{skillwid}{""} ||= [
481 0, 0, (new DC::UI::Label text => "Experience", align => 1), 560 0, 0, (new DC::UI::Label text => "Experience", align => 1),
482 1, 0, (new DC::UI::Label text => "Lvl.", align => 1), 561 1, 0, (new DC::UI::Label text => "Lvl.", align => 1),
483 2, 0, (new DC::UI::Label text => "Progress", align => 0), 562 2, 0, (new DC::UI::Label text => "Progress"),
484 3, 0, (new DC::UI::Label text => "Skill", expand => 1), 563 3, 0, (new DC::UI::Label text => "Skill", expand => 1, align => 0),
485 4, 0, (new DC::UI::Label text => "Experience", align => 1), 564 4, 0, (new DC::UI::Label text => "Experience", align => 1),
486 5, 0, (new DC::UI::Label text => "Lvl.", align => 1), 565 5, 0, (new DC::UI::Label text => "Lvl.", align => 1),
487 6, 0, (new DC::UI::Label text => "Progress", align => 0), 566 6, 0, (new DC::UI::Label text => "Progress"),
488 7, 0, (new DC::UI::Label text => "Skill", expand => 1), 567 7, 0, (new DC::UI::Label text => "Skill", expand => 1, align => 0),
489 ]; 568 ];
490 569
491 my @add = @$sw; 570 my @add = @$sw;
492 571
493 my $TOOLTIP_ALL = "\n\n<small>Left click - ready skill\nMiddle click - use spell\nRight click - further options</small>"; 572 my $TOOLTIP_ALL = "\n\n<small>Left click - ready skill\nMiddle click - use skill\nRight click - further options</small>";
494 573
495 my @TOOLTIP_LVL = (tooltip => "<b>Level</b>. The level of the skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1); 574 my @TOOLTIP_LVL = (tooltip => "<b>Level</b>. The level of the skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1);
496 my @TOOLTIP_EXP = (tooltip => "<b>Experience</b>. The experience points you have in this skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1); 575 my @TOOLTIP_EXP = (tooltip => "<b>Experience</b>. The experience points you have in this skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1);
497 576
498 my ($x, $y) = (0, 1); 577 my ($x, $y) = (0, 1);
532 611
533 # progress 612 # progress
534 (new DC::UI::ExperienceProgress), 613 (new DC::UI::ExperienceProgress),
535 614
536 # label 615 # label
537 (new DC::UI::Label text => $name, on_button_down => $spell_cb, 616 (new DC::UI::Label text => $name, on_button_down => $spell_cb, align => 0,
538 can_events => 1, can_hover => 1, tooltip => (DC::Pod::section_label skill_description => $name) . $TOOLTIP_ALL), 617 can_events => 1, can_hover => 1, tooltip => (DC::Pod::section_label skill_description => $name) . $TOOLTIP_ALL),
539 ]; 618 ];
540 619
541 push @add, 620 push @add,
542 $x * 4 + 0, $y, $sw->[0], 621 $x * 4 + 0, $y, $sw->[0],
560 my $sw = $self->{skillwid}{$idx}; 639 my $sw = $self->{skillwid}{$idx};
561 $sw->[0]->set_text (::formsep ($val->[1])); 640 $sw->[0]->set_text (::formsep ($val->[1]));
562 $sw->[1]->set_text ($val->[0] * 1); 641 $sw->[1]->set_text ($val->[0] * 1);
563 $sw->[2]->set_value (@$val); 642 $sw->[2]->set_value (@$val);
564 643
565 $::GAUGES->{sklprg}->set_label ("$name %d%%"); 644 $::GAUGES->{skillexp}->set_label ("$name %d%%");
566 $::GAUGES->{sklprg}->set_value (@$val); 645 $::GAUGES->{skillexp}->set_value (@$val);
567 } 646 }
568} 647}
569 648
570sub user_send { 649sub user_send {
571 my ($self, $command) = @_; 650 my ($self, $command) = @_;
584} 663}
585 664
586sub map_scroll { 665sub map_scroll {
587 my ($self, $dx, $dy) = @_; 666 my ($self, $dx, $dy) = @_;
588 667
589 $self->{map}->scroll ($dx, $dy); 668 $self->{map_widget}->scroll ($dx, $dy);
590} 669}
591 670
592sub feed_map1a { 671sub feed_map1a {
593 my ($self, $data) = @_; 672 my ($self, $data) = @_;
594 673
598 for my $tile (@$missing) { 677 for my $tile (@$missing) {
599 next if $self->{delay}{$tile}; 678 next if $self->{delay}{$tile};
600 679
601 $delay = 1; 680 $delay = 1;
602 681
603 if (my $tex = $::CONN->{texture}[$tile]) { 682 if (my $tex = $self->{texture}[$tile]) {
604 $tex->upload; 683 $tex->upload;
605 } else { 684 } else {
606 $self->{delay}{$tile} = 1; 685 $self->{delay}{$tile} = 1;
607 686
608 # we assume the face is in-flight and will eventually come 687 # we assume the face is in-flight and will eventually arrive
609 push @{$self->{tile_cb}{$tile}}, sub { 688 push @{$self->{tile_cb}{$tile}}, sub {
610 delete $self->{delay}{$tile}; 689 delete $self->{delay}{$tile};
611 $_[0]->upload; 690 $_[0]->upload;
612 }; 691 };
613 } 692 }
614 } 693 }
615 694
616 if ($delay) { 695 if ($delay) {
617 # delay the map drawing a tiny bit in the hope of getting the missing fetched 696 # delay the map drawing a tiny bit in the hope of getting the missing tiles fetched
618 EV::once undef, 0, 0.03, sub { 697 EV::once undef, 0, 0.03, sub {
619 $self->{map_widget}->update 698 $self->{map_widget}->update
620 if $self->{map_widget}; 699 if $self->{map_widget};
621 }; 700 };
622 } else { 701 } else {
631} 710}
632 711
633sub flush_map { 712sub flush_map {
634 my ($self) = @_; 713 my ($self) = @_;
635 714
636 my $map_info = delete $self->{map_info} 715 return unless $self->{map_info};
637 or return;
638 716
717 for my $map_info (values %{ $self->{map_cache} || {} }) {
639 my ($hash, $x, $y, $w, $h) = @$map_info; 718 my ($hash, $rdata, $x, $y, $w, $h) = @$map_info;
640 719
641 my $data = Compress::LZF::compress $self->{map}->get_rect ($x, $y, $w, $h); 720 my $data = $self->{map}->get_rect ($x, $y, $w, $h);
642 $self->{map_cache_new}{$hash} = \$data; 721
722 if ($data ne $$rdata) {
723 $map_info->[1] = \$data;
724 my $cdata = Compress::LZF::compress $data;
643 DC::DB::put $self->{mapcache} => $hash => $data, sub { }; 725 DC::DB::put $self->{mapcache} => $hash => $cdata, sub { };
726 }
727 }
644} 728}
645 729
646sub map_clear { 730sub map_clear {
647 my ($self) = @_; 731 my ($self) = @_;
648 732
649 $self->flush_map; 733 $self->flush_map;
734 delete $self->{map_info};
650 delete $self->{neigh_map}; 735 delete $self->{neigh_map};
651 736
652 $self->{map}->clear; 737 $self->{map}->clear;
653 delete $self->{map_widget}{magicmap}; 738 delete $self->{map_widget}{magicmap};
654} 739}
675 760
676 $self->bg_fetch; 761 $self->bg_fetch;
677 }; 762 };
678} 763}
679 764
680sub load_map($$$) { 765sub load_map($$$$$$) {
681 my ($self, $hash, $x, $y) = @_; 766 my ($self, $hash, $x, $y, $w, $h) = @_;
682 767
683 my $gen = $self->{map_change_gen}; 768 my $map_info = $self->{map_cache}{$hash} = [$hash, \"", $x, $y, $w, $h];
684 769
685 my $cb = sub { 770 my $cb = sub {
686 return unless $gen == $self->{map_change_gen}; 771 $map_info->[1] = \$_[0];
687 772
688 my ($data) = @_;
689
690 if (defined $data) {
691 $self->{map_cache_new}{$hash} = \$data;
692
693 my $data = Compress::LZF::decompress $data;
694
695 my $inprogress = @{ $self->{bg_fetch} || [] }; 773 my $inprogress = @{ $self->{bg_fetch} || [] };
696 unshift @{ $self->{bg_fetch} }, $self->{map}->set_rect ($x, $y, $data); 774 unshift @{ $self->{bg_fetch} }, $self->{map}->set_rect ($x, $y, $_[0]);
697 $self->bg_fetch unless $inprogress; 775 $self->bg_fetch unless $inprogress;
698 }
699 }; 776 };
700 777
701 if (my $rdata = $self->{map_cache_old}{$hash}) { 778 if (my $map_info = $self->{map_cache_old}{$hash}) {
702 $cb->($$rdata); 779 $cb->(${ $map_info->[1] });
703 } else { 780 } else {
781 my $gen = $self->{map_change_gen};
782
704 DC::DB::get $self->{mapcache} => $hash, $cb; 783 DC::DB::get $self->{mapcache} => $hash, sub {
784 return unless $gen == $self->{map_change_gen};
785 return unless defined $_[0];
786 $cb->(Compress::LZF::decompress $_[0]);
787 };
705 } 788 }
706} 789}
707 790
708# hardcode /world/world_xxx_xxx map names, the savings are enourmous, 791# hardcode /world/world_xxx_xxx map names, the savings are enourmous,
709# (server resource,s latency, bandwidth), so this hack is warranted. 792# (server resources, latency, bandwidth), so this hack is warranted.
710# the right fix is to make real tiled maps with an overview file 793# the right fix is to make real tiled maps with an overview file
711sub send_mapinfo { 794sub send_mapinfo {
712 my ($self, $data, $cb) = @_; 795 my ($self, $data, $cb) = @_;
713 796
714 if ($self->{map_info}[0] =~ m%^/world/world_(\d\d\d)_(\d\d\d)$%) { 797 if ($self->{map_info}[0] =~ m%^/world/world_(\d\d\d)_(\d\d\d)$%) {
739} 822}
740 823
741# this method does a "flood fill" into every tile direction 824# this method does a "flood fill" into every tile direction
742# it assumes that tiles are arranged in a rectangular grid, 825# it assumes that tiles are arranged in a rectangular grid,
743# i.e. a map is the same as the left of the right map etc. 826# i.e. a map is the same as the left of the right map etc.
744# failure to comply are harmless and result in display errors 827# failure to comply is harmless and results in display errors
745# at worst. 828# at worst.
746sub flood_fill { 829sub flood_fill {
747 my ($self, $block, $gx, $gy, $path, $hash, $flags) = @_; 830 my ($self, $block, $gx, $gy, $path, $hash, $flags) = @_;
748 831
749 # the server does not allow map paths > 6 832 # the server does not allow map paths > 6
785 return if $mode ne "spatial"; 868 return if $mode ne "spatial";
786 869
787 $x += $self->{map}->ox; 870 $x += $self->{map}->ox;
788 $y += $self->{map}->oy; 871 $y += $self->{map}->oy;
789 872
790 $self->load_map ($hash, $x, $y) 873 $self->load_map ($hash, $x, $y, $w, $h)
791 unless $self->{neigh_map}{$hash}[5]++;#d# 874 unless $self->{neigh_map}{$hash}[5]++;#d#
792 875
793 $neigh->[$tile] = [$flags, $x, $y, $w, $h, $hash]; 876 $neigh->[$tile] = [$flags, $x, $y, $w, $h, $hash];
794 877
795 $self->flood_fill ($block, $gx, $gy, "$path$tile", $hash, $flags) 878 $self->flood_fill ($block, $gx, $gy, "$path$tile", $hash, $flags)
803 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_; 886 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
804 887
805 $self->flush_map; 888 $self->flush_map;
806 889
807 ++$self->{map_change_gen}; 890 ++$self->{map_change_gen};
808 $self->{map_cache_old} = delete $self->{map_cache_new}; 891 $self->{map_cache_old} = delete $self->{map_cache};
809 892
810 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy); 893 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
811 894
812 my $mapmapw = $self->{mapmap}->{w}; 895 my $mapmapw = $self->{mapmap}->{w};
813 my $mapmaph = $self->{mapmap}->{h}; 896 my $mapmaph = $self->{mapmap}->{h};
825 $self->{map_info} = [$hash, $x, $y, $w, $h]; 908 $self->{map_info} = [$hash, $x, $y, $w, $h];
826 909
827 (my $map = $hash) =~ s/^.*?\/([^\/]+)$/\1/; 910 (my $map = $hash) =~ s/^.*?\/([^\/]+)$/\1/;
828 $::STATWIDS->{map}->set_text ("Map: " . $map); 911 $::STATWIDS->{map}->set_text ("Map: " . $map);
829 912
830 $self->load_map ($hash, $x, $y); 913 $self->load_map ($hash, $x, $y, $w, $h);
831 $self->flood_fill (0, 0, 0, "", $hash, $flags); 914 $self->flood_fill (0, 0, 0, "", $hash, $flags);
832} 915}
833 916
834sub face_find { 917sub face_find {
835 my ($self, $facenum, $face, $cb) = @_; 918 my ($self, $facenum, $face, $cb) = @_;
906 989
907 my $tex = $self->{texture}[$tile] ||= 990 my $tex = $self->{texture}[$tile] ||=
908 new DC::Texture 991 new DC::Texture
909 tile => $tile, 992 tile => $tile,
910 image => $data, delete_image => 1, 993 image => $data, delete_image => 1,
911 minify => 1, mipmap => 1; 994 minify => 1;
912 995
913 if (my $cbs = delete $self->{tile_cb}{$tile}) { 996 if (my $cbs = delete $self->{tile_cb}{$tile}) {
914 $_->($tex) for @$cbs; 997 $_->($tex) for @$cbs;
915 } 998 }
916} 999}
921 my ($self, $num, $cb) = @_; 1004 my ($self, $num, $cb) = @_;
922 1005
923 push @{$self->{face_cb}{$num}}, $cb; 1006 push @{$self->{face_cb}{$num}}, $cb;
924 1007
925 defined wantarray 1008 defined wantarray
926 ? DC::guard { 1009 ? Guard::guard {
927 @{$self->{face_cb}{$num}} 1010 @{$self->{face_cb}{$num}}
928 = grep $_ != $cb, 1011 = grep $_ != $cb,
929 @{$self->{face_cb}{$num}}; 1012 @{$self->{face_cb}{$num}};
930 } 1013 }
931 : () 1014 : ()
977 s/&(?!amp;|lt;|gt;|apos;|quot;|#[0-9]+;|#x[0-9a-fA-F]+;)/&amp;/g; 1060 s/&(?!amp;|lt;|gt;|apos;|quot;|#[0-9]+;|#x[0-9a-fA-F]+;)/&amp;/g;
978 1061
979 # handle some elements 1062 # handle some elements
980 s/<fg name='([^']*)'>(.*?)<\/fg>/<span foreground='$1'>$2<\/span>/gs; 1063 s/<fg name='([^']*)'>(.*?)<\/fg>/<span foreground='$1'>$2<\/span>/gs;
981 s/<fg name="([^"]*)">(.*?)<\/fg>/<span foreground="$1">$2<\/span>/gs; 1064 s/<fg name="([^"]*)">(.*?)<\/fg>/<span foreground="$1">$2<\/span>/gs;
1065
1066 s/\s+$//;
982 1067
983 $_ 1068 $_
984} 1069}
985 1070
986our %NAME_TO_COLOR = ( 1071our %NAME_TO_COLOR = (
1033 1118
1034 ## try to create single paragraphs of multiple lines sent by the server 1119 ## try to create single paragraphs of multiple lines sent by the server
1035 # no longer neecssary with TRT servers 1120 # no longer neecssary with TRT servers
1036 #$text =~ s/(?<=\S)\n(?=\w)/ /g; 1121 #$text =~ s/(?<=\S)\n(?=\w)/ /g;
1037 1122
1038 for (split /\n/, $text) {
1039 ::message ({ 1123 ::message ({
1040 fg => $fg, 1124 fg => $fg,
1041 markup => $_, 1125 markup => $text,
1042 type => $type, 1126 type => $type,
1043 extra => [@extra], 1127 extra => [@extra],
1044 color_flags => $color, #d# ugly, kill 1128 color_flags => $color, #d# ugly, kill
1045 }); 1129 });
1046 1130
1047 $color &= ~NDI_CLEAR; # only clear once for multiline messages 1131# $color &= ~NDI_CLEAR; # only clear once for multiline messages
1048 # actually, this is an ugly design. _we_ should control the channels, 1132# # actually, this is an ugly design. _we_ should control the channels,
1049 # not some random other widget, as the channels are clearly protocol-specific. 1133# # not some random other widget, as the channels are clearly protocol-specific.
1050 # then we could also react to flags such as CLEAR without resorting to 1134# # then we could also react to flags such as CLEAR without resorting to
1051 # hacks such as color_flags, above. 1135# # hacks such as color_flags, above.
1052 }
1053 1136
1054 $self->{statusbox}->add ($text, 1137 $self->{statusbox}->add ($text,
1055 group => $text, 1138 group => $text,
1056 fg => $fg, 1139 fg => $fg,
1057 timeout => $color >= 2 ? 180 : 10, 1140 timeout => $color >= 2 ? 180 : 10,
1092 1175
1093 my %skill_help; 1176 my %skill_help;
1094 1177
1095 for my $node (DC::Pod::find skill_description => "*") { 1178 for my $node (DC::Pod::find skill_description => "*") {
1096 my (undef, @par) = DC::Pod::section_of $node; 1179 my (undef, @par) = DC::Pod::section_of $node;
1097 $skill_help{$node->{kw}[0]} = DC::Pod::as_label @par; 1180 $skill_help{$node->[DC::Pod::N_KW][0]} = DC::Pod::as_label @par;
1098 }; 1181 };
1099 1182
1100 for my $skill (values %{$self->{skill_info}}) { 1183 for my $skill (values %{$self->{skill_info}}) {
1101 $self->{map_widget}->add_command ("ready_skill $skill", 1184 $self->{map_widget}->add_command ("ready_skill $skill",
1102 (DC::asxml "Ready the skill '$skill'\n\n") 1185 (DC::asxml "Ready the skill '$skill'\n\n")
1122 $::FLOORBOX->clear; 1205 $::FLOORBOX->clear;
1123 1206
1124 my @add; 1207 my @add;
1125 1208
1126 my $row; 1209 my $row;
1127 for (sort { $a->{count} <=> $b->{count} } values %{ $::CONN->{container}{$::CONN->{open_container} || 0} }) { 1210 for (sort { $b->{count} <=> $a->{count} } values %{ $::CONN->{container}{$::CONN->{open_container} || 0} }) {
1211 next if $_->{tag} & 0x80000000;
1128 if ($row < 6) { 1212 if ($row < 6) {
1129 local $_->{face_widget}; # hack to force recreation of widget 1213 local $_->{face_widget}; # hack to force recreation of widget
1130 local $_->{desc_widget}; # hack to force recreation of widget 1214 local $_->{desc_widget}; # hack to force recreation of widget
1131 DC::Item::update_widgets $_; 1215 DC::Item::update_widgets $_;
1132 1216
1159sub set_opencont { 1243sub set_opencont {
1160 my ($conn, $tag, $name) = @_; 1244 my ($conn, $tag, $name) = @_;
1161 $conn->{open_container} = $tag; 1245 $conn->{open_container} = $tag;
1162 update_floorbox; 1246 update_floorbox;
1163 1247
1164 $::INVR_HB->clear (); 1248 $::INVR_HB->clear;
1165 $::INVR_HB->add (new DC::UI::Label align => 0, expand => 1, text => $name); 1249 $::INVR_HB->add (new DC::UI::Label expand => 1, text => $name);
1166 1250
1167 if ($tag != 0) { # Floor isn't closable, is it? 1251 if ($tag != 0) { # Floor isn't closable, is it?
1168 $::INVR_HB->add (new DC::UI::Button 1252 $::INVR_HB->add (new DC::UI::Button
1169 text => "Close container", 1253 text => "Close container",
1170 tooltip => "Close the currently open container (if one is open)", 1254 tooltip => "Close the currently open container (if one is open)",
1225} 1309}
1226 1310
1227sub item_update { 1311sub item_update {
1228 my ($self, $item) = @_; 1312 my ($self, $item) = @_;
1229 1313
1230 #d# print "item_update: $item->{tag} in $item->{container} ($self->{player}{tag}) ($::CONN->{open_container})\n"; 1314 #print "item_update: $item->{tag} in $item->{container} pt($self->{player}{tag}) oc($::CONN->{open_container}) f($item->{flags})\n";
1231 1315
1232 DC::Item::update_widgets $item; 1316 DC::Item::update_widgets $item;
1233 1317
1234 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) { 1318 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) {
1235 set_opencont ($::CONN, 0, "Floor"); 1319 set_opencont ($::CONN, 0, "Floor");
1236 1320
1237 } elsif ($item->{flags} & F_OPEN) { 1321 } elsif ($item->{flags} & F_OPEN) {
1238 set_opencont ($::CONN, $item->{tag}, DC::Item::desc_string $item); 1322 set_opencont ($::CONN, $item->{tag}, DC::Item::desc_string $item);
1254 1338
1255 my $weight = .001 * $self->{player}{weight}; 1339 my $weight = .001 * $self->{player}{weight};
1256 my $limit = .001 * $self->{stat}{+CS_STAT_WEIGHT_LIM}; 1340 my $limit = .001 * $self->{stat}{+CS_STAT_WEIGHT_LIM};
1257 1341
1258 $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $weight); 1342 $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $weight);
1259 $::STATWIDS->{m_weight}->set_text (sprintf "%.1fkg", $limit); 1343 $::STATWIDS->{m_weight}->set_text (sprintf "Max Weight: %.1fkg", $limit);
1260 $::STATWIDS->{i_weight}->set_text (sprintf "%.1f/%.1fkg", $weight, $limit); 1344 $::STATWIDS->{i_weight}->set_text (sprintf "%.1f/%.1fkg", $weight, $limit);
1261} 1345}
1262 1346
1263sub update_server_info { 1347sub update_server_info {
1264 my ($self) = @_; 1348 my ($self) = @_;
1265 1349
1266 my @yesno = ("<span foreground='red'>no</span>", "<span foreground='green'>yes</span>"); 1350 my @yesno = ("<span foreground='red'>no</span>", "<span foreground='green'>yes</span>");
1267 1351
1352 my $version = JSON::XS->new->encode ($self->{s_version});
1353
1268 $::SERVER_INFO->set_markup ( 1354 $::SERVER_INFO->set_markup (
1269 "server <tt>$self->{host}:$self->{port}</tt>\n" 1355 "server <tt>$self->{host}:$self->{port}</tt>\n"
1270 . "protocol version <tt>$self->{version}</tt>\n" 1356 . "protocol version <tt>$version</tt>\n"
1271 . "minimap support $yesno[$self->{setup}{mapinfocmd} > 0]\n" 1357 . "minimap support $yesno[$self->{setup}{mapinfocmd} > 0]\n"
1272 . "extended command support $yesno[$self->{setup}{extcmd} > 0]\n" 1358 . "extended command support $yesno[$self->{setup}{extcmd} > 0]\n"
1273 . "examine command support $yesno[$self->{setup}{excmd} > 0]\n" 1359 . "examine command support $yesno[$self->{setup}{excmd} > 0]\n"
1274 . "editing support $yesno[!!$self->{editor_support}]\n" 1360 . "editing support $yesno[!!$self->{editor_support}]\n"
1275 . "map attributes $yesno[$self->{setup}{extmap} > 0]\n" 1361 . "map attributes $yesno[$self->{setup}{extmap} > 0]\n"
1276 . "big image protocol support $yesno[$self->{setup}{fxix} > 0]\n" 1362 . "big image protocol support $yesno[$self->{setup}{fxix} > 0]\n"
1277 . "cfplus support $yesno[$self->{cfplus_ext} > 0]" 1363 . "client support $yesno[$self->{cfplus_ext} > 0]"
1278 . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n" 1364 . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n"
1279 . "map size $self->{mapw}×$self->{maph}\n" 1365 . "map size $self->{mapw}×$self->{maph}\n"
1280 ); 1366 );
1281 1367
1282} 1368}
1303 }); 1389 });
1304 1390
1305 $self->update_server_info; 1391 $self->update_server_info;
1306 1392
1307 $self->send_command ("output-rate $::CFG->{output_rate}") if $::CFG->{output_rate} > 0; 1393 $self->send_command ("output-rate $::CFG->{output_rate}") if $::CFG->{output_rate} > 0;
1308 $self->send_command ("pickup $::CFG->{pickup}"); 1394 $self->send_pickup ($::CFG->{pickup});
1309} 1395}
1310 1396
1311sub lookat { 1397sub lookat {
1312 my ($self, $x, $y) = @_; 1398 my ($self, $x, $y) = @_;
1313 1399
1477} 1563}
1478 1564
1479sub send { 1565sub send {
1480 my ($self, $msg) = @_; 1566 my ($self, $msg) = @_;
1481 1567
1482 $self->{textview}->add_paragraph ({ markup => "\n" . DC::asxml $msg }); 1568 $self->{textview}->add_paragraph ({
1569 markup =>
1570 "\n<span foreground='#ffff00'><b>"
1571 . (DC::asxml $msg)
1572 . "</b></span>"
1573 });
1483 $self->{textview}->scroll_to_bottom; 1574 $self->{textview}->scroll_to_bottom;
1484 1575
1485 $self->{conn}->send_ext_msg (npc_dialog_tell => $self->{id}, $msg); 1576 $self->{conn}->send_ext_msg (npc_dialog_tell => $self->{id}, $msg);
1486} 1577}
1487 1578

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines