--- deliantra/Deliantra-Client/DC/Protocol.pm 2006/08/19 02:49:55 1.81 +++ deliantra/Deliantra-Client/DC/Protocol.pm 2006/11/07 22:41:27 1.87 @@ -9,12 +9,14 @@ use CFPlus::UI; use CFPlus::Pod; +use Crossfire::Protocol::Base 0.95; + use base 'Crossfire::Protocol::Base'; sub new { my $class = shift; - my $self = $class->SUPER::new (@_, setup_req => { extmap => 0 }); + my $self = $class->SUPER::new (@_, setup_req => { extmap => 1 }); $self->{map_widget}->clr_commands; @@ -44,6 +46,12 @@ $self->{noface} = new_from_file CFPlus::Texture CFPlus::find_rcfile "noface.png", minify => 1, mipmap => 1; + { + $self->{dialogue} = my $tex = new_from_file CFPlus::Texture + CFPlus::find_rcfile "dialogue.png", minify => 1, mipmap => 1; + $self->{map}->set_texture (1, @$tex{qw(name w h s t)}, @{$tex->{minified}}); + } + $self->{open_container} = 0; # "global" @@ -315,9 +323,8 @@ sub user_send { my ($self, $command) = @_; - if ($self->{record}) { - push @{$self->{record}}, $command; - } + push @{$self->{record}}, $command + if $self->{record}; $self->logprint ("send: ", $command); $self->send_command ($command); @@ -619,8 +626,6 @@ $self->logprint ("info: ", $text); - 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; @@ -628,9 +633,8 @@ $text =~ s/\[b\](.*?)\[\/b\]/\1<\/b>/g; $text =~ s/\[color=(.*?)\](.*?)\[\/color\]/\2<\/span>/g; - $self->{logview}->add_paragraph ({ fg => $color[$color], markup => $_ }) - for map "$time $_", split /\n/, $text; - $self->{logview}->scroll_to_bottom; + ::message ({ fg => $color[$color], markup => $_ }) + for split /\n/, $text; $self->{statusbox}->add ($text, group => $text, @@ -666,6 +670,12 @@ $::SPELL_PAGE->remove_spell ($spell); } +sub setup { + my ($self, $setup) = @_; + + $::MAP->resize ($self->{mapw}, $self->{maph}); +} + sub addme_success { my ($self) = @_; @@ -879,6 +889,7 @@ . "protocol version $self->{version}\n" . "minimap support $yesno[$self->{setup}{mapinfocmd} > 0]\n" . "extended command support $yesno[$self->{setup}{extcmd} > 0]\n" + . "editing support $yesno[!!$self->{editor_support}]\n" . "map attributes $yesno[$self->{setup}{extmap} > 0]\n" . "cfplus support $yesno[$self->{cfplus_ext} > 0]" . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n" @@ -893,6 +904,15 @@ $self->{cfplus_ext} = $_[0]{version}; $self->update_server_info; + if ($self->{cfplus_ext} >= 2) { + $self->send_ext_req ("editor_support", sub { + $self->{editor_support} = $_[0]; + $self->update_server_info; + + 0 + }); + } + 0 }); @@ -1087,3 +1107,4 @@ } 1 +