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.192 by root, Thu Mar 27 20:42:23 2008 UTC vs.
Revision 1.225 by root, Sat Nov 10 18:29:32 2012 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,
24 widget => 2, 32 widget => 2,
25 %{$arg{setup_req} || {}}, 33 %{$arg{setup_req} || {}},
26 }, 34 },
27 ); 35 );
36
37 $self->update_fx_want;
38
39 my $exp_guard = $self->addme_guard;
40 my $skl_guard = $self->addme_guard;
41 my $spl_guard = $self->addme_guard;
42 $self->send_exti_req (resource => qw(exp_table skill_info spell_paths), sub {
43 my ($exp, $skl, $spl) = @_;
44
45 $self->register_face_handler ($exp, sub {
46 my ($face) = @_;
47
48 undef $exp_guard;
49 $self->{exp_table} = $self->{json_coder}->decode (delete $face->{data});
50 $_->() for values %{ $self->{on_exp_update} };
51 });
52
53 $self->register_face_handler ($skl, sub {
54 my ($face) = @_;
55
56 undef $skl_guard;
57 my $info = $self->{json_coder}->decode (delete $face->{data});
58 $self->{skill_info} = { map { CS_STAT_SKILLINFO + $_ => $info->[$_][0] } 0 .. $#$info };
59 });
60
61 $self->register_face_handler ($spl, sub {
62 my ($face) = @_;
63
64 undef $spl_guard;
65 my $info = $self->{json_coder}->decode (delete $face->{data});
66 $self->{spell_paths} = { map { (1 << $_) => $info->[$_][0] } 0 .. $#$info };
67 });
68
69 ()
70 });
28 71
29 $self->{map_widget}->clr_commands; 72 $self->{map_widget}->clr_commands;
30 73
31 my @cmd_help = map { 74 my @cmd_help = map {
32 $_->[DC::Pod::N_KW][0] =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x 75 $_->[DC::Pod::N_KW][0] =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x
64 $self->{on_stop_game_guard} = $self->{map_widget}{root}->connect (stop_game => sub { 107 $self->{on_stop_game_guard} = $self->{map_widget}{root}->connect (stop_game => sub {
65 for my $ws (values %{delete $self->{widgetset} || {}}) { 108 for my $ws (values %{delete $self->{widgetset} || {}}) {
66 $_->destroy 109 $_->destroy
67 for values %{delete $ws->{w} || {}}; 110 for values %{delete $ws->{w} || {}};
68 } 111 }
112
113 delete $self->{items};
114 $::INV->clear;
115 $::INVR->clear;
116 $::INVR_HB->clear;
117 $::FLOORBOX->clear;
69 }); 118 });
70 119
71 $self->{map_widget}->add_command (@$_) 120 $self->{map_widget}->add_command (@$_)
72 for @cmd_help; 121 for @cmd_help;
73 122
74 { 123 {
75 $self->{dialogue} = my $tex = new_from_file DC::Texture 124 $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}}); 125 $self->{map}->set_texture (1, @$tex{qw(name w h s t)}, @{$tex->{minified}});
78 } 126 }
79 127
80 { 128 {
81 $self->{noface} = my $tex = new_from_file DC::Texture 129 $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}}); 130 $self->{map}->set_texture (2, @$tex{qw(name w h s t)}, @{$tex->{minified}});
84 } 131 }
132
133# $self->{expire_count} = DC::DB::FIRST_TILE_ID; # minimum non-fixed tile id
134# $self->{expire_w} = AE::timer 1, 1, sub {
135# my $count = (int @{ $self->{texture} } / MIN_TEXTURE_UNUSED) || 1;
136#
137# for ($self->{map}->expire_textures ($self->{expire_count}, $count)) {
138# warn DC::SvREFCNT $self->{texture}[$_];
139# $self->{texture}[$_]->unload;
140# warn "expire texture $_\n";#d#
141# }
142#
143# ($self->{expire_count} += $count) < @{ $self->{texture} }
144# or $self->{expire_count} = DC::DB::FIRST_TILE_ID;
145# warn "count is $count\n";#d#
146# };
85 147
86 $self->{open_container} = 0; 148 $self->{open_container} = 0;
87 149
88 # per server 150 # per server
89 $self->{mapcache} = "mapcache_$self->{host}_$self->{port}"; 151 $self->{mapcache} = "mapcache_$self->{host}_$self->{port}";
90 152
91 $self 153 $self
92} 154}
155
156 #$self->send_exti_req (nickmon => 1, sub { use Data::Dump; ddx \@_ });#d#
157#sub ext_nicklist { shift; use Data::Dump; ddx \@_; } #d#
93 158
94sub update_fx_want { 159sub update_fx_want {
95 my ($self) = @_; 160 my ($self) = @_;
96 161
97 $self->send_exti_msg (fx_want => { 162 $self->send_exti_msg (fx_want => {
101 }); 166 });
102} 167}
103 168
104sub ext_capabilities { 169sub ext_capabilities {
105 my ($self, %cap) = @_; 170 my ($self, %cap) = @_;
106
107 $self->update_fx_want;
108
109 $self->send_exti_req (resource => "exp_table", sub {
110 my ($exp_table) = @_;
111
112 $self->register_face_handler ($exp_table, sub {
113 my ($face) = @_;
114
115 $self->{exp_table} = $self->{json_coder}->decode (delete $face->{data});
116 $_->() for values %{ $self->{on_exp_update} || {} };
117 });
118
119 ()
120 });
121 171
122 if (my $ts = $cap{tileset}) { 172 if (my $ts = $cap{tileset}) {
123 if (my ($default) = grep $_->[2] & 1, @$ts) { 173 if (my ($default) = grep $_->[2] & 1, @$ts) {
124 $self->{tileset} = $default; 174 $self->{tileset} = $default;
125 $self->{tilesize} = $default->[3]; 175 $self->{tilesize} = $default->[3];
250 my %wkw = ( 300 my %wkw = (
251 root => $DC::UI::ROOT, 301 root => $DC::UI::ROOT,
252 tooltip => $DC::UI::TOOLTIP, 302 tooltip => $DC::UI::TOOLTIP,
253 303
254 mapwidget => $::MAPWIDGET, 304 mapwidget => $::MAPWIDGET,
305 menubar => $::MENUBAR,
306 menupopup => $::MENUPOPUP,
307 pickup_enable => $::PICKUP_ENABLE,
255 buttonbar => $::BUTTONBAR, 308 buttonbar => $::BUTTONBAR,
256 metaserver => $::METASERVER, 309 metaserver => $::METASERVER,
257 buttonbar => $::BUTTONBAR, 310 buttonbar => $::BUTTONBAR,
258 login_button => $::LOGIN_BUTTON, 311 login_button => $::LOGIN_BUTTON,
259 quit_dialog => $::QUIT_DIALOG, 312 quit_dialog => $::QUIT_DIALOG,
276 329
277 floorbox => $::FLOORBOX, 330 floorbox => $::FLOORBOX,
278 help_window => $::HELP_WINDOW, 331 help_window => $::HELP_WINDOW,
279 message_window => $::MESSAGE_WINDOW, 332 message_window => $::MESSAGE_WINDOW,
280 message_dist => $::MESSAGE_DIST, 333 message_dist => $::MESSAGE_DIST,
281 statusbox => $::SDTATUSBOX, 334 statusbox => $::STATUSBOX,
282 335
283 inv => $::INV, 336 inv => $::INV,
284 invr => $::INVR, 337 invr => $::INVR,
285 invr_hb => $::INVR_HB, 338 invr_hb => $::INVR_HB,
286 ); 339 );
370 ? (($new & $_ ? "+" : "-") . $self->{spell_paths}{$_}) 423 ? (($new & $_ ? "+" : "-") . $self->{spell_paths}{$_})
371 : () 424 : ()
372 } 425 }
373 sort { $a <=> $b } keys %{$self->{spell_paths}}; 426 sort { $a <=> $b } keys %{$self->{spell_paths}};
374 427
375 join "", @diff 428 "\u$name: " . (join ", ", @diff)
376} 429}
377 430
378# all stats that are chacked against changes 431# all stats that are chacked against changes
379my @statchange = ( 432my @statchange = (
380 [&CS_STAT_STR => \&_stat_numdiff, "Str"], 433 [&CS_STAT_STR => \&_stat_numdiff, "Str"],
423 476
424 if (my @diffs = 477 if (my @diffs =
425 ( 478 (
426 ($stats->{+CS_STAT_EXP64} > $prev->{+CS_STAT_EXP64} ? ($stats->{+CS_STAT_EXP64} - $prev->{+CS_STAT_EXP64}) . " experience gained" : ()), 479 ($stats->{+CS_STAT_EXP64} > $prev->{+CS_STAT_EXP64} ? ($stats->{+CS_STAT_EXP64} - $prev->{+CS_STAT_EXP64}) . " experience gained" : ()),
427 map { 480 map {
428 $stats->{$_} && $prev->{$_} 481 $stats->{$_} && $prev->{$_}
429 && $stats->{$_}[1] > $prev->{$_}[1] ? "($self->{skill_info}{$_}+" . ($stats->{$_}[1] - $prev->{$_}[1]) . ")" : () 482 && $stats->{$_}[1] > $prev->{$_}[1] ? "($self->{skill_info}{$_}+" . ($stats->{$_}[1] - $prev->{$_}[1]) . ")" : ()
430 } sort { $a <=> $b } keys %{$self->{skill_info}} 483 } sort { $a <=> $b } keys %{$self->{skill_info}}
431 ) 484 )
432 ) { 485 ) {
433 my $msg = join " ", @diffs; 486 my $msg = join " ", @diffs;
435 } 488 }
436 489
437 if ( 490 if (
438 my @diffs = map $_->[1]->($self, $_->[2], $prev->{$_->[0]}, $stats->{$_->[0]}), @statchange 491 my @diffs = map $_->[1]->($self, $_->[2], $prev->{$_->[0]}, $stats->{$_->[0]}), @statchange
439 ) { 492 ) {
440 my $msg = "<b>stat change</b>: " . (join " ", @diffs); 493 my $msg = "<b>stat change</b>: " . (join " ", map "($_)", @diffs);
441 $self->{statusbox}->add ($msg, group => "stat $msg", fg => [0.8, 1, 0.2, 1], timeout => 20); 494 $self->{statusbox}->add ($msg, group => "stat $msg", fg => [0.8, 1, 0.2, 1], timeout => 20);
442 } 495 }
443 496
444 $self->update_stats_window ($stats, $prev); 497 $self->update_stats_window ($stats, $prev);
445 498
483 536
484 $::GAUGES->{hp} ->set_value ($hp, $hp_m); 537 $::GAUGES->{hp} ->set_value ($hp, $hp_m);
485 $::GAUGES->{mana} ->set_value ($sp, $sp_m); 538 $::GAUGES->{mana} ->set_value ($sp, $sp_m);
486 $::GAUGES->{food} ->set_value ($fo, $fo_m); 539 $::GAUGES->{food} ->set_value ($fo, $fo_m);
487 $::GAUGES->{grace} ->set_value ($gr, $gr_m); 540 $::GAUGES->{grace} ->set_value ($gr, $gr_m);
488 $::GAUGES->{exp} ->set_text ("Exp: " . (::formsep ($stats->{+CS_STAT_EXP64})) 541 $::GAUGES->{exp} ->set_label ("Exp: " . (::formsep ($stats->{+CS_STAT_EXP64}))#d#
489 . " (lvl " . ($stats->{+CS_STAT_LEVEL} * 1) . ")"); 542 . " (lvl " . ($stats->{+CS_STAT_LEVEL} * 1) . ")");
490 $::GAUGES->{prg} ->set_value ($stats->{+CS_STAT_LEVEL}, $stats->{+CS_STAT_EXP64}); 543 $::GAUGES->{exp} ->set_value ($stats->{+CS_STAT_LEVEL}, $stats->{+CS_STAT_EXP64});
491 $::GAUGES->{range} ->set_text ($stats->{+CS_STAT_RANGE}); 544 $::GAUGES->{range} ->set_text ($stats->{+CS_STAT_RANGE});
492 my $title = $stats->{+CS_STAT_TITLE}; 545 my $title = $stats->{+CS_STAT_TITLE};
493 $title =~ s/^Player: //; 546 $title =~ s/^Player: //;
494 $::STATWIDS->{title} ->set_text ("Title: " . $title); 547 $::STATWIDS->{title} ->set_text ("Title: " . $title);
495 548
507 $::STATWIDS->{st_spd} ->set_text (sprintf "%.1f", $stats->{+CS_STAT_SPEED}); 560 $::STATWIDS->{st_spd} ->set_text (sprintf "%.1f", $stats->{+CS_STAT_SPEED});
508 $::STATWIDS->{st_wspd}->set_text (sprintf "%.1f", $stats->{+CS_STAT_WEAP_SP}); 561 $::STATWIDS->{st_wspd}->set_text (sprintf "%.1f", $stats->{+CS_STAT_WEAP_SP});
509 562
510 $self->update_weight; 563 $self->update_weight;
511 564
512 $::STATWIDS->{"res_$_"}->set_text (sprintf "%d%", $stats->{$RES_TBL{$_}}) 565 $::STATWIDS->{"res_$_"}->set_text (sprintf "%d%%", $stats->{$RES_TBL{$_}})
513 for keys %RES_TBL; 566 for keys %RES_TBL;
514 567
515 my $sktbl = $::STATWIDS->{skill_tbl}; 568 my $sktbl = $::STATWIDS->{skill_tbl};
516 my @skills = keys %{ $self->{skill_info} }; 569 my @skills = keys %{ $self->{skill_info} };
517 570
536 7, 0, (new DC::UI::Label text => "Skill", expand => 1, align => 0), 589 7, 0, (new DC::UI::Label text => "Skill", expand => 1, align => 0),
537 ]; 590 ];
538 591
539 my @add = @$sw; 592 my @add = @$sw;
540 593
541 my $TOOLTIP_ALL = "\n\n<small>Left click - ready skill\nMiddle click - use spell\nRight click - further options</small>"; 594 my $TOOLTIP_ALL = "\n\n<small>Left click - ready skill\nMiddle click - use skill\nRight click - further options</small>";
542 595
543 my @TOOLTIP_LVL = (tooltip => "<b>Level</b>. The level of the skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1); 596 my @TOOLTIP_LVL = (tooltip => "<b>Level</b>. The level of the skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1);
544 my @TOOLTIP_EXP = (tooltip => "<b>Experience</b>. The experience points you have in this skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1); 597 my @TOOLTIP_EXP = (tooltip => "<b>Experience</b>. The experience points you have in this skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1);
545 598
546 my ($x, $y) = (0, 1); 599 my ($x, $y) = (0, 1);
608 my $sw = $self->{skillwid}{$idx}; 661 my $sw = $self->{skillwid}{$idx};
609 $sw->[0]->set_text (::formsep ($val->[1])); 662 $sw->[0]->set_text (::formsep ($val->[1]));
610 $sw->[1]->set_text ($val->[0] * 1); 663 $sw->[1]->set_text ($val->[0] * 1);
611 $sw->[2]->set_value (@$val); 664 $sw->[2]->set_value (@$val);
612 665
613 $::GAUGES->{sklprg}->set_label ("$name %d%%"); 666 $::GAUGES->{skillexp}->set_label ("$name %d%%");
614 $::GAUGES->{sklprg}->set_value (@$val); 667 $::GAUGES->{skillexp}->set_value (@$val);
615 } 668 }
616} 669}
617 670
618sub user_send { 671sub user_send {
619 my ($self, $command) = @_; 672 my ($self, $command) = @_;
632} 685}
633 686
634sub map_scroll { 687sub map_scroll {
635 my ($self, $dx, $dy) = @_; 688 my ($self, $dx, $dy) = @_;
636 689
637 $self->{map}->scroll ($dx, $dy); 690 $self->{map_widget}->scroll ($dx, $dy);
638} 691}
639 692
640sub feed_map1a { 693sub feed_map1a {
641 my ($self, $data) = @_; 694 my ($self, $data) = @_;
642 695
643 my $missing = $self->{map}->map1a_update ($data, $self->{setup}{extmap}); 696 my $missing = $self->{map}->map1a_update ($data);
644 my $delay; 697 my $delay;
645 698
646 for my $tile (@$missing) { 699 for my $tile (@$missing) {
647 next if $self->{delay}{$tile}; 700 next if $self->{delay}{$tile};
648 701
649 $delay = 1; 702 $delay = 1;
650 703
651 if (my $tex = $::CONN->{texture}[$tile]) { 704 if (my $tex = $self->{texture}[$tile]) {
652 $tex->upload; 705 $tex->upload;
653 } else { 706 } else {
654 $self->{delay}{$tile} = 1; 707 $self->{delay}{$tile} = 1;
655 708
656 # we assume the face is in-flight and will eventually come 709 # we assume the face is in-flight and will eventually arrive
657 push @{$self->{tile_cb}{$tile}}, sub { 710 push @{$self->{tile_cb}{$tile}}, sub {
658 delete $self->{delay}{$tile}; 711 delete $self->{delay}{$tile};
659 $_[0]->upload; 712 $_[0]->upload;
660 }; 713 };
661 } 714 }
662 } 715 }
663 716
664 if ($delay) { 717 if ($delay) {
665 # delay the map drawing a tiny bit in the hope of getting the missing fetched 718 # delay the map drawing a tiny bit in the hope of getting the missing tiles fetched
666 EV::once undef, 0, 0.03, sub { 719 EV::once undef, 0, 0.03, sub {
667 $self->{map_widget}->update 720 $self->{map_widget}->update
668 if $self->{map_widget}; 721 if $self->{map_widget};
669 }; 722 };
670 } else { 723 } else {
679} 732}
680 733
681sub flush_map { 734sub flush_map {
682 my ($self) = @_; 735 my ($self) = @_;
683 736
684 my $map_info = delete $self->{map_info} 737 return unless $self->{map_info};
685 or return;
686 738
739 for my $map_info (values %{ $self->{map_cache} || {} }) {
687 my ($hash, $x, $y, $w, $h) = @$map_info; 740 my ($hash, $rdata, $x, $y, $w, $h) = @$map_info;
688 741
689 my $data = Compress::LZF::compress $self->{map}->get_rect ($x, $y, $w, $h); 742 my $data = $self->{map}->get_rect ($x, $y, $w, $h);
690 $self->{map_cache_new}{$hash} = \$data; 743
744 if ($data ne $$rdata) {
745 $map_info->[1] = \$data;
746 my $cdata = Compress::LZF::compress $data;
691 DC::DB::put $self->{mapcache} => $hash => $data, sub { }; 747 DC::DB::put $self->{mapcache} => $hash => $cdata, sub { };
748 }
749 }
692} 750}
693 751
694sub map_clear { 752sub map_clear {
695 my ($self) = @_; 753 my ($self) = @_;
696 754
697 $self->flush_map; 755 $self->flush_map;
756 delete $self->{map_info};
698 delete $self->{neigh_map}; 757 delete $self->{neigh_map};
699 758
700 $self->{map}->clear; 759 $self->{map}->clear;
701 delete $self->{map_widget}{magicmap}; 760 delete $self->{map_widget}{magicmap};
702} 761}
723 782
724 $self->bg_fetch; 783 $self->bg_fetch;
725 }; 784 };
726} 785}
727 786
728sub load_map($$$) { 787sub load_map($$$$$$) {
729 my ($self, $hash, $x, $y) = @_; 788 my ($self, $hash, $x, $y, $w, $h) = @_;
730 789
731 my $gen = $self->{map_change_gen}; 790 my $map_info = $self->{map_cache}{$hash} = [$hash, \"", $x, $y, $w, $h];
732 791
733 my $cb = sub { 792 my $cb = sub {
734 return unless $gen == $self->{map_change_gen}; 793 $map_info->[1] = \$_[0];
735 794
736 my ($data) = @_;
737
738 if (defined $data) {
739 $self->{map_cache_new}{$hash} = \$data;
740
741 my $data = Compress::LZF::decompress $data;
742
743 my $inprogress = @{ $self->{bg_fetch} || [] }; 795 my $inprogress = @{ $self->{bg_fetch} || [] };
744 unshift @{ $self->{bg_fetch} }, $self->{map}->set_rect ($x, $y, $data); 796 unshift @{ $self->{bg_fetch} }, $self->{map}->set_rect ($x, $y, $_[0]);
745 $self->bg_fetch unless $inprogress; 797 $self->bg_fetch unless $inprogress;
746 }
747 }; 798 };
748 799
749 if (my $rdata = $self->{map_cache_old}{$hash}) { 800 if (my $map_info = $self->{map_cache_old}{$hash}) {
750 $cb->($$rdata); 801 $cb->(${ $map_info->[1] });
751 } else { 802 } else {
803 my $gen = $self->{map_change_gen};
804
752 DC::DB::get $self->{mapcache} => $hash, $cb; 805 DC::DB::get $self->{mapcache} => $hash, sub {
806 return unless $gen == $self->{map_change_gen};
807 return unless defined $_[0];
808 $cb->(Compress::LZF::decompress $_[0]);
809 };
753 } 810 }
754} 811}
755 812
756# hardcode /world/world_xxx_xxx map names, the savings are enourmous, 813# hardcode /world/world_xxx_xxx map names, the savings are enourmous,
757# (server resource,s latency, bandwidth), so this hack is warranted. 814# (server resources, latency, bandwidth), so this hack is warranted.
758# the right fix is to make real tiled maps with an overview file 815# the right fix is to make real tiled maps with an overview file
759sub send_mapinfo { 816sub send_mapinfo {
760 my ($self, $data, $cb) = @_; 817 my ($self, $data, $cb) = @_;
761 818
762 if ($self->{map_info}[0] =~ m%^/world/world_(\d\d\d)_(\d\d\d)$%) { 819 if ($self->{map_info}[0] =~ m%^/world/world_(\d\d\d)_(\d\d\d)$%) {
787} 844}
788 845
789# this method does a "flood fill" into every tile direction 846# this method does a "flood fill" into every tile direction
790# it assumes that tiles are arranged in a rectangular grid, 847# it assumes that tiles are arranged in a rectangular grid,
791# i.e. a map is the same as the left of the right map etc. 848# i.e. a map is the same as the left of the right map etc.
792# failure to comply are harmless and result in display errors 849# failure to comply is harmless and results in display errors
793# at worst. 850# at worst.
794sub flood_fill { 851sub flood_fill {
795 my ($self, $block, $gx, $gy, $path, $hash, $flags) = @_; 852 my ($self, $block, $gx, $gy, $path, $hash, $flags) = @_;
796 853
797 # the server does not allow map paths > 6 854 # the server does not allow map paths > 6
833 return if $mode ne "spatial"; 890 return if $mode ne "spatial";
834 891
835 $x += $self->{map}->ox; 892 $x += $self->{map}->ox;
836 $y += $self->{map}->oy; 893 $y += $self->{map}->oy;
837 894
838 $self->load_map ($hash, $x, $y) 895 $self->load_map ($hash, $x, $y, $w, $h)
839 unless $self->{neigh_map}{$hash}[5]++;#d# 896 unless $self->{neigh_map}{$hash}[5]++;#d#
840 897
841 $neigh->[$tile] = [$flags, $x, $y, $w, $h, $hash]; 898 $neigh->[$tile] = [$flags, $x, $y, $w, $h, $hash];
842 899
843 $self->flood_fill ($block, $gx, $gy, "$path$tile", $hash, $flags) 900 $self->flood_fill ($block, $gx, $gy, "$path$tile", $hash, $flags)
851 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_; 908 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
852 909
853 $self->flush_map; 910 $self->flush_map;
854 911
855 ++$self->{map_change_gen}; 912 ++$self->{map_change_gen};
856 $self->{map_cache_old} = delete $self->{map_cache_new}; 913 $self->{map_cache_old} = delete $self->{map_cache};
857 914
858 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy); 915 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
859 916
860 my $mapmapw = $self->{mapmap}->{w}; 917 my $mapmapw = $self->{mapmap}->{w};
861 my $mapmaph = $self->{mapmap}->{h}; 918 my $mapmaph = $self->{mapmap}->{h};
873 $self->{map_info} = [$hash, $x, $y, $w, $h]; 930 $self->{map_info} = [$hash, $x, $y, $w, $h];
874 931
875 (my $map = $hash) =~ s/^.*?\/([^\/]+)$/\1/; 932 (my $map = $hash) =~ s/^.*?\/([^\/]+)$/\1/;
876 $::STATWIDS->{map}->set_text ("Map: " . $map); 933 $::STATWIDS->{map}->set_text ("Map: " . $map);
877 934
878 $self->load_map ($hash, $x, $y); 935 $self->load_map ($hash, $x, $y, $w, $h);
879 $self->flood_fill (0, 0, 0, "", $hash, $flags); 936 $self->flood_fill (0, 0, 0, "", $hash, $flags);
880} 937}
881 938
882sub face_find { 939sub face_find {
883 my ($self, $facenum, $face, $cb) = @_; 940 my ($self, $facenum, $face, $cb) = @_;
954 1011
955 my $tex = $self->{texture}[$tile] ||= 1012 my $tex = $self->{texture}[$tile] ||=
956 new DC::Texture 1013 new DC::Texture
957 tile => $tile, 1014 tile => $tile,
958 image => $data, delete_image => 1, 1015 image => $data, delete_image => 1,
959 minify => 1, mipmap => 1; 1016 minify => 1;
960 1017
961 if (my $cbs = delete $self->{tile_cb}{$tile}) { 1018 if (my $cbs = delete $self->{tile_cb}{$tile}) {
962 $_->($tex) for @$cbs; 1019 $_->($tex) for @$cbs;
963 } 1020 }
964} 1021}
969 my ($self, $num, $cb) = @_; 1026 my ($self, $num, $cb) = @_;
970 1027
971 push @{$self->{face_cb}{$num}}, $cb; 1028 push @{$self->{face_cb}{$num}}, $cb;
972 1029
973 defined wantarray 1030 defined wantarray
974 ? DC::guard { 1031 ? Guard::guard {
975 @{$self->{face_cb}{$num}} 1032 @{$self->{face_cb}{$num}}
976 = grep $_ != $cb, 1033 = grep $_ != $cb,
977 @{$self->{face_cb}{$num}}; 1034 @{$self->{face_cb}{$num}};
978 } 1035 }
979 : () 1036 : ()
1007 my ($self, $flags, $prompt) = @_; 1064 my ($self, $flags, $prompt) = @_;
1008 1065
1009 $prompt = $LAST_QUERY unless length $prompt; 1066 $prompt = $LAST_QUERY unless length $prompt;
1010 $LAST_QUERY = $prompt; 1067 $LAST_QUERY = $prompt;
1011 1068
1012 $self->{query}-> ($self, $flags, $prompt); 1069 $self->{query}->($self, $flags, $prompt);
1013} 1070}
1014 1071
1015sub sanitise_xml($) { 1072sub sanitise_xml($) {
1016 local $_ = shift; 1073 local $_ = shift;
1017 1074
1025 s/&(?!amp;|lt;|gt;|apos;|quot;|#[0-9]+;|#x[0-9a-fA-F]+;)/&amp;/g; 1082 s/&(?!amp;|lt;|gt;|apos;|quot;|#[0-9]+;|#x[0-9a-fA-F]+;)/&amp;/g;
1026 1083
1027 # handle some elements 1084 # handle some elements
1028 s/<fg name='([^']*)'>(.*?)<\/fg>/<span foreground='$1'>$2<\/span>/gs; 1085 s/<fg name='([^']*)'>(.*?)<\/fg>/<span foreground='$1'>$2<\/span>/gs;
1029 s/<fg name="([^"]*)">(.*?)<\/fg>/<span foreground="$1">$2<\/span>/gs; 1086 s/<fg name="([^"]*)">(.*?)<\/fg>/<span foreground="$1">$2<\/span>/gs;
1087
1088 s/\s+$//;
1030 1089
1031 $_ 1090 $_
1032} 1091}
1033 1092
1034our %NAME_TO_COLOR = ( 1093our %NAME_TO_COLOR = (
1047 tan => 12, 1106 tan => 12,
1048); 1107);
1049 1108
1050our @CF_COLOR = ( 1109our @CF_COLOR = (
1051 [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00], 1110 [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00],
1052 [1.00, 1.00, 1.00], 1111 [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00],
1053 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55] 1112 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55],
1054 [1.00, 0.00, 0.00], 1113 [1.00, 0.00, 0.00],
1055 [1.00, 0.54, 0.00], 1114 [1.00, 0.54, 0.00],
1056 [0.11, 0.56, 1.00], 1115 [0.11, 0.56, 1.00],
1057 [0.93, 0.46, 0.00], 1116 [0.93, 0.46, 0.00],
1058 [0.18, 0.54, 0.34], 1117 [0.18, 0.54, 0.34],
1077 $self->logprint ("msg: ", $text); 1136 $self->logprint ("msg: ", $text);
1078 return if $color < 0; # negative color == ignore if not understood 1137 return if $color < 0; # negative color == ignore if not understood
1079 1138
1080 my $fg = $CF_COLOR[$color & NDI_COLOR_MASK] || [1, 0, 0]; 1139 my $fg = $CF_COLOR[$color & NDI_COLOR_MASK] || [1, 0, 0];
1081 1140
1082 ## try to create single paragraphs of multiple lines sent by the server
1083 # no longer neecssary with TRT servers
1084 #$text =~ s/(?<=\S)\n(?=\w)/ /g;
1085
1086 for (split /\n/, $text) {
1087 ::message ({ 1141 ::message ({
1088 fg => $fg, 1142 fg => $fg,
1089 markup => $_, 1143 markup => $text,
1090 type => $type, 1144 type => $type,
1091 extra => [@extra], 1145 extra => [@extra],
1092 color_flags => $color, #d# ugly, kill 1146 color_flags => $color, #d# ugly, kill
1093 }); 1147 });
1094 1148
1095 $color &= ~NDI_CLEAR; # only clear once for multiline messages 1149# $color &= ~NDI_CLEAR; # only clear once for multiline messages
1096 # actually, this is an ugly design. _we_ should control the channels, 1150# # actually, this is an ugly design. _we_ should control the channels,
1097 # not some random other widget, as the channels are clearly protocol-specific. 1151# # not some random other widget, as the channels are clearly protocol-specific.
1098 # then we could also react to flags such as CLEAR without resorting to 1152# # then we could also react to flags such as CLEAR without resorting to
1099 # hacks such as color_flags, above. 1153# # hacks such as color_flags, above.
1100 }
1101 1154
1102 $self->{statusbox}->add ($text, 1155 $self->{statusbox}->add ($text,
1103 group => $text, 1156 group => $text,
1104 fg => $fg, 1157 fg => $fg,
1105 timeout => $color >= 2 ? 180 : 10, 1158 timeout => $color >= 2 ? 180 : 10,
1170 $::FLOORBOX->clear; 1223 $::FLOORBOX->clear;
1171 1224
1172 my @add; 1225 my @add;
1173 1226
1174 my $row; 1227 my $row;
1175 for (sort { $a->{count} <=> $b->{count} } values %{ $::CONN->{container}{$::CONN->{open_container} || 0} }) { 1228 for (sort { $b->{count} <=> $a->{count} } values %{ $::CONN->{container}{$::CONN->{open_container} || 0} }) {
1229 next if $_->{tag} & 0x80000000;
1176 if ($row < 6) { 1230 if ($row < 6) {
1177 local $_->{face_widget}; # hack to force recreation of widget 1231 local $_->{face_widget}; # hack to force recreation of widget
1178 local $_->{desc_widget}; # hack to force recreation of widget 1232 local $_->{desc_widget}; # hack to force recreation of widget
1179 DC::Item::update_widgets $_; 1233 DC::Item::update_widgets $_;
1180 1234
1207sub set_opencont { 1261sub set_opencont {
1208 my ($conn, $tag, $name) = @_; 1262 my ($conn, $tag, $name) = @_;
1209 $conn->{open_container} = $tag; 1263 $conn->{open_container} = $tag;
1210 update_floorbox; 1264 update_floorbox;
1211 1265
1212 $::INVR_HB->clear (); 1266 $::INVR_HB->clear;
1213 $::INVR_HB->add (new DC::UI::Label expand => 1, text => $name); 1267 $::INVR_HB->add (new DC::UI::Label expand => 1, text => $name);
1214 1268
1215 if ($tag != 0) { # Floor isn't closable, is it? 1269 if ($tag != 0) { # Floor isn't closable, is it?
1216 $::INVR_HB->add (new DC::UI::Button 1270 $::INVR_HB->add (new DC::UI::Button
1217 text => "Close container", 1271 text => "Close container",
1273} 1327}
1274 1328
1275sub item_update { 1329sub item_update {
1276 my ($self, $item) = @_; 1330 my ($self, $item) = @_;
1277 1331
1278 #d# print "item_update: $item->{tag} in $item->{container} ($self->{player}{tag}) ($::CONN->{open_container})\n"; 1332 #print "item_update: $item->{tag} in $item->{container} pt($self->{player}{tag}) oc($::CONN->{open_container}) f($item->{flags})\n";
1279 1333
1280 DC::Item::update_widgets $item; 1334 DC::Item::update_widgets $item;
1281 1335
1282 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) { 1336 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) {
1283 set_opencont ($::CONN, 0, "Floor"); 1337 set_opencont ($::CONN, 0, "Floor");
1284 1338
1285 } elsif ($item->{flags} & F_OPEN) { 1339 } elsif ($item->{flags} & F_OPEN) {
1286 set_opencont ($::CONN, $item->{tag}, DC::Item::desc_string $item); 1340 set_opencont ($::CONN, $item->{tag}, DC::Item::desc_string $item);
1311sub update_server_info { 1365sub update_server_info {
1312 my ($self) = @_; 1366 my ($self) = @_;
1313 1367
1314 my @yesno = ("<span foreground='red'>no</span>", "<span foreground='green'>yes</span>"); 1368 my @yesno = ("<span foreground='red'>no</span>", "<span foreground='green'>yes</span>");
1315 1369
1370 my $version = JSON::XS->new->encode ($self->{s_version});
1371
1316 $::SERVER_INFO->set_markup ( 1372 $::SERVER_INFO->set_markup (
1317 "server <tt>$self->{host}:$self->{port}</tt>\n" 1373 "server <tt>$self->{host}:$self->{port}</tt>\n"
1318 . "protocol version <tt>$self->{version}</tt>\n" 1374 . "protocol version <tt>$version</tt>\n"
1319 . "minimap support $yesno[$self->{setup}{mapinfocmd} > 0]\n"
1320 . "extended command support $yesno[$self->{setup}{extcmd} > 0]\n"
1321 . "examine command support $yesno[$self->{setup}{excmd} > 0]\n"
1322 . "editing support $yesno[!!$self->{editor_support}]\n" 1375 . "editing support $yesno[!!$self->{editor_support}]\n"
1323 . "map attributes $yesno[$self->{setup}{extmap} > 0]\n"
1324 . "big image protocol support $yesno[$self->{setup}{fxix} > 0]\n"
1325 . "client support $yesno[$self->{cfplus_ext} > 0]" 1376 . "client support $yesno[$self->{cfplus_ext} > 0]"
1326 . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n" 1377 . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n"
1327 . "map size $self->{mapw}×$self->{maph}\n" 1378 . "map size $self->{mapw}×$self->{maph}\n"
1328 ); 1379 );
1329 1380
1351 }); 1402 });
1352 1403
1353 $self->update_server_info; 1404 $self->update_server_info;
1354 1405
1355 $self->send_command ("output-rate $::CFG->{output_rate}") if $::CFG->{output_rate} > 0; 1406 $self->send_command ("output-rate $::CFG->{output_rate}") if $::CFG->{output_rate} > 0;
1356 $self->send_command ("pickup $::CFG->{pickup}"); 1407 $self->send_pickup ($::CFG->{pickup});
1357} 1408}
1358 1409
1359sub lookat { 1410sub lookat {
1360 my ($self, $x, $y) = @_; 1411 my ($self, $x, $y) = @_;
1361 1412
1363 $self->send_ext_req (lookat => $x, $y, sub { 1414 $self->send_ext_req (lookat => $x, $y, sub {
1364 my (%msg) = @_; 1415 my (%msg) = @_;
1365 1416
1366 if (exists $msg{npc_dialog}) { 1417 if (exists $msg{npc_dialog}) {
1367 # start npc chat dialog 1418 # start npc chat dialog
1368 $self->{npc_dialog} = new DC::NPCDialog:: 1419 $self->{w}{npc_dialog} = new DC::NPCDialog::
1369 token => $msg{npc_dialog}, 1420 token => $msg{npc_dialog},
1370 title => "$msg{npc_dialog}[0] (NPC)", 1421 title => "$msg{npc_dialog}[0] (NPC)",
1371 conn => $self, 1422 conn => $self,
1372 ; 1423 ;
1373 } 1424 }
1378} 1429}
1379 1430
1380sub destroy { 1431sub destroy {
1381 my ($self) = @_; 1432 my ($self) = @_;
1382 1433
1383 (delete $self->{npc_dialog})->destroy 1434 $_->destroy
1384 if $self->{npc_dialog}; 1435 for values %{ $self->{w} };
1385 1436
1386 $self->SUPER::destroy; 1437 $self->SUPER::destroy;
1387 1438
1388 %$self = (); 1439 %$self = ();
1389} 1440}
1525} 1576}
1526 1577
1527sub send { 1578sub send {
1528 my ($self, $msg) = @_; 1579 my ($self, $msg) = @_;
1529 1580
1530 $self->{textview}->add_paragraph ({ markup => "\n" . DC::asxml $msg }); 1581 $self->{textview}->add_paragraph ({
1582 markup =>
1583 "\n<span foreground='#ffff00'><b>"
1584 . (DC::asxml $msg)
1585 . "</b></span>"
1586 });
1531 $self->{textview}->scroll_to_bottom; 1587 $self->{textview}->scroll_to_bottom;
1532 1588
1533 $self->{conn}->send_ext_msg (npc_dialog_tell => $self->{id}, $msg); 1589 $self->{conn}->send_ext_msg (npc_dialog_tell => $self->{id}, $msg);
1534} 1590}
1535 1591
1538 1594
1539 #Carp::cluck "debug\n";#d# #todo# enable: destroy gets called twice because scalar keys {} is 1 1595 #Carp::cluck "debug\n";#d# #todo# enable: destroy gets called twice because scalar keys {} is 1
1540 1596
1541 if ($self->{conn}) { 1597 if ($self->{conn}) {
1542 $self->{conn}->send_ext_msg (npc_dialog_end => $self->{id}) if $self->{id}; 1598 $self->{conn}->send_ext_msg (npc_dialog_end => $self->{id}) if $self->{id};
1543 delete $self->{conn}{npc_dialog}; 1599 delete $self->{conn}{w}{npc_dialog};
1544 $self->{conn}->disconnect_ext ($self->{id}); 1600 $self->{conn}->disconnect_ext ($self->{id});
1545 } 1601 }
1546 1602
1547 $self->SUPER::destroy; 1603 $self->SUPER::destroy;
1548} 1604}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines