--- deliantra/Deliantra-Client/DC.pm 2006/04/07 20:13:13 1.5 +++ deliantra/Deliantra-Client/DC.pm 2006/04/08 18:18:09 1.11 @@ -55,6 +55,7 @@ or return; { + require Data::Dumper; local $Data::Dumper::Purity = 1; $::CFG->{VERSION} = $::VERSION; print CFG Data::Dumper->Dump ([$::CFG], [qw/CFG/]); @@ -112,15 +113,37 @@ ) } +sub new_from_ttf { + my ($class, $ttf, $text) = @_; + + utf8::encode $text; + + my $surface = SDL::TTFRenderUTF8Blended $ttf, $text, + (new SDL::Color -r => 255, -g => 255, -b => 255); + + $class->new_from_surface (bless \$surface, SDL::Surface::) +} + +sub new_from_opengl { + my ($class, $w, $h, $cb) = @_; + + $class->_new (width => $w, height => $h, rendercb => $cb) +} + sub upload { my ($self) = @_; return unless $SDL::App::USING_OPENGL; - my ($data, $width, $height); + my $data; if (exists $self->{data}) { - ($data, $width, $height) = ($self->{data}, $self->{width}, $self->{height}); + $data = $self->{data}; + } elsif (exists $self->{rendercb}) { + glViewport 0, 0, $self->{width}, $self->{height}; + glClear GL_COLOR_BUFFER_BIT; + + $self->{rendercb}->($self, $self->{width}, $self->{height}); } else { my $pb = new Gtk2::Gdk::PixbufLoader; $pb->write ($self->{image}); @@ -129,7 +152,10 @@ $pb = $pb->get_pixbuf; $pb = $pb->add_alpha (0, 0, 0, 0); - ($data, $width, $height) = ($pb->get_pixels, $pb->get_width, $pb->get_height); + $self->{width} = $pb->get_width; + $self->{height} = $pb->get_height; + + $data = $pb->get_pixels; } ($self->{name}) = @{glGenTextures 1}; @@ -141,13 +167,27 @@ glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP; glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP; - glTexImage2D GL_TEXTURE_2D, 0, - GL_RGBA8, - $width, $height, - 0, - GL_RGBA, - GL_UNSIGNED_BYTE, - $data; + if (defined $data) { + glTexImage2D GL_TEXTURE_2D, 0, + GL_RGBA8, + $self->{width}, $self->{height}, + 0, + GL_RGBA, + GL_UNSIGNED_BYTE, + $data; + } else { + warn "I{DTEDRAW TEX: $self->{width} $self->{height} \n"; + warn "ERR: ". (glGetError). "\n"; + my ($bd, $br) = (glGet (GL_DRAW_BUFFER), glGet (GL_READ_BUFFER)); + warn "BUF:[$bd $br]\n"; + + glCopyTexImage2D GL_TEXTURE_2D, 0, + GL_RGBA8, + 0, 0, + $self->{width}, $self->{height}, + 0; + warn "ERR: ". (glGetError). "\n"; + } } sub DESTROY {