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.7 by root, Sat May 27 20:46:54 2006 UTC vs.
Revision 1.12 by elmex, Tue May 30 14:59:26 2006 UTC

66} 66}
67 67
68sub user_send { 68sub user_send {
69 my ($self, $command) = @_; 69 my ($self, $command) = @_;
70 70
71 if ($self->{record}) {
72 push @{$self->{record}}, $command;
73 }
74
71 $self->send_command ($command); 75 $self->send_command ($command);
72 ::status $command; 76 ::status $command;
77}
78
79sub start_record {
80 my ($self) = @_;
81
82 $self->{record} = [];
83}
84
85sub stop_record {
86 my ($self) = @_;
87 return delete $self->{record};
73} 88}
74 89
75sub map_scroll { 90sub map_scroll {
76 my ($self, $dx, $dy) = @_; 91 my ($self, $dx, $dy) = @_;
77 92
324 339
325 $prompt = $LAST_QUERY unless length $prompt; 340 $prompt = $LAST_QUERY unless length $prompt;
326 $LAST_QUERY = $prompt; 341 $LAST_QUERY = $prompt;
327 342
328 my $dialog = new CFClient::UI::FancyFrame 343 my $dialog = new CFClient::UI::FancyFrame
344 x => "center",
345 y => "center",
329 title => "Query", 346 title => "Query",
330 child => my $vbox = new CFClient::UI::VBox; 347 child => my $vbox = new CFClient::UI::VBox,
348 ;
331 349
332 $vbox->add (new CFClient::UI::Label 350 $vbox->add (new CFClient::UI::Label
333 max_w => $::WIDTH * 0.4, 351 max_w => $::WIDTH * 0.4,
334 ellipsise => 0, 352 ellipsise => 0,
335 text => $prompt); 353 text => $prompt);
377 ); 395 );
378 396
379 $entry->focus_in; 397 $entry->focus_in;
380 } 398 }
381 399
382 $dialog->show_centered; 400 $dialog->show;
383} 401}
384 402
385sub drawinfo { 403sub drawinfo {
386 my ($self, $color, $text) = @_; 404 my ($self, $color, $text) = @_;
387 405
532} 550}
533 551
534sub set_opencont { 552sub set_opencont {
535 my ($conn, $tag, $name) = @_; 553 my ($conn, $tag, $name) = @_;
536 $conn->{open_container} = $tag; 554 $conn->{open_container} = $tag;
537 $::INVR_LBL->set_text ($name); 555
556 $::INV_RIGHT_HB->clear ();
557 $::INV_RIGHT_HB->add (new CFClient::UI::Label align => 0, expand => 1, text => $name);
558
559 if ($tag != 0) { # Floor isn't closable, is it?
560 $::INV_RIGHT_HB->add (new CFClient::UI::Button
561 text => "Close container",
562 tooltip => "Close the currently open container (if one is open)",
563 on_activate => sub {
564 $::CONN->send ("apply $tag") # $::CONN->{open_container}")
565 if $tag != 0;
566 #if $CONN->{open_container} != 0;
567 },
568 );
569 }
570
538 $::INVR->set_items ($conn->{container}{$tag}); 571 $::INVR->set_items ($conn->{container}{$tag});
539} 572}
540 573
541sub update_container { 574sub update_container {
542 my ($tag) = @_; 575 my ($tag) = @_;
571 if ($tag == 0) { 604 if ($tag == 0) {
572 update_floorbox; 605 update_floorbox;
573 update_container (0); 606 update_container (0);
574 } elsif ($tag == $self->{player}{tag}) { 607 } elsif ($tag == $self->{player}{tag}) {
575 $::INV->set_items ($self->{container}{$tag}) 608 $::INV->set_items ($self->{container}{$tag})
609 } else {
610 update_container ($tag);
576 } 611 }
577 612
578# use PApp::Util; warn PApp::Util::dumpval $self->{container}{0}; 613# use PApp::Util; warn PApp::Util::dumpval $self->{container}{0};
579} 614}
580 615
588 update_floorbox; 623 update_floorbox;
589 update_container ($_->{tag}); 624 update_container ($_->{tag});
590 } elsif ($_->{container} == $self->{player}{tag}) { 625 } elsif ($_->{container} == $self->{player}{tag}) {
591 $::INV->set_items ($self->{container}{$self->{player}{tag}}) 626 $::INV->set_items ($self->{container}{$self->{player}{tag}})
592 } else { 627 } else {
593 update_container ($_->{tag}); 628 update_container ($_->{container});
594 } 629 }
595 } 630 }
596} 631}
597 632
598sub item_update { 633sub item_update {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines