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.36 by root, Thu Jun 15 15:33:58 2006 UTC vs.
Revision 1.64 by root, Sun Jul 23 08:58:44 2006 UTC

7 7
8use CFClient; 8use CFClient;
9use CFClient::UI; 9use CFClient::UI;
10 10
11use base 'Crossfire::Protocol::Base'; 11use base 'Crossfire::Protocol::Base';
12
13our %open_logs;
14 12
15sub new { 13sub new {
16 my $class = shift; 14 my $class = shift;
17 15
18 my $self = $class->SUPER::new (@_); 16 my $self = $class->SUPER::new (@_);
63 $self 61 $self
64} 62}
65 63
66sub logprint { 64sub logprint {
67 my ($self, @a) = @_; 65 my ($self, @a) = @_;
66
67 $self->{log_fh} ||= do {
68 my $filename = "$Crossfire::VARDIR/log.$self->{host}"; 68 my $path = "$Crossfire::VARDIR/log.$self->{host}";
69 69
70 my $fh = $open_logs{$filename}; 70 open my $fh, ">>:utf8", $path
71 unless ($fh) {
72 # FIXME: handle this more gracefully?
73 open $fh, ">>", $filename
74 or die "Couldn't open logfile: log.$self->{host}: $!"; 71 or die "Couldn't open logfile $path: $!";
75 72
76 $open_logs{$filename} = $fh; 73 $fh->autoflush (1);
74
75 $fh;
77 } 76 };
78 77
79 my ($sec, $min, $hour, $mday, $mon, $year) = localtime (time); 78 my ($sec, $min, $hour, $mday, $mon, $year) = localtime time;
80 79
81 my $ts = sprintf "%04d-%02d-%02d %02d:%02d:%02d", 80 my $ts = sprintf "%04d-%02d-%02d %02d:%02d:%02d",
82 $year + 1900, $mon + 1, $mday, $hour, $min, $sec; 81 $year + 1900, $mon + 1, $mday, $hour, $min, $sec;
83 82
84 print $fh "$ts ", @a, "\n"; 83 print {$self->{log_fh}} "$ts ", @a, "\n";
85 $fh->flush;
86} 84}
87 85
86sub _stat_numdiff {
87 my ($self, $name, $old, $new) = @_;
88 88
89 my $diff = $new - $old;
90
91 $diff = 0.01 * int $diff * 100;
92
93 0.1 >= abs $diff ? ()
94 : $diff < 0 ? "$name$diff" : "$name+$diff"
95}
96
97sub _stat_skillmaskdiff {
98 my ($self, $name, $old, $new) = @_;
99
100 my $diff = $old ^ $new
101 or return;
102
103 my @diff = map
104 {
105 $diff & $_
106 ? (($new & $_ ? "+" : "-") . $self->{spell_paths}{$_})
107 : ()
108 }
109 sort { $a <=> $b } keys %{$self->{spell_paths}};
110
111 join "", @diff
112}
113
114# all stats that are chacked against changes
115my @statchange = (
116 [&CS_STAT_STR => \&_stat_numdiff, "Str"],
117 [&CS_STAT_INT => \&_stat_numdiff, "Int"],
118 [&CS_STAT_WIS => \&_stat_numdiff, "Wis"],
119 [&CS_STAT_DEX => \&_stat_numdiff, "Dex"],
120 [&CS_STAT_CON => \&_stat_numdiff, "Con"],
121 [&CS_STAT_CHA => \&_stat_numdiff, "Cha"],
122 [&CS_STAT_POW => \&_stat_numdiff, "Pow"],
123 [&CS_STAT_WC => \&_stat_numdiff, "Wc"],
124 [&CS_STAT_AC => \&_stat_numdiff, "Ac"],
125 [&CS_STAT_DAM => \&_stat_numdiff, "Dam"],
126 [&CS_STAT_SPEED => \&_stat_numdiff, "Speed"],
127 [&CS_STAT_WEAP_SP => \&_stat_numdiff, "WSp"],
128 [&CS_STAT_MAXHP => \&_stat_numdiff, "HP"],
129 [&CS_STAT_MAXSP => \&_stat_numdiff, "Mana"],
130 [&CS_STAT_MAXGRACE => \&_stat_numdiff, "Grace"],
131 [&CS_STAT_WEIGHT_LIM => \&_stat_numdiff, "Weight"],
132 [&CS_STAT_SPELL_ATTUNE => \&_stat_skillmaskdiff, "attuned"],
133 [&CS_STAT_SPELL_REPEL => \&_stat_skillmaskdiff, "repelled"],
134 [&CS_STAT_SPELL_DENY => \&_stat_skillmaskdiff, "denied"],
135 [&CS_STAT_RES_PHYS => \&_stat_numdiff, "phys"],
136 [&CS_STAT_RES_MAG => \&_stat_numdiff, "magic"],
137 [&CS_STAT_RES_FIRE => \&_stat_numdiff, "fire"],
138 [&CS_STAT_RES_ELEC => \&_stat_numdiff, "electricity"],
139 [&CS_STAT_RES_COLD => \&_stat_numdiff, "cold"],
140 [&CS_STAT_RES_CONF => \&_stat_numdiff, "confusion"],
141 [&CS_STAT_RES_ACID => \&_stat_numdiff, "acid"],
142 [&CS_STAT_RES_DRAIN => \&_stat_numdiff, "drain"],
143 [&CS_STAT_RES_GHOSTHIT => \&_stat_numdiff, "ghosthit"],
144 [&CS_STAT_RES_POISON => \&_stat_numdiff, "poison"],
145 [&CS_STAT_RES_SLOW => \&_stat_numdiff, "slow"],
146 [&CS_STAT_RES_PARA => \&_stat_numdiff, "paralyse"],
147 [&CS_STAT_TURN_UNDEAD => \&_stat_numdiff, "turnundead"],
148 [&CS_STAT_RES_FEAR => \&_stat_numdiff, "fear"],
149 [&CS_STAT_RES_DEPLETE => \&_stat_numdiff, "depletion"],
150 [&CS_STAT_RES_DEATH => \&_stat_numdiff, "death"],
151 [&CS_STAT_RES_HOLYWORD => \&_stat_numdiff, "godpower"],
152 [&CS_STAT_RES_BLIND => \&_stat_numdiff, "blind"],
153);
89 154
90sub stats_update { 155sub stats_update {
91 my ($self, $stats) = @_; 156 my ($self, $stats) = @_;
92 157
93 if (my $exp = $stats->{+CS_STAT_EXP64}) { 158 my $prev = $self->{prev_stats} || { };
94 my $diff = $exp - $self->{prev_exp}; 159
160 if (my @diffs =
161 (
162 ($stats->{+CS_STAT_EXP64} > $prev->{+CS_STAT_EXP64} ? ($stats->{+CS_STAT_EXP64} - $prev->{+CS_STAT_EXP64}) . " experience gained" : ()),
163 map {
164 $stats->{$_} && $prev->{$_}
165 && $stats->{$_}[1] > $prev->{$_}[1] ? "($self->{skill_info}{$_}+" . ($stats->{$_}[1] - $prev->{$_}[1]) . ")" : ()
166 } sort { $a <=> $b } keys %{$self->{skill_info}}
167 )
168 ) {
169 my $msg = join " ", @diffs;
95 $self->{statusbox}->add ("$diff experience gained", group => "experience $diff", fg => [0.5, 1, 0.5, 0.8], timeout => 5) 170 $self->{statusbox}->add ($msg, group => "experience $msg", fg => [0.5, 1, 0.5, 0.8], timeout => 5);
96 if exists $self->{prev_exp} && $diff;
97 $self->{prev_exp} = $exp;
98 } 171 }
99 172
173 if (
174 my @diffs = map $_->[1]->($self, $_->[2], $prev->{$_->[0]}, $stats->{$_->[0]}), @statchange
175 ) {
176 my $msg = "<b>stat change</b>: " . (join " ", @diffs);
177 $self->{statusbox}->add ($msg, group => "stat $msg", fg => [0.8, 1, 0.2, 1], timeout => 10);
178 }
179
100 ::update_stats_window ($stats); 180 $self->update_stats_window ($stats, $prev);
181
182 $self->{prev_stats} = { %$stats };
183}
184
185my %RES_TBL = (
186 phys => CS_STAT_RES_PHYS,
187 magic => CS_STAT_RES_MAG,
188 fire => CS_STAT_RES_FIRE,
189 elec => CS_STAT_RES_ELEC,
190 cold => CS_STAT_RES_COLD,
191 conf => CS_STAT_RES_CONF,
192 acid => CS_STAT_RES_ACID,
193 drain => CS_STAT_RES_DRAIN,
194 ghit => CS_STAT_RES_GHOSTHIT,
195 pois => CS_STAT_RES_POISON,
196 slow => CS_STAT_RES_SLOW,
197 para => CS_STAT_RES_PARA,
198 tund => CS_STAT_TURN_UNDEAD,
199 fear => CS_STAT_RES_FEAR,
200 depl => CS_STAT_RES_DEPLETE,
201 deat => CS_STAT_RES_DEATH,
202 holyw => CS_STAT_RES_HOLYWORD,
203 blind => CS_STAT_RES_BLIND,
204);
205
206sub update_stats_window {
207 my ($self, $stats, $prev) = @_;
208
209 # I love text protocols...
210
211 my $hp = $stats->{+CS_STAT_HP} * 1;
212 my $hp_m = $stats->{+CS_STAT_MAXHP} * 1;
213 my $sp = $stats->{+CS_STAT_SP} * 1;
214 my $sp_m = $stats->{+CS_STAT_MAXSP} * 1;
215 my $fo = $stats->{+CS_STAT_FOOD} * 1;
216 my $fo_m = 999;
217 my $gr = $stats->{+CS_STAT_GRACE} * 1;
218 my $gr_m = $stats->{+CS_STAT_MAXGRACE} * 1;
219
220 $::GAUGES->{hp} ->set_value ($hp, $hp_m);
221 $::GAUGES->{mana} ->set_value ($sp, $sp_m);
222 $::GAUGES->{food} ->set_value ($fo, $fo_m);
223 $::GAUGES->{grace} ->set_value ($gr, $gr_m);
224 $::GAUGES->{exp} ->set_text ("Exp: " . (::formsep ($stats->{+CS_STAT_EXP64}))
225 . " (lvl " . ($stats->{+CS_STAT_LEVEL} * 1) . ")");
226 my $rng = $stats->{+CS_STAT_RANGE};
227 $rng =~ s/^Range: //; # thank you so much dear server
228 $::GAUGES->{range} ->set_text ("Rng: " . $rng);
229 my $title = $stats->{+CS_STAT_TITLE};
230 $title =~ s/^Player: //;
231 $::STATWIDS->{title} ->set_text ("Title: " . $title);
232
233 $::STATWIDS->{st_str} ->set_text (sprintf "%d" , $stats->{+CS_STAT_STR});
234 $::STATWIDS->{st_dex} ->set_text (sprintf "%d" , $stats->{+CS_STAT_DEX});
235 $::STATWIDS->{st_con} ->set_text (sprintf "%d" , $stats->{+CS_STAT_CON});
236 $::STATWIDS->{st_int} ->set_text (sprintf "%d" , $stats->{+CS_STAT_INT});
237 $::STATWIDS->{st_wis} ->set_text (sprintf "%d" , $stats->{+CS_STAT_WIS});
238 $::STATWIDS->{st_pow} ->set_text (sprintf "%d" , $stats->{+CS_STAT_POW});
239 $::STATWIDS->{st_cha} ->set_text (sprintf "%d" , $stats->{+CS_STAT_CHA});
240 $::STATWIDS->{st_wc} ->set_text (sprintf "%d" , $stats->{+CS_STAT_WC});
241 $::STATWIDS->{st_ac} ->set_text (sprintf "%d" , $stats->{+CS_STAT_AC});
242 $::STATWIDS->{st_dam} ->set_text (sprintf "%d" , $stats->{+CS_STAT_DAM});
243 $::STATWIDS->{st_arm} ->set_text (sprintf "%d" , $stats->{+CS_STAT_RES_PHYS});
244 $::STATWIDS->{st_spd} ->set_text (sprintf "%.1f", $stats->{+CS_STAT_SPEED});
245 $::STATWIDS->{st_wspd}->set_text (sprintf "%.1f", $stats->{+CS_STAT_WEAP_SP});
246
247 $self->update_weight;
248
249 $::STATWIDS->{"res_$_"}->set_text (sprintf "%d%", $stats->{$RES_TBL{$_}})
250 for keys %RES_TBL;
251
252 my $sktbl = $::STATWIDS->{skill_tbl};
253 my @skills = keys %{ $self->{skill_info} };
254
255 if (grep +(exists $stats->{$_}) != (exists $prev->{$_}), @skills) {
256 $sktbl->clear;
257
258 $sktbl->add (0, 0, new CFClient::UI::Label text => "Experience", align => 1);
259 $sktbl->add (1, 0, new CFClient::UI::Label text => "Lvl.", align => 1);
260 $sktbl->add (2, 0, new CFClient::UI::Label text => "Skill", expand => 1);
261 $sktbl->add (3, 0, new CFClient::UI::Label text => "Experience", align => 1);
262 $sktbl->add (4, 0, new CFClient::UI::Label text => "Lvl.", align => 1);
263 $sktbl->add (5, 0, new CFClient::UI::Label text => "Skill", expand => 1);
264
265 my ($x, $y) = (1, 0);
266 for (
267 sort { $stats->{$b->[0]}[1] <=> $stats->{$a->[0]}[1] or $a->[1] cmp $b->[1] }
268 map [$_, $self->{skill_info}{$_}],
269 grep exists $stats->{$_},
270 @skills
271 ) {
272 my ($idx, $name) = @$_;
273
274 $sktbl->add ($x * 3 + 0, $y, $self->{stat_widget_exp}{$idx} = new CFClient::UI::Label
275 text => "0", align => 1, font => $::FONT_FIXED, fg => [1, 1, 0]);
276 $sktbl->add ($x * 3 + 1, $y, $self->{stat_widget_lvl}{$idx} = new CFClient::UI::Label
277 text => "0", align => 1, font => $::FONT_FIXED, fg => [0, 1, 0], padding_x => 4);
278 $sktbl->add ($x * 3 + 2, $y, new CFClient::UI::Label text => $name);
279
280 $x++ and ($x, $y) = (0, $y + 1);
281 }
282 }
283
284 for (grep exists $stats->{$_}, @skills) {
285 $self->{stat_widget_exp}{$_}->set_text (::formsep ($stats->{$_}[1]));
286 $self->{stat_widget_lvl}{$_}->set_text ($stats->{$_}[0] * 1);
287 }
101} 288}
102 289
103sub user_send { 290sub user_send {
104 my ($self, $command) = @_; 291 my ($self, $command) = @_;
105 292
107 push @{$self->{record}}, $command; 294 push @{$self->{record}}, $command;
108 } 295 }
109 296
110 $self->logprint ("send: ", $command); 297 $self->logprint ("send: ", $command);
111 $self->send_command ($command); 298 $self->send_command ($command);
112 ::status $command; 299 ::status ($command);
113} 300}
114 301
115sub start_record { 302sub start_record {
116 my ($self) = @_; 303 my ($self) = @_;
117 304
160 347
161 $self->flush_map; 348 $self->flush_map;
162 delete $self->{neigh_map}; 349 delete $self->{neigh_map};
163 350
164 $self->{map}->clear; 351 $self->{map}->clear;
352 delete $self->{map_widget}{magicmap};
165} 353}
166 354
167 355
168sub load_map($$$) { 356sub load_map($$$) {
169 my ($self, $hash, $x, $y) = @_; 357 my ($self, $hash, $x, $y) = @_;
344 undef 532 undef
345 }; 533 };
346} 534}
347 535
348sub face_update { 536sub face_update {
349 my ($self, $facenum, $face) = @_; 537 my ($self, $facenum, $face, $changed) = @_;
350 538
351 $self->{tilecache}->put ($face->{id} => $face->{image}); #TODO: try to avoid duplicate writes 539 $self->{tilecache}->put ($face->{id} => $face->{image}) if $changed;
352 540
353 $self->set_texture ($face->{id} => delete $face->{image}); 541 $self->set_texture ($face->{id} => delete $face->{image});
354} 542}
355 543
356sub set_texture { 544sub set_texture {
397 [0.11, 0.56, 1.00], 585 [0.11, 0.56, 1.00],
398 [0.93, 0.46, 0.00], 586 [0.93, 0.46, 0.00],
399 [0.18, 0.54, 0.34], 587 [0.18, 0.54, 0.34],
400 [0.56, 0.73, 0.56], 588 [0.56, 0.73, 0.56],
401 [0.80, 0.80, 0.80], 589 [0.80, 0.80, 0.80],
402 [0.55, 0.41, 0.13], 590 [0.75, 0.61, 0.20],
403 [0.99, 0.77, 0.26], 591 [0.99, 0.77, 0.26],
404 [0.74, 0.65, 0.41], 592 [0.74, 0.65, 0.41],
405 ); 593 );
406 594
407 $self->logprint ("info: ", $text); 595 $self->logprint ("info: ", $text);
413 601
414 $text = CFClient::UI::Label::escape $text; 602 $text = CFClient::UI::Label::escape $text;
415 $text =~ s/\[b\](.*?)\[\/b\]/<b>\1<\/b>/g; 603 $text =~ s/\[b\](.*?)\[\/b\]/<b>\1<\/b>/g;
416 $text =~ s/\[color=(.*?)\](.*?)\[\/color\]/<span foreground='\1'>\2<\/span>/g; 604 $text =~ s/\[color=(.*?)\](.*?)\[\/color\]/<span foreground='\1'>\2<\/span>/g;
417 605
418 $self->{logview}->add_paragraph ($color[$color], 606 $self->{logview}->add_paragraph ($color[$color], $_)
419 join "\n", map "$time $_", split /\n/, $text); 607 for map "<span foreground='#ffffff'>$time</span> $_", split /\n/, $text;
608 $self->{logview}->scroll_to_bottom;
420 609
421 $self->{statusbox}->add ($text, 610 $self->{statusbox}->add ($text,
422 group => $text, 611 group => $text,
423 fg => $color[$color], 612 fg => $color[$color],
424 timeout => $color >= 2 ? 60 : 10, 613 timeout => $color >= 2 ? 60 : 10,
438 # try to create single paragraphs of multiple lines sent by the server 627 # try to create single paragraphs of multiple lines sent by the server
439 $spell->{message} =~ s/(?<=\S)\n(?=\w)/ /g; 628 $spell->{message} =~ s/(?<=\S)\n(?=\w)/ /g;
440 $spell->{message} =~ s/\n+$//; 629 $spell->{message} =~ s/\n+$//;
441 $spell->{message} ||= "Server did not provide a description for this spell."; 630 $spell->{message} ||= "Server did not provide a description for this spell.";
442 631
443 $::SETUP_SPELLS->add_spell ($spell); 632 $::SPELL_PAGE->add_spell ($spell);
444 633
445 $self->{map_widget}->add_command ("invoke $spell->{name}", CFClient::UI::Label::escape $spell->{message}); 634 $self->{map_widget}->add_command ("invoke $spell->{name}", CFClient::UI::Label::escape $spell->{message});
446 $self->{map_widget}->add_command ("cast $spell->{name}", CFClient::UI::Label::escape $spell->{message}); 635 $self->{map_widget}->add_command ("cast $spell->{name}", CFClient::UI::Label::escape $spell->{message});
447} 636}
448 637
449sub spell_delete { 638sub spell_delete {
450 my ($self, $spell) = @_; 639 my ($self, $spell) = @_;
640
451 $::SETUP_SPELLS->remove_spell ($spell); 641 $::SPELL_PAGE->remove_spell ($spell);
452} 642}
453 643
454sub addme_success { 644sub addme_success {
455 my ($self) = @_; 645 my ($self) = @_;
456 646
519} 709}
520 710
521sub update_floorbox { 711sub update_floorbox {
522 $CFClient::UI::ROOT->on_refresh ($::FLOORBOX => sub { 712 $CFClient::UI::ROOT->on_refresh ($::FLOORBOX => sub {
523 return unless $::CONN; 713 return unless $::CONN;
524 714
525 $::FLOORBOX->clear; 715 $::FLOORBOX->clear;
526 716
527 my $row; 717 my $row;
528 for (@{ $::CONN->{container}{0} }) { 718 for (sort { $a->{count} <=> $b->{count} } values %{ $::CONN->{container}{$::CONN->{open_container} || 0} }) {
529 if ($row < 6) { 719 if ($row < 6) {
530 local $_->{face_widget}; # hack to force recreation of widget 720 local $_->{face_widget}; # hack to force recreation of widget
531 local $_->{desc_widget}; # hack to force recreation of widget 721 local $_->{desc_widget}; # hack to force recreation of widget
532 CFClient::Item::update_widgets $_; 722 CFClient::Item::update_widgets $_;
533 723
536 726
537 $row++; 727 $row++;
538 } else { 728 } else {
539 $::FLOORBOX->add (1, $row, new CFClient::UI::Button 729 $::FLOORBOX->add (1, $row, new CFClient::UI::Button
540 text => "More...", 730 text => "More...",
541 on_activate => sub { $::INV_WINDOW->toggle_visibility }, 731 on_activate => sub { ::toggle_player_page ($::INVENTORY_PAGE); 0 },
542 ); 732 );
543 last; 733 last;
544 } 734 }
545 } 735 }
736 if ($::CONN->{open_container}) {
737 $::FLOORBOX->add (1, $row++, new CFClient::UI::Button
738 text => "Close container",
739 on_activate => sub { $::CONN->send ("apply $::CONN->{open_container}") }
740 );
741 }
546 }); 742 });
547 743
548 $::WANT_REFRESH++; 744 $::WANT_REFRESH++;
549} 745}
550 746
551sub set_opencont { 747sub set_opencont {
552 my ($conn, $tag, $name) = @_; 748 my ($conn, $tag, $name) = @_;
553 $conn->{open_container} = $tag; 749 $conn->{open_container} = $tag;
750 update_floorbox;
554 751
555 $::INV_RIGHT_HB->clear (); 752 $::INV_RIGHT_HB->clear ();
556 $::INV_RIGHT_HB->add (new CFClient::UI::Label align => 0, expand => 1, text => $name); 753 $::INV_RIGHT_HB->add (new CFClient::UI::Label align => 0, expand => 1, text => $name);
557 754
558 if ($tag != 0) { # Floor isn't closable, is it? 755 if ($tag != 0) { # Floor isn't closable, is it?
561 tooltip => "Close the currently open container (if one is open)", 758 tooltip => "Close the currently open container (if one is open)",
562 on_activate => sub { 759 on_activate => sub {
563 $::CONN->send ("apply $tag") # $::CONN->{open_container}") 760 $::CONN->send ("apply $tag") # $::CONN->{open_container}")
564 if $tag != 0; 761 if $tag != 0;
565 #if $CONN->{open_container} != 0; 762 #if $CONN->{open_container} != 0;
763 0
566 }, 764 },
567 ); 765 );
568 } 766 }
569 767
570 $::INVR->set_items ($conn->{container}{$tag}); 768 $::INVR->set_items ($conn->{container}{$tag});
571} 769}
572 770
573sub update_container { 771sub update_containers {
574 my ($tag) = @_; 772 my ($self) = @_;
575 773
576 $::INVR->set_items ($::CONN->{container}{$::CONN->{open_container}}) 774 $CFClient::UI::ROOT->on_refresh ("update_containers_$self" => sub {
775 my $todo = delete $self->{update_container}
776 or return;
777
778 for my $tag (keys %$todo) {
779 update_floorbox if $tag == 0 or $tag == $self->{open_container};
780 if ($tag == 0) {
781 $::INVR->set_items ($self->{container}{0})
577 if $tag == $::CONN->{open_container}; 782 if $tag == $self->{open_container};
783 } elsif ($tag == $self->{player}{tag}) {
784 $::INV->set_items ($self->{container}{$tag})
785 } else {
786 $::INVR->set_items ($self->{container}{$tag})
787 if $tag == $self->{open_container};
788 }
789 }
790 });
578} 791}
579 792
580sub container_add { 793sub container_add {
581 my ($self, $tag, $items) = @_; 794 my ($self, $tag, $items) = @_;
582 795
583 #d# print "container_add: container $tag ($self->{player}{tag})\n"; 796 $self->{update_container}{$tag}++;
584 797 $self->update_containers;
585 if ($tag == 0) {
586 update_floorbox;
587 update_container (0);
588 } elsif ($tag == $self->{player}{tag}) {
589 $::INV->set_items ($self->{container}{$self->{player}{tag}})
590 } else {
591 update_container ($tag);
592 }
593
594 # $self-<{player}{tag} => player inv
595 #use PApp::Util; warn PApp::Util::dumpval $self->{container}{$self->{player}{tag}};
596} 798}
597 799
598sub container_clear { 800sub container_clear {
599 my ($self, $tag) = @_; 801 my ($self, $tag) = @_;
600 802
601 #d# print "container_clear: container $tag ($self->{player}{tag})\n"; 803 $self->{update_container}{$tag}++;
602 804 $self->update_containers;
603 if ($tag == 0) {
604 update_floorbox;
605 update_container (0);
606 } elsif ($tag == $self->{player}{tag}) {
607 $::INV->set_items ($self->{container}{$tag})
608 } else {
609 update_container ($tag);
610 }
611
612# use PApp::Util; warn PApp::Util::dumpval $self->{container}{0};
613} 805}
614 806
615sub item_delete { 807sub item_delete {
616 my ($self, @items) = @_; 808 my ($self, @items) = @_;
617 809
810 $self->{update_container}{$_->{container}}++
618 for (@items) { 811 for @items;
619 #d# print "item_delete: $_->{tag} from $_->{container} ($self->{player}{tag})\n";
620
621 if ($_->{container} == 0) {
622 update_floorbox;
623 update_container ($_->{tag});
624 } elsif ($_->{container} == $self->{player}{tag}) {
625 $::INV->set_items ($self->{container}{$self->{player}{tag}})
626 } else {
627 update_container ($_->{container});
628 }
629 } 812
813 $self->update_containers;
630} 814}
631 815
632sub item_update { 816sub item_update {
633 my ($self, $item) = @_; 817 my ($self, $item) = @_;
634 818
635 #d# print "item_update: $item->{tag} in $item->{container} ($self->{player}{tag}) ($::CONN->{open_container})\n"; 819 #d# print "item_update: $item->{tag} in $item->{container} ($self->{player}{tag}) ($::CONN->{open_container})\n";
636 820
637 if ($item->{tag} == $self->{player}{tag}) {
638 $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $item->{weight} / 1000);
639 return;
640 }
641
642 CFClient::Item::update_widgets $item; 821 CFClient::Item::update_widgets $item;
643 822
644 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) { 823 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) {
645 set_opencont ($::CONN, 0, "Floor"); 824 set_opencont ($::CONN, 0, "Floor");
646 825
647 } elsif ($item->{flags} & F_OPEN) { 826 } elsif ($item->{flags} & F_OPEN) {
648 set_opencont ($::CONN, $item->{tag}, CFClient::Item::desc_string $item); 827 set_opencont ($::CONN, $item->{tag}, CFClient::Item::desc_string $item);
828
649 } else { 829 } else {
650 if ($item->{container} == 0) { 830 $self->{update_container}{$item->{container}}++;
651 update_floorbox;
652 update_container (0); 831 $self->update_containers;
653 } elsif ($item->{container} == $self->{player}{tag}) {
654 $::INV->set_items ($self->{container}{$item->{container}})
655 }
656 } 832 }
657} 833}
658 834
659sub player_update { 835sub player_update {
660 my ($self, $player) = @_; 836 my ($self, $player) = @_;
661 837
838 $self->update_weight;
839}
840
841sub update_weight {
842 my ($self) = @_;
843
844 my $weight = .001 * $self->{player}{weight};
845 my $limit = .001 * $self->{stat}{+CS_STAT_WEIGHT_LIM};
846
662 $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $player->{weight} / 1000); 847 $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $weight);
848 $::STATWIDS->{m_weight}->set_text (sprintf "%.1fkg", $limit);
849 $::STATWIDS->{i_weight}->set_text (sprintf "%.1f/%.1fkg", $weight, $limit);
663} 850}
664 851
665sub update_server_info { 852sub update_server_info {
666 my ($self) = @_; 853 my ($self) = @_;
667 854
737 name => "npc_dialog", 924 name => "npc_dialog",
738 force_w => $::WIDTH * 0.7, 925 force_w => $::WIDTH * 0.7,
739 force_h => $::HEIGHT * 0.7, 926 force_h => $::HEIGHT * 0.7,
740 title => "NPC Dialog", 927 title => "NPC Dialog",
741 kw => { hi => 0, yes => 0, no => 0 }, 928 kw => { hi => 0, yes => 0, no => 0 },
929 has_close_button => 1,
742 @_, 930 @_,
743 ); 931 );
744 932
745 Scalar::Util::weaken (my $this = $self); 933 Scalar::Util::weaken (my $this = $self);
934
935 $self->connect (delete => sub { $this->destroy; 1 });
746 936
747 # better use a pane... 937 # better use a pane...
748 $self->add (my $hbox = new CFClient::UI::HBox); 938 $self->add (my $hbox = new CFClient::UI::HBox);
749 $hbox->add ($self->{textview} = new CFClient::UI::TextScroller expand => 1); 939 $hbox->add ($self->{textview} = new CFClient::UI::TextScroller expand => 1);
750 940
762 952
763 return unless $text =~ /\S/; 953 return unless $text =~ /\S/;
764 954
765 $entry->set_text (""); 955 $entry->set_text ("");
766 $this->send ($text); 956 $this->send ($text);
957
958 0
767 }, 959 },
768 ); 960 );
769 961
770 $vbox->add ($self->{options} = new CFClient::UI::VBox); 962 $vbox->add ($self->{options} = new CFClient::UI::VBox);
771 963
772 $self->{close_button} = new CFClient::UI::Button 964 $self->{bye_button} = new CFClient::UI::Button
773 text => "Bye (close)", 965 text => "Bye (close)",
774 tooltip => "Use this button to end talking to the NPC. This also closes the dialog window.", 966 tooltip => "Use this button to end talking to the NPC. This also closes the dialog window.",
775 on_activate => sub { $this->destroy }, 967 on_activate => sub { $this->destroy; 1 },
776 ; 968 ;
777 969
778 $self->update_options; 970 $self->update_options;
779 971
780 $self->{token} = $self->{conn}->ext_token; 972 $self->{token} = $self->{conn}->ext_token;
781 $self->{conn}->connect_ext ($self->{token} => sub { $this->feed (@_) }); 973 $self->{conn}->connect_ext ($self->{token} => sub { $this->feed (@_) });
782 $self->{conn}->send ("ext npc_dialog_begin $self->{token} $self->{dx} $self->{dy}"); 974 $self->{conn}->send ("ext npc_dialog_begin $self->{token} $self->{dx} $self->{dy}");
783 975
784 $self->{entry}->focus_in; 976 $self->{entry}->grab_focus;
785 977
786 $self->{textview}->add_paragraph ([1, 1, 0, 1], "<small>[starting conversation with <b>$self->{title}</b>]</small>\n\n"); 978 $self->{textview}->add_paragraph ([1, 1, 0, 1], "<small>[starting conversation with <b>$self->{title}</b>]</small>\n\n");
787 979
788 $self->show; 980 $self->show;
789 $self 981 $self
793 my ($self) = @_; 985 my ($self) = @_;
794 986
795 Scalar::Util::weaken $self; 987 Scalar::Util::weaken $self;
796 988
797 $self->{options}->clear; 989 $self->{options}->clear;
798 $self->{options}->add ($self->{close_button}); 990 $self->{options}->add ($self->{bye_button});
799 991
800 for my $kw (sort keys %{ $self->{kw} }) { 992 for my $kw (sort keys %{ $self->{kw} }) {
801 $self->{options}->add (new CFClient::UI::Button 993 $self->{options}->add (new CFClient::UI::Button
802 text => $kw, 994 text => $kw,
803 on_activate => sub { 995 on_activate => sub {
804 $self->send ($kw); 996 $self->send ($kw);
997 0
805 }, 998 },
806 ); 999 );
807 } 1000 }
808} 1001}
809 1002
810sub feed { 1003sub feed {
811 my ($self, $data) = @_; 1004 my ($self, $data) = @_;
812 1005
1006 Scalar::Util::weaken $self;
1007
813 my ($type, $msg) = split / /, $data, 2; 1008 my ($type, $msg) = split / /, $data, 2;
814 1009
815 if ($type eq "msg") { 1010 if ($type eq "msg") {
816 my ($msg, @kw) = split /\x00/, $msg; 1011 my ($msg, @kw) = split /\x00/, $msg;
1012
1013 utf8::decode $_ for ($msg, @kw);
1014
817 $self->{kw}{$_} = 1 for @kw; 1015 $self->{kw}{$_} = 1 for @kw;
818 1016
819 $msg = CFClient::UI::Label::escape $msg; 1017 $msg = "\n" . CFClient::UI::Label::escape $msg;
820 my $match = join "|", map "\\b\Q$_\E\\b", sort { (length $b) <=> (length $a) } keys %{ $self->{kw} }; 1018 my $match = join "|", map "\\b\Q$_\E\\b", sort { (length $b) <=> (length $a) } keys %{ $self->{kw} };
821 $msg =~ s/($match)/<span foreground='#c0c0ff' underline='none'>$1<\/span>/gi; # underline when http-ready, huh. 1019 my @link;
1020 $msg =~ s{
1021 ($match)
1022 }{
1023 my $kw = $1;
1024
1025 push @link, new CFClient::UI::Label
1026 markup => "<span foreground='#c0c0ff' underline='single'>$kw</span>",
1027 can_hover => 1,
1028 can_events => 1,
1029 padding_x => 0,
1030 padding_y => 0,
1031 on_button_up => sub {
1032 $self->send ($kw);
1033 };
1034
1035 chr 0xfffc
1036 }giex;
822 1037
823 $self->{textview}->add_paragraph ([1, 1, 1, 1], "\n$msg"); 1038 $self->{textview}->add_paragraph ([1, 1, 1, 1], [$msg, @link]);
1039 $self->{textview}->scroll_to_bottom;
824 $self->update_options; 1040 $self->update_options;
825 } else { 1041 } else {
826 $self->destroy; 1042 $self->destroy;
827 } 1043 }
828 1044
830} 1046}
831 1047
832sub send { 1048sub send {
833 my ($self, $msg) = @_; 1049 my ($self, $msg) = @_;
834 1050
1051 $self->{textview}->add_paragraph ([1, 1, 0, 1], "\n" . CFClient::UI::Label::escape $msg);
1052 $self->{textview}->scroll_to_bottom;
1053
1054 utf8::encode $msg;
835 $self->{conn}->send ("ext npc_dialog_tell $self->{token} $msg"); 1055 $self->{conn}->send ("ext npc_dialog_tell $self->{token} $msg");
836 $self->{textview}->add_paragraph ([1, 1, 0, 1], "\n" . CFClient::UI::Label::escape $msg);
837} 1056}
838 1057
839sub destroy { 1058sub destroy {
840 my ($self) = @_; 1059 my ($self) = @_;
841 1060
842 #Carp::cluck "debug\n";#d# #todo# enable: destroyx gets called twice because scalar keys {} is 1 1061 #Carp::cluck "debug\n";#d# #todo# enable: destroy gets called twice because scalar keys {} is 1
843 1062
1063 $self->{conn}->send ("ext npc_dialog_end $self->{token}") if $self->{token};
844 delete $self->{conn}{npc_dialog}; 1064 delete $self->{conn}{npc_dialog};
845 $self->{conn}->disconnect_ext ($self->{token}); 1065 $self->{conn}->disconnect_ext ($self->{token});
846 1066
847 $self->SUPER::destroy; 1067 $self->SUPER::destroy;
848} 1068}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines