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.135 by elmex, Fri Jul 27 17:24:29 2007 UTC vs.
Revision 1.156 by root, Tue Aug 21 00:59:34 2007 UTC

21 21
22 my $self = $class->SUPER::new (%arg, 22 my $self = $class->SUPER::new (%arg,
23 setup_req => { 23 setup_req => {
24 extmap => 1, 24 extmap => 1,
25 excmd => 1, 25 excmd => 1,
26 ywidget => 1,#d# 26 xwidget1 => 1,#d#
27 %{$arg{setup_req} || {}}, 27 %{$arg{setup_req} || {}},
28 }, 28 },
29 ); 29 );
30 30
31 $self->{map_widget}->clr_commands; 31 $self->{map_widget}->clr_commands;
48 sort { (length $a) <=> (length $b) } 48 sort { (length $a) <=> (length $b) }
49 @args 49 @args
50 } sort { $a->{par} <=> $b->{par} } 50 } sort { $a->{par} <=> $b->{par} }
51 CFPlus::Pod::find command => "*"; 51 CFPlus::Pod::find command => "*";
52 52
53 $self->connect_ext (music => sub { 53 $self->connect_ext (ambient_music => sub {
54 my ($ev) = @_; 54 my ($songs) = @_;
55 55 &::audio_music_set_ambient ($songs);
56 &::audio_music_set ($self->{songs} = $ev->{play})
57 if $ev->{play};
58 }); 56 });
59 57
60 $self->connect_ext (capabilities => sub { 58 $self->connect_ext (capabilities => sub {
61 my (%cap) = @_; 59 my (%cap) = @_;
62 60
63 $self->send_exti_msg (fx_want => { 61 #$self->send ("setup sound 0"); # we use a different protocol
64 3 => !!$::CFG->{bgm_enable}, # FT_MUSIC 62 $self->update_fx_want;
65 5 => !!$::CFG->{audio_enable}, # FT_SOUND 63
64 $self->send_exti_req (resource => "exp_table", sub {
65 my ($exp_table) = @_;
66
67 $self->register_face_handler ($exp_table, sub {
68 my ($face) = @_;
69
70 $self->{exp_table} = $self->{json_coder}->decode (delete $face->{data});
71
72 #TODO: update all interested parties
73 });
74
75 ()
66 }); 76 });
67 77
68 if (my $ts = $cap{tileset}) { 78 if (my $ts = $cap{tileset}) {
69 if (my ($default) = grep $_->[2] & 1, @$ts) { 79 if (my ($default) = grep $_->[2] & 1, @$ts) {
70 $self->{tileset} = $default; 80 $self->{tileset} = $default;
108 # widgetset create 118 # widgetset create
109 $self->connect_ext (ws_c => sub { 119 $self->connect_ext (ws_c => sub {
110 my ($ws, $id, $class, $args) = @_; 120 my ($ws, $id, $class, $args) = @_;
111 121
112 for my $ev (grep /^on_/, keys %$args) { 122 for my $ev (grep /^on_/, keys %$args) {
123 my $rid = $args->{$ev};
113 $args->{$ev} = sub { 124 $args->{$ev} = sub {
114 my $id = shift->{s_id}; 125 my $id = shift->{s_id};
115 $self->send_exti_msg (w_e => $id, $ev, \@_); 126 $self->send_exti_msg (w_e => $id, $rid, @_);
116 127
117 1 128 1
118 }; 129 };
119 } 130 }
120 131
121 if (my $widget = eval { 132 $self->widget_associate (
133 $ws, $id => scalar eval {
122 local $SIG{__DIE__}; 134 local $SIG{__DIE__};
123 "CFPlus::UI::$class"->new ( 135 "CFPlus::UI::$class"->new (%$args)
124 %$args,
125 s_ws => $ws,
126 s_id => $id,
127 )
128 } 136 }
129 ) {
130 $self->{widget}{$id}
131 = $self->{widgetset}{$ws}{w}{$id}
132 = $widget;
133
134 $widget->connect (on_destroy => sub {
135 my ($widget) = @_;
136
137 delete $self->{widget}{$widget->{s_id}};
138 delete $self->{widgetset}{$widget->{s_ws}}{$widget->{s_id}};
139 });
140 } else {
141 warn "server failed creating client-side widget " . (CFPlus::to_json $class) . ": $@\n"; 137 ) or warn "server failed creating client-side widget " . (CFPlus::to_json $class) . ": $@\n";
142 $self->send_exti_msg (w_e => $id, "destroy"); 138 });
139
140 # widgetset associate
141 $self->connect_ext (ws_a => sub {
142 my (%ass) = @_;
143
144 # everything that has a name, wether conceivably useful or not
145 my %wkw = (
146 root => $CFPlus::UI::ROOT,
147 tooltip => $CFPlus::UI::TOOLTIP,
148
149 mapwidget => $::MAPWIDGET,
150 buttonbar => $::BUTTONBAR,
151 metaserver => $::METASERVER,
152 buttonbar => $::BUTTONBAR,
153 login_button => $::LOGIN_BUTTON,
154 quit_dialog => $::QUIT_DIALOG,
155 host_entry => $::HOST_ENTRY,
156 metaserver => $::METASERVER,
157 server_info => $::SERVER_INFO,
158
159 setup_dialog => $::SETUP_DIALOG,
160 setup_notebook => $::SETUP_NOTEBOOK,
161 setup_server => $::SETUP_SERVER,
162 setup_keyboard => $::SETUP_KEYBOARD,
163
164 pl_notebook => $::PL_NOTEBOOK,
165 pl_window => $::PL_WINDOW,
166 inventory_page => $::INVENTORY_PAGE,
167 stats_page => $::STATS_PAGE,
168 skill_page => $::SKILL_PAGE,
169 spell_page => $::SPELL_PAGE,
170 spell_list => $::SPELL_LIST,
171
172 floorbox => $::FLOORBOX,
173 help_window => $::HELP_WINDOW,
174 message_window => $::MESSAGE_WINDOW,
175 statusbox => $::SDTATUSBOX,
176
177 inv => $::INV,
178 invr => $::INVR,
179 invr_hb => $::INVR_HB,
180
181 );
182
183 while (my ($id, $name) = each %ass) {
184 $self->widget_associate (undef, $id => $wkw{$name})
185 or warn "server failed to associate non-existent well-known widget $name\n";
143 } 186 }
144 }); 187 });
145 188
146 # widget call 189 # widget call
147 $self->connect_ext (w_c => sub { 190 $self->connect_ext (w_c => sub {
148 my ($id, $rid, $method, $args) = @_; 191 my ($id, $rid, $method, @args) = @_;
149 192
150 my $w = $self->{widget}{$id} 193 my $w = $self->{widget}{$id}
151 or return; 194 or return;
152 195
153 $args ||= [];
154
155 if ($rid) { 196 if ($rid) {
156 $self->send_exti_msg (w_r => $rid, [$w->$method (@$args)]); 197 $self->send_exti_msg (w_r => $rid, $w->$method (@args));
157 } else { 198 } else {
158 $w->$method (@$args); 199 $w->$method (@args);
159 } 200 }
160 }); 201 });
161 202
162 # widget set 203 # widget set
163 $self->connect_ext (w_s => sub { 204 $self->connect_ext (w_s => sub {
223 $self->{mapcache} = "mapcache_$self->{host}_$self->{port}"; 264 $self->{mapcache} = "mapcache_$self->{host}_$self->{port}";
224 265
225 $self 266 $self
226} 267}
227 268
269sub widget_associate {
270 my ($self, $ws, $id, $widget) = @_;
271
272 if ($widget) {
273 $widget->{s_id} = $id;
274 $self->{widget}{$id} = $widget;
275
276 if ($ws) {
277 $widget->{s_ws} = $ws;
278 $self->{widgetset}{$ws}{w}{$id} = $widget;
279 }
280
281 $widget->connect (on_destroy => sub {
282 my ($widget) = @_;
283
284 delete $self->{widget}{$widget->{s_id}};
285 delete $self->{widgetset}{$widget->{s_ws}}{$widget->{s_id}}
286 if exists $widget->{s_ws};
287 });
288
289 1
290 } else {
291 $self->send_exti_msg (w_e => $id, undef);
292
293 0
294 }
295}
296
297sub update_fx_want {
298 my ($self) = @_;
299
300 $self->send_exti_msg (fx_want => {
301 3 => !!$::CFG->{bgm_enable}, # FT_MUSIC
302 5 => !!$::CFG->{audio_enable}, # FT_SOUND
303 6 => 1, # FT_RSRC
304 });
305}
306
228sub logprint { 307sub logprint {
229 my ($self, @a) = @_; 308 my ($self, @a) = @_;
230 309
231 $self->{log_fh} ||= do { 310 CFPlus::DB::logprint "$Crossfire::VARDIR/log.$self->{host}" => (join "", @a), sub { };
232 my $path = "$Crossfire::VARDIR/log.$self->{host}";
233
234 open my $fh, ">>:utf8", $path
235 or die "Couldn't open logfile $path: $!";
236
237 $fh->autoflush (1);
238
239 $fh;
240 };
241
242 my ($sec, $min, $hour, $mday, $mon, $year) = localtime time;
243
244 my $ts = sprintf "%04d-%02d-%02d %02d:%02d:%02d",
245 $year + 1900, $mon + 1, $mday, $hour, $min, $sec;
246
247 print {$self->{log_fh}} "$ts ", @a, "\n";
248} 311}
249 312
250sub _stat_numdiff { 313sub _stat_numdiff {
251 my ($self, $name, $old, $new) = @_; 314 my ($self, $name, $old, $new) = @_;
252 315
517} 580}
518 581
519sub feed_map1a { 582sub feed_map1a {
520 my ($self, $data) = @_; 583 my ($self, $data) = @_;
521 584
522 $self->{map}->map1a_update ($data, $self->{setup}{extmap}); 585 my $missing = $self->{map}->map1a_update ($data, $self->{setup}{extmap});
586 my $delay;
587
588 for my $tile (@$missing) {
589 next if $self->{delay}{$tile};
590
591 $delay = 1;
592
593 if (my $tex = $::CONN->{texture}[$tile]) {
594 $tex->upload;
595 } else {
596 $self->{delay}{$tile} = 1;
597
598 # we assume the face is in-flight and will eventually come
599 push @{$self->{tile_cb}{$tile}}, sub {
600 delete $self->{delay}{$tile};
601 $_[0]->upload;
602 };
603 }
604 }
605
606 if ($delay) {
607 # delay the map drawing a tiny bit in the hope of getting the missing fetched
608 Event->timer (after => 0.03, cb => sub {
609 $_[0]->w->cancel;
610 $self->{map_widget}->update;
611 });
612 } else {
523 $self->{map_widget}->update; 613 $self->{map_widget}->update;
614 }
524} 615}
525 616
526sub magicmap { 617sub magicmap {
527 my ($self, $w, $h, $x, $y, $data) = @_; 618 my ($self, $w, $h, $x, $y, $data) = @_;
528 619
535 my $map_info = delete $self->{map_info} 626 my $map_info = delete $self->{map_info}
536 or return; 627 or return;
537 628
538 my ($hash, $x, $y, $w, $h) = @$map_info; 629 my ($hash, $x, $y, $w, $h) = @$map_info;
539 630
540 my $data = $self->{map}->get_rect ($x, $y, $w, $h); 631 my $data = Compress::LZF::compress $self->{map}->get_rect ($x, $y, $w, $h);
632 $self->{map_cache_new}{$hash} = \$data;
541 CFPlus::DB::put $self->{mapcache} => $hash => Compress::LZF::compress $data, sub { }; 633 CFPlus::DB::put $self->{mapcache} => $hash => $data, sub { };
542 #warn sprintf "SAVEmap[%s] length %d\n", $hash, length $data;#d#
543} 634}
544 635
545sub map_clear { 636sub map_clear {
546 my ($self) = @_; 637 my ($self) = @_;
547 638
553} 644}
554 645
555sub bg_fetch { 646sub bg_fetch {
556 my ($self) = @_; 647 my ($self) = @_;
557 648
558 my $id; 649 my $tile;
559 650
560 do { 651 do {
561 $id = pop @{$self->{bg_fetch}} 652 $tile = pop @{$self->{bg_fetch}}
562 or return; 653 or return;
563 } while $self->{texture}[$id]; 654 } while $self->{texture}[$tile];
564 655
565 CFPlus::DB::get tilecache => $id, sub { 656 CFPlus::DB::get tilecache => $tile, sub {
566 my ($data) = @_; 657 my ($data) = @_;
567 658
568 return unless $self->{map}; # stop when destroyed 659 return unless $self->{map}; # stop when destroyed
569 660
570 $self->set_texture ($id => $data)
571 if defined $data; 661 if (defined $data) {
662 $self->have_tile ($tile, $data);
663 $self->{texture}[$tile]->upload;
664 }
572 665
573 $self->bg_fetch; 666 $self->bg_fetch;
574 }; 667 };
575} 668}
576 669
577sub load_map($$$) { 670sub load_map($$$) {
578 my ($self, $hash, $x, $y) = @_; 671 my ($self, $hash, $x, $y) = @_;
579 672
580 my $gen = $self->{map_change_gen}; 673 my $gen = $self->{map_change_gen};
581 674
582 CFPlus::DB::get $self->{mapcache} => $hash, sub { 675 my $cb = sub {
583 return unless $gen == $self->{map_change_gen}; 676 return unless $gen == $self->{map_change_gen};
584 677
585 my ($data) = @_; 678 my ($data) = @_;
586 679
587 if (defined $data) { 680 if (defined $data) {
681 $self->{map_cache_new}{$hash} = \$data;
682
588 $data = Compress::LZF::decompress $data; 683 my $data = Compress::LZF::decompress $data;
589 #warn sprintf "LOADmap[%s,%d,%d] length %d\n", $hash, $x, $y, length $data;#d#
590 684
591 my $inprogress = @{ $self->{bg_fetch} || [] }; 685 my $inprogress = @{ $self->{bg_fetch} || [] };
592 unshift @{ $self->{bg_fetch} }, $self->{map}->set_rect ($x, $y, $data); 686 unshift @{ $self->{bg_fetch} }, $self->{map}->set_rect ($x, $y, $data);
593 $self->bg_fetch unless $inprogress; 687 $self->bg_fetch unless $inprogress;
594 } 688 }
595 }; 689 };
690
691 if (my $rdata = $self->{map_cache_old}{$hash}) {
692 $cb->($$rdata);
693 } else {
694 CFPlus::DB::get $self->{mapcache} => $hash, $cb;
695 }
596} 696}
597 697
598# hardcode /world/world_xxx_xxx map names, the savings are enourmous, 698# hardcode /world/world_xxx_xxx map names, the savings are enourmous,
599# (server resource,s latency, bandwidth), so this hack is warranted. 699# (server resource,s latency, bandwidth), so this hack is warranted.
600# the right fix is to make real tiled maps with an overview file 700# the right fix is to make real tiled maps with an overview file
693 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_; 793 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
694 794
695 $self->flush_map; 795 $self->flush_map;
696 796
697 ++$self->{map_change_gen}; 797 ++$self->{map_change_gen};
798 $self->{map_cache_old} = delete $self->{map_cache_new};
698 799
699 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy); 800 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
700 801
701 my $mapmapw = $self->{mapmap}->{w}; 802 my $mapmapw = $self->{mapmap}->{w};
702 my $mapmaph = $self->{mapmap}->{h}; 803 my $mapmaph = $self->{mapmap}->{h};
724 my ($self, $facenum, $face, $cb) = @_; 825 my ($self, $facenum, $face, $cb) = @_;
725 826
726 if ($face->{type} == 0) { # FT_FACE 827 if ($face->{type} == 0) { # FT_FACE
727 my $id = CFPlus::DB::get_tile_id_sync $face->{name}; 828 my $id = CFPlus::DB::get_tile_id_sync $face->{name};
728 829
729 $face->{id} = $id; 830 $face->{id} = $id;
730 $self->{faceid}[$facenum] = $id;
731
732 $self->{map}->set_tileid ($facenum => $id); 831 $self->{map}->set_tileid ($facenum => $id);
733 832
734 CFPlus::DB::get tilecache => $id, $cb; 833 CFPlus::DB::get tilecache => $id, $cb;
735 834
736 } elsif ($face->{type} & 1) { # with metadata 835 } elsif ($face->{type} & 1) { # with metadata
737 #::message ({ markup => "starting to download song #$face/$pri, check your output-rate setting if your connection gets laggy." });
738 CFPlus::DB::get "res-metadata" => $face->{name}, $cb; 836 CFPlus::DB::get res_meta => $face->{name}, $cb;
837
838 } else { # no metadata
839 CFPlus::DB::get res_data => $face->{name}, $cb;
739 } 840 }
740} 841}
741 842
742sub face_update { 843sub face_update {
743 my ($self, $facenum, $face, $changed) = @_; 844 my ($self, $facenum, $face, $changed) = @_;
744 845
745 if ($face->{type} == 0) { # FT_FACE 846 if ($face->{type} == 0) {
847 # image, FT_FACE
746 CFPlus::DB::put tilecache => $face->{id} => $face->{data}, sub { } 848 CFPlus::DB::put tilecache => $face->{id} => $face->{data}, sub { }
747 if $changed; 849 if $changed;
748 850
749 $self->set_texture ($face->{id} => delete $face->{data}); 851 $self->have_tile ($face->{id}, delete $face->{data});
750 852
751 } elsif ($face->{type} & 1) { # split metadata 853 } elsif ($face->{type} & 1) {
752 my $cb = sub { }; 854 # split metadata case, FT_MUSIC, FT_SOUND
855 if ($changed) { # new data
856 my ($meta, $data) = unpack "(w/a*)*", $face->{data};
857 $face->{data} = $meta;
858
859 CFPlus::DB::put res_data => $face->{name} => $data, sub { };
860 CFPlus::DB::put res_meta => $face->{name} => $meta, sub { };
861 }
862
863 $face->{data} = $self->{json_coder}->decode ($face->{data});
864
865 ::add_license ($face);
753 866
754 if ($face->{type} == 3) { # FT_MUSIC 867 if ($face->{type} == 3) { # FT_MUSIC
755 $cb = sub {
756 $self->{music_meta}{$facenum} = $face;
757
758 ::message ({ markup => "downloaded song #$facenum" }) 868 ::message ({ markup => "downloaded song #$facenum" })
759 if $changed; 869 if $changed;
760 870
761 &::audio_music_set ($self->{songs}); 871 &::audio_music_push ($facenum);
872 } elsif ($face->{type} == 5) { # FT_SOUND
873 ::message ({ markup => "downloaded sound #$facenum" })
874 if $changed;
875
876 &::audio_sound_push ($facenum);
762 }; 877 }
763 }
764 878
765 if ($changed) { # new data
766 my ($meta_json, $data) = unpack "(w/a*)*", delete $face->{data};
767 my $path = CFPlus::DB::path_of_res $face->{name};
768
769 CFPlus::DB::write_file $path, $data, sub {
770 CFPlus::DB::put "res-metadata" => $face->{name} => $meta_json, sub {
771 $face->{meta} = $self->{json_coder}->decode ($meta_json);
772 $face->{path} = $path;
773
774 $cb->();
775 };
776 };
777 } else { 879 } else {
778 $face->{meta} = $self->{json_coder}->decode (delete $face->{data}); 880 # flat resource case, FT_RSRC
779 $cb->(); 881 CFPlus::DB::put res_data => $face->{name} => $face->{data}, sub { }
780 } 882 if $changed;
883 }
884
885 if (my $cbs = $self->{face_cb}{$facenum}) {
886 $_->($face, $changed) for @$cbs;
781 } 887 }
782} 888}
783 889
784sub smooth_update { 890sub smooth_update {
785 my ($self, $facenum, $face) = @_; 891 my ($self, $facenum, $face) = @_;
786 892
787 $self->{map}->set_smooth ($facenum, $face->{smoothface}, $face->{smoothlevel}); 893 $self->{map}->set_smooth ($facenum, $face->{smoothface}, $face->{smoothlevel});
788} 894}
789 895
790sub set_texture { 896sub have_tile {
791 my ($self, $id, $data) = @_; 897 my ($self, $tile, $data) = @_;
792 898
793 return unless $self->{map}; 899 return unless $self->{map};
794 900
795 $self->{texture}[$id] = my $tex = 901 my $tex = $self->{texture}[$tile] ||=
796 new_from_image CFPlus::Texture 902 new CFPlus::Texture
903 tile => $tile,
904 image => $data, delete_image => 1,
797 $data, minify => 1, mipmap => 1; 905 minify => 1, mipmap => 1;
798 906
799 $self->{map}->set_texture ($id, @$tex{qw(name w h s t)}, @{$tex->{minified}}); 907 if (my $cbs = delete $self->{tile_cb}{$tile}) {
800 $self->{map_widget}->update; 908 $_->($tex) for @$cbs;
801 909 }
802 $_->() for @{(delete $self->{face_cb}{$id}) || []};
803} 910}
804 911
805sub connect_face_update { 912# call in non-void context registers a temporary
913# hook with handle, otherwise its permanent
914sub on_face_change {
806 my ($self, $id, $cb) = @_; 915 my ($self, $num, $cb) = @_;
807 916
808 push @{$self->{face_cb}{$id}}, $cb; 917 push @{$self->{face_cb}{$num}}, $cb;
809 918
919 defined wantarray
810 CFPlus::guard { 920 ? CFPlus::guard {
811 @{$self->{face_cb}{$id}} 921 @{$self->{face_cb}{$num}}
812 = grep $_ != $cb, 922 = grep $_ != $cb,
813 @{$self->{face_cb}{$id}}; 923 @{$self->{face_cb}{$num}};
814 } 924 }
925 : ()
926}
927
928# call in non-void context registers a temporary
929# hook with handle, otherwise its permanent
930sub register_face_handler {
931 my ($self, $num, $cb) = @_;
932
933 # invoke if available right now
934 $cb->($self->{face}[$num], 0)
935 unless exists $self->{face}[$num]{loading};
936
937 # future changes
938 $self->on_face_change ($num => $cb)
815} 939}
816 940
817sub sound_play { 941sub sound_play {
818 my ($self, $x, $y, $soundnum, $type) = @_; 942 my ($self, $type, $face, $dx, $dy, $vol) = @_;
819 943
820 $self->{sound_play}->($x, $y, $soundnum, $type); 944 &::audio_sound_play ($face, $dx, $dy, $vol)
945 unless $type & 1; # odd types are silent for future expansion
821} 946}
822 947
823my $LAST_QUERY; # server is stupid, stupid, stupid 948my $LAST_QUERY; # server is stupid, stupid, stupid
824 949
825sub query { 950sub query {
890 $self->{$type} = $text; 1015 $self->{$type} = $text;
891 } else { 1016 } else {
892 $self->logprint ("msg: ", $text); 1017 $self->logprint ("msg: ", $text);
893 return if $color < 0; # negative color == ignore if not understood 1018 return if $color < 0; # negative color == ignore if not understood
894 1019
895 my $fg = $CF_COLOR[$color % @CF_COLOR]; 1020 my $fg = $CF_COLOR[$color & NDI_COLOR_MASK] || [1, 0, 0];
896 1021
897 ## try to create single paragraphs of multiple lines sent by the server 1022 ## try to create single paragraphs of multiple lines sent by the server
898 # no longer neecssary with TRT servers 1023 # no longer neecssary with TRT servers
899 #$text =~ s/(?<=\S)\n(?=\w)/ /g; 1024 #$text =~ s/(?<=\S)\n(?=\w)/ /g;
900 1025
901 ::message ({ fg => $fg, markup => $_, type => $type, extra => [@extra] }) 1026 ::message ({
1027 fg => $fg,
1028 markup => $_,
1029 type => $type,
1030 extra => [@extra],
1031 color_flags => $color
902 for split /\n/, $text; 1032 }) for split /\n/, $text;
903 1033
904 $self->{statusbox}->add ($text, 1034 $self->{statusbox}->add ($text,
905 group => $text, 1035 group => $text,
906 fg => $fg, 1036 fg => $fg,
907 timeout => $color >= 2 ? 180 : 10, 1037 timeout => $color >= 2 ? 180 : 10,
963 $self->{map_widget}->clr_commands; 1093 $self->{map_widget}->clr_commands;
964 1094
965 ::stop_game (); 1095 ::stop_game ();
966} 1096}
967 1097
968sub image_info {
969 my ($self, $numfaces) = @_;
970
971 $self->{num_faces} = $numfaces;
972 $self->{face_prefetch} = [1 .. $numfaces];
973 $self->face_prefetch;
974}
975
976sub face_prefetch {
977 my ($self) = @_;
978
979 return unless $::CFG->{face_prefetch};
980
981 if ($self->{num_faces}) {
982 return if @{ $self->{send_queue} || [] };
983 my $todo = @{ $self->{face_prefetch} }
984 or return;
985
986 my ($face) = splice @{ $self->{face_prefetch} }, + rand @{ $self->{face_prefetch} }, 1, ();
987
988 $self->send ("requestinfo image_sums $face $face");
989
990 $self->{statusbox}->add (CFPlus::asxml "prefetching $todo",
991 group => "prefetch", timeout => 3, fg => [1, 1, 0, 0.5]);
992 } elsif (!exists $self->{num_faces}) {
993 $self->send ("requestinfo image_info");
994
995 $self->{num_faces} = 0;
996
997 $self->{statusbox}->add (CFPlus::asxml "starting to prefetch",
998 group => "prefetch", timeout => 3, fg => [1, 1, 0, 0.5]);
999 }
1000}
1001
1002sub update_floorbox { 1098sub update_floorbox {
1003 $CFPlus::UI::ROOT->on_refresh ($::FLOORBOX => sub { 1099 $CFPlus::UI::ROOT->on_refresh ($::FLOORBOX => sub {
1004 return unless $::CONN; 1100 return unless $::CONN;
1005 1101
1006 $::FLOORBOX->clear; 1102 $::FLOORBOX->clear;
1035 } 1131 }
1036 1132
1037 $::FLOORBOX->add_at (@add); 1133 $::FLOORBOX->add_at (@add);
1038 }); 1134 });
1039 1135
1040 $::WANT_REFRESH++; 1136 $::WANT_REFRESH->start;
1041} 1137}
1042 1138
1043sub set_opencont { 1139sub set_opencont {
1044 my ($conn, $tag, $name) = @_; 1140 my ($conn, $tag, $name) = @_;
1045 $conn->{open_container} = $tag; 1141 $conn->{open_container} = $tag;
1046 update_floorbox; 1142 update_floorbox;
1047 1143
1048 $::INV_RIGHT_HB->clear (); 1144 $::INVR_HB->clear ();
1049 $::INV_RIGHT_HB->add (new CFPlus::UI::Label align => 0, expand => 1, text => $name); 1145 $::INVR_HB->add (new CFPlus::UI::Label align => 0, expand => 1, text => $name);
1050 1146
1051 if ($tag != 0) { # Floor isn't closable, is it? 1147 if ($tag != 0) { # Floor isn't closable, is it?
1052 $::INV_RIGHT_HB->add (new CFPlus::UI::Button 1148 $::INVR_HB->add (new CFPlus::UI::Button
1053 text => "Close container", 1149 text => "Close container",
1054 tooltip => "Close the currently open container (if one is open)", 1150 tooltip => "Close the currently open container (if one is open)",
1055 on_activate => sub { 1151 on_activate => sub {
1056 $::CONN->send ("apply $tag") # $::CONN->{open_container}") 1152 $::CONN->send ("apply $tag") # $::CONN->{open_container}")
1057 if $tag != 0; 1153 if $tag != 0;
1058 #if $CONN->{open_container} != 0;
1059 0 1154 0
1060 }, 1155 },
1061 ); 1156 );
1062 } 1157 }
1063 1158
1162 . "cfplus support $yesno[$self->{cfplus_ext} > 0]" 1257 . "cfplus support $yesno[$self->{cfplus_ext} > 0]"
1163 . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n" 1258 . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n"
1164 . "map size $self->{mapw}×$self->{maph}\n" 1259 . "map size $self->{mapw}×$self->{maph}\n"
1165 ); 1260 );
1166 1261
1167 ::setup_build_button ($self->{editor_support}->{builder_ui});
1168} 1262}
1169 1263
1170sub logged_in { 1264sub logged_in {
1171 my ($self) = @_; 1265 my ($self) = @_;
1172 1266
1192 1286
1193 $self->send_command ("output-sync $::CFG->{output_sync}"); 1287 $self->send_command ("output-sync $::CFG->{output_sync}");
1194 $self->send_command ("output-count $::CFG->{output_count}"); 1288 $self->send_command ("output-count $::CFG->{output_count}");
1195 $self->send_command ("output-rate $::CFG->{output_rate}") if $::CFG->{output_rate} > 0; 1289 $self->send_command ("output-rate $::CFG->{output_rate}") if $::CFG->{output_rate} > 0;
1196 $self->send_command ("pickup $::CFG->{pickup}"); 1290 $self->send_command ("pickup $::CFG->{pickup}");
1197}
1198
1199sub buildat {
1200 my ($self, $builditem, $x, $y) = @_;
1201
1202 if ($self->{cfplus_ext}) {
1203 $self->send_ext_msg (builder_build => dx => $x, dy => $y, (ref ($builditem) eq 'HASH') ? %$builditem : (item => $builditem));
1204 }
1205} 1291}
1206 1292
1207sub lookat { 1293sub lookat {
1208 my ($self, $x, $y) = @_; 1294 my ($self, $x, $y) = @_;
1209 1295

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines