ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/Texture.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC/Texture.pm (file contents):
Revision 1.4 by root, Tue Jun 6 02:55:50 2006 UTC vs.
Revision 1.10 by root, Tue Jul 4 23:23:32 2006 UTC

40} 40}
41 41
42sub new_from_image { 42sub new_from_image {
43 my ($class, $image, %arg) = @_; 43 my ($class, $image, %arg) = @_;
44 44
45 $class->new (image => $image, %arg) 45 $class->new (image => $image, internalformat => undef, %arg)
46} 46}
47 47
48sub new_from_file { 48sub new_from_file {
49 my ($class, $path, %arg) = @_; 49 my ($class, $path, %arg) = @_;
50 50
65# w => $surface->width, 65# w => $surface->width,
66# h => $surface->height, 66# h => $surface->height,
67# ) 67# )
68#} 68#}
69 69
70sub new_from_layout { 70#sub new_from_layout {
71 my ($class, $layout, %arg) = @_; 71# my ($class, $layout, %arg) = @_;
72 72#
73 my ($w, $h, $data, $format, $internalformat) = $layout->render; 73# my ($w, $h, $data, $format, $internalformat) = $layout->render;
74 74#
75 $class->new ( 75# $class->new (
76 w => $w, 76# w => $w,
77 h => $h, 77# h => $h,
78 data => $data, 78# data => $data,
79 format => $format, 79# format => $format,
80 internalformat => $format, 80# internalformat => $format,
81 type => GL_UNSIGNED_BYTE, 81# type => GL_UNSIGNED_BYTE,
82 %arg, 82# %arg,
83 ) 83# )
84} 84#}
85 85
86sub new_from_opengl { 86sub new_from_opengl {
87 my ($class, $w, $h, $cb) = @_; 87 my ($class, $w, $h, $cb) = @_;
88 88
89 $class->new (w => $w || 1, h => $h || 1, render_cb => $cb) 89 $class->new (w => $w || 1, h => $h || 1, render_cb => $cb)
90}
91
92sub topot {
93 (grep $_ >= $_[0], 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768)[0]
94} 90}
95 91
96sub upload { 92sub upload {
97 my ($self) = @_; 93 my ($self) = @_;
98 94
111 glMatrixMode GL_MODELVIEW; 107 glMatrixMode GL_MODELVIEW;
112 glLoadIdentity; 108 glLoadIdentity;
113 $self->{render_cb}->($self, $self->{w}, $self->{h}); 109 $self->{render_cb}->($self, $self->{w}, $self->{h});
114 110
115 } else { 111 } else {
116 ($self->{w}, $self->{h}, $data, $self->{internalformat}, $self->{format}, $self->{type}) 112 ($self->{w}, $self->{h}, $data, my $internalformat, $self->{format}, $self->{type})
117 = CFClient::load_image_inline $self->{image}; 113 = CFClient::load_image_inline $self->{image};
114
115 $self->{internalformat} ||= $internalformat;
118 } 116 }
119 117
120 my ($tw, $th) = @$self{qw(w h)}; 118 my ($tw, $th) = @$self{qw(w h)};
121
122 unless ($tw > 0 && $th > 0) {
123 $tw = $th = 1;
124 $data = "\x00" x 64;
125 }
126 119
127 $self->{minified} ||= [CFClient::average $tw, $th, $data] 120 $self->{minified} ||= [CFClient::average $tw, $th, $data]
128 if $self->{minify}; 121 if $self->{minify};
129 122
130 unless ($GL_NPOT) { 123 pad2pot $data, $tw, $th unless $GL_NPOT;
131 # TODO: does not work for zero-sized textures
132 $tw = topot $tw;
133 $th = topot $th;
134
135 if (($tw != $self->{w} || $th != $self->{h}) && defined $data) {
136 my $bpp = (length $data) / ($self->{w} * $self->{h});
137 $data = pack "(a" . ($tw * $bpp) . ")*",
138 unpack "(a" . ($self->{w} * $bpp) . ")*", $data;
139 $data .= ("\x00" x ($tw * $bpp)) x ($th - $self->{h});
140 }
141 }
142 124
143 $self->{s} = $self->{w} / $tw; 125 $self->{s} = $self->{w} / $tw;
144 $self->{t} = $self->{h} / $th; 126 $self->{t} = $self->{h} / $th;
145 127
146 $self->{name} ||= glGenTexture; 128 $self->{name} ||= glGenTexture;
179 $self->{type}, 161 $self->{type},
180 $data; 162 $data;
181 gl_check "uploading texture %dx%d if=%x f=%x t=%x", 163 gl_check "uploading texture %dx%d if=%x f=%x t=%x",
182 $tw, $th, $self->{internalformat}, $self->{format}, $self->{type}; 164 $tw, $th, $self->{internalformat}, $self->{format}, $self->{type};
183 } else { 165 } else {
166 exists $self->{render_cb} or die;
184 glCopyTexImage2D GL_TEXTURE_2D, 0, 167 glCopyTexImage2D GL_TEXTURE_2D, 0,
185 $self->{internalformat}, 168 $self->{internalformat},
186 0, 0, 169 0, 0,
187 $tw, $th, 170 $tw, $th,
188 0; 171 0;
189 gl_check "copying to texture %dx%d if=%x", 172 gl_check "copying to texture %dx%d if=%x",
190 $tw, $th, $self->{internalformat}; 173 $tw, $th, $self->{internalformat};
191 } 174 }
192
193 glBindTexture GL_TEXTURE_2D, 0; # just to be on the safe side
194} 175}
176
177sub shutdown {
178 my ($self) = @_;
179
180 glDeleteTexture $self->{name}
181 if $self->{name};
182}
195 183
196sub DESTROY { 184sub DESTROY {
197 my ($self) = @_; 185 my ($self) = @_;
198 186
199 delete $TEXTURES{$self+0}; 187 delete $TEXTURES{$self+0};
200 188
201 glDeleteTexture delete $self->{name} 189 $self->shutdown;
202 if $self->{name};
203} 190}
204 191
205$CFClient::OpenGL::INIT_HOOK{"CFClient::Texture"} = sub { 192$CFClient::OpenGL::INIT_HOOK{"CFClient::Texture"} = sub {
193 # first mark all existing texture names as in-use, in case the context lost textures
194 glBindTexture GL_TEXTURE_2D, $_->{name}
195 for values %TEXTURES;
206 $_->upload 196 $_->upload
207 for values %TEXTURES; 197 for values %TEXTURES;
208}; 198};
209 199
200$CFClient::OpenGL::SHUTDOWN_HOOK{"CFClient::Texture"} = sub {
201 $_->shutdown
202 for values %TEXTURES;
203};
204
2101; 2051;
211 206
212=back 207=back
213 208
214=head1 AUTHOR 209=head1 AUTHOR

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines