--- deliantra/Deliantra-Client/DC/Protocol.pm 2006/06/05 05:06:23 1.19 +++ deliantra/Deliantra-Client/DC/Protocol.pm 2006/06/12 13:26:14 1.32 @@ -5,6 +5,7 @@ use Crossfire::Protocol::Constants; +use CFClient; use CFClient::UI; use base 'Crossfire::Protocol::Base'; @@ -16,26 +17,34 @@ $self->{map_widget}->clr_commands; - my $parser = new Pod::POM; - my $pod = $parser->parse_file (CFClient::find_rcfile "pod/command_help.pod"); + my $cmd_help = CFClient::load_pod CFClient::find_rcfile "pod/command_help.pod", command_help => 1, sub { + my ($pom) = @_; - for my $head2 ($pod->head1->[-2]->head2) { - $head2->title =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x - or next; + my @cmd_help; - my $cmd = $1; - my @args = split /\|/, $2; - @args = (".*") unless @args; + for my $head2 ($pom->head1->[-2]->head2) { + $head2->title =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x + or next; - $_ = $_ eq ".*" ? "" : " $_" - for @args; + my $cmd = $1; + my @args = split /\|/, $2; + @args = (".*") unless @args; + + $_ = $_ eq ".*" ? "" : " $_" + for @args; + + my $text = CFClient::pod_to_pango $head2->content; + + push @cmd_help, ["$cmd$_", $text] + for sort { (length $a) <=> (length $b) } + @args; + } - my $text = CFClient::pod_to_pango $head2->content; + \@cmd_help + }; - $self->{map_widget}->add_command ("$cmd$_", $text) - for sort { (length $a) <=> (length $b) } - @args; - } + $self->{map_widget}->add_command (@$_) + for @$cmd_help; $self->{noface} = new_from_file CFClient::Texture CFClient::find_rcfile "noface.png", minify => 1, mipmap => 1; @@ -340,64 +349,7 @@ $prompt = $LAST_QUERY unless length $prompt; $LAST_QUERY = $prompt; - my $dialog = new CFClient::UI::FancyFrame - x => "center", - y => "center", - title => "Query", - child => my $vbox = new CFClient::UI::VBox, - ; - - $vbox->add (new CFClient::UI::Label - max_w => $::WIDTH * 0.4, - ellipsise => 0, - text => $prompt); - - if ($flags & CS_QUERY_YESNO) { - $vbox->add (my $hbox = new CFClient::UI::HBox); - $hbox->add (new CFClient::UI::Button - text => "No", - on_activate => sub { - $self->send ("reply n"); - $dialog->destroy; - $self->{map_widget}->focus_in; - } - ); - $hbox->add (new CFClient::UI::Button - text => "Yes", - on_activate => sub { - $self->send ("reply y"); - $dialog->destroy; - }, - ); - - $dialog->focus_in; - - } elsif ($flags & CS_QUERY_SINGLECHAR) { - $dialog->{tooltip} = "Press a key (click on the entry to make sure it has keyboard focus)"; - $vbox->add (my $entry = new CFClient::UI::Entry - on_changed => sub { - $self->send ("reply $_[1]"); - $dialog->destroy; - }, - ); - - $entry->focus_in; - - } else { - $dialog->{tooltip} = "Enter the reply and press return (click on the entry to make sure it has keyboard focus)"; - - $vbox->add (my $entry = new CFClient::UI::Entry - $flags & CS_QUERY_HIDEINPUT ? (hiddenchar => "*") : (), - on_activate => sub { - $self->send ("reply $_[1]"); - $dialog->destroy; - }, - ); - - $entry->focus_in; - } - - $dialog->show; + $self->{query}-> ($self, $flags, $prompt); } sub drawinfo { @@ -421,6 +373,9 @@ my $time = sprintf "%02d:%02d:%02d", (localtime time)[2,1,0]; + # try to create single paragraphs of multiple lines sent by the server + $text =~ s/(?<=\S)\n(?=\w)/ /g; + $text = CFClient::UI::Label::escape $text; $text =~ s/\[b\](.*?)\[\/b\]/\1<\/b>/g; $text =~ s/\[color=(.*?)\](.*?)\[\/color\]/\2<\/span>/g; @@ -445,8 +400,11 @@ sub spell_add { my ($self, $spell) = @_; - # TODO - # create a widget dynamically, using spell face (CF::Protocol downloads them) + # try to create single paragraphs of multiple lines sent by the server + $spell->{message} =~ s/(?<=\S)\n(?=\w)/ /g; + $spell->{message} =~ s/\n+$//; + $spell->{message} ||= "Server did not provide a description for this spell."; + $::SETUP_SPELLS->add_spell ($spell); $self->{map_widget}->add_command ("invoke $spell->{name}", CFClient::UI::Label::escape $spell->{message}); @@ -461,22 +419,25 @@ sub addme_success { my ($self) = @_; - my $parser = new Pod::POM; - my $pod = $parser->parse_file (CFClient::find_rcfile "pod/skill_help.pod"); + my $skill_help = CFClient::load_pod CFClient::find_rcfile "pod/skill_help.pod", skill_help => 1, sub { + my ($pom) = @_; - my %skill_tooltip; + my %skill_help; - for my $head2 ($pod->head1->[-2]->head2) { - $skill_tooltip{$head2->title} = CFClient::pod_to_pango $head2->content; - } + for my $head2 ($pom->head1->[3]->head2) { + $skill_help{$head2->title} = CFClient::pod_to_pango $head2->content; + } + + \%skill_help + }; for my $skill (values %{$self->{skill_info}}) { $self->{map_widget}->add_command ("ready_skill $skill", (CFClient::UI::Label::escape "Ready the skill '$skill'\n\n") - . $skill_tooltip{$skill}); + . $skill_help->{$skill}); $self->{map_widget}->add_command ("use_skill $skill", (CFClient::UI::Label::escape "Immediately use the skill '$skill'\n\n") - . $skill_tooltip{$skill}); + . $skill_help->{$skill}); } } @@ -530,7 +491,7 @@ my $row; for (@{ $::CONN->{container}{0} }) { - if ($row < 7) { + if ($row < 6) { local $_->{face_widget}; # hack to force recreation of widget local $_->{desc_widget}; # hack to force recreation of widget CFClient::Item::update_widgets $_; @@ -540,7 +501,10 @@ $row++; } else { - $::FLOORBOX->add (1, $row, new CFClient::UI::Label text => "More..."); + $::FLOORBOX->add (1, $row, new CFClient::UI::Button + text => "More...", + on_activate => sub { $::INV_WINDOW->toggle_visibility }, + ); last; } } @@ -659,11 +623,195 @@ sub player_update { my ($self, $player) = @_; + $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $player->{weight} / 1000); +} + +sub update_server_info { + my ($self) = @_; + + my @yesno = ("no", "yes"); + + $::SERVER_INFO->set_markup ( + "server $self->{host}:$self->{port}\n" + . "protocol version $self->{version}\n" + . "minimap support $yesno[$self->{setup}{mapinfocmd} > 0]\n" + . "extended command support $yesno[$self->{setup}{extcmd} > 0]\n" + . "cfplus support $yesno[$self->{cfplus_ext} > 0]" + . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n" + . "map size $self->{mapw}×$self->{maph}\n" + ); +} + +sub logged_in { + my ($self) = @_; + + $self->send_ext_req (cfplus_support => "1", sub { + $self->{cfplus_ext} = $_[0]; + $self->update_server_info; + }); + + $self->update_server_info; - # do it here because it is ignored earlier, and there is no "login" event $self->send_command ("output-sync $::CFG->{output_sync}"); $self->send_command ("output-count $::CFG->{output_count}"); + $self->send_command ("pickup $::CFG->{pickup}"); +} + +sub lookat { + my ($self, $x, $y) = @_; + + if ($self->{cfplus_ext}) { + $self->send_ext_req (lookat => "$x $y", sub { + my %res = split /\x00/, $_[0]; + + if (exists $res{npc_dialog}) { + # start npc chat dialog + $self->{npc_dialog} = new CFClient::NPCDialog:: + dx => $x, + dy => $y, + title => "$res{npc_dialog} (NPC)", + conn => $self, + ; + } + }); + } + + $self->send ("lookat $x $y"); +} + +sub destroy { + my ($self) = @_; + + $self->{npc_dialog}->destroy + if $self->{npc_dialog}; + + $self->SUPER::destroy; +} + +package CFClient::NPCDialog; + +our @ISA = 'CFClient::UI::FancyFrame'; + +sub new { + my $class = shift; + + my $self = $class->SUPER::new ( + x => 'center', + y => 'center', + name => "npc_dialog", + force_w => $::WIDTH * 0.7, + force_h => $::HEIGHT * 0.7, + title => "NPC Dialog", + kw => { hi => 0, yes => 0, no => 0 }, + @_, + ); + + Scalar::Util::weaken (my $this = $self); + + # better use a pane... + $self->add (my $hbox = new CFClient::UI::HBox); + $hbox->add ($self->{textview} = new CFClient::UI::TextScroller expand => 1); + + $hbox->add (my $vbox = new CFClient::UI::VBox); + + $vbox->add (new CFClient::UI::Label text => "Message Entry:"); + $vbox->add ($self->{entry} = new CFClient::UI::Entry + tooltip => "Enter a message you want to tell the NPC and press return.\n\n" + . "Sometimes you have to tell an NPC something you cannot find out during " + . "a normal conversation (such as a password). In those cases you have to use " + . "this text entry. You can also enter responses manually instead of using the response " + . "buttons below.", + on_activate => sub { + my ($entry, $text) = @_; + + return unless $text =~ /\S/; + + $entry->set_text (""); + $this->send ($text); + }, + ); + + $vbox->add ($self->{options} = new CFClient::UI::VBox); + + $self->{close_button} = new CFClient::UI::Button + text => "Bye (close)", + tooltip => "Use this button to end talking to the NPC. This also closes the dialog window.", + on_activate => sub { $this->destroy }, + ; + + $self->update_options; + + $self->{token} = $self->{conn}->ext_token; + $self->{conn}->connect_ext ($self->{token} => sub { $this->feed (@_) }); + $self->{conn}->send ("ext npc_dialog_begin $self->{token} $self->{dx} $self->{dy}"); + + $self->{entry}->focus_in; + + $self->{textview}->add_paragraph ([1, 1, 0, 1], "[starting conversation with $self->{title}]\n\n"); + + $self->show; + $self +}; + +sub update_options { + my ($self) = @_; + + Scalar::Util::weaken $self; + + $self->{options}->clear; + $self->{options}->add ($self->{close_button}); + + for my $kw (sort keys %{ $self->{kw} }) { + $self->{options}->add (new CFClient::UI::Button + text => $kw, + on_activate => sub { + $self->send ($kw); + }, + ); + } +} + +sub feed { + my ($self, $data) = @_; + + my ($type, $msg) = split / /, $data, 2; + + if ($type eq "msg") { + my ($msg, @kw) = split /\x00/, $msg; + $self->{kw}{$_} = 1 for @kw; + + warn "<<<<@kw>>>>\n";#d# + + $msg = CFClient::UI::Label::escape $msg; + my $match = join "|", map "\\b\Q$_\E\\b", sort { (length $b) <=> (length $a) } keys %{ $self->{kw} }; + $msg =~ s/($match)/$1<\/span>/gi; # underline when http-ready, huh. + + $self->{textview}->add_paragraph ([1, 1, 1, 1], "\n$msg"); + $self->update_options; + } else { + $self->destroy; + } + + 1 +} + +sub send { + my ($self, $msg) = @_; + + $self->{conn}->send ("ext npc_dialog_tell $self->{token} $msg"); + $self->{textview}->add_paragraph ([1, 1, 0, 1], "\n" . CFClient::UI::Label::escape $msg); +} + +sub destroy { + my ($self) = @_; + + #Carp::cluck "debug\n";#d# #todo# enable: destroyx gets called twice because scalar keys {} is 1 + + delete $self->{conn}{npc_dialog}; + $self->{conn}->disconnect_ext ($self->{token}); + + $self->SUPER::destroy; } 1;