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.6 by root, Wed Jun 14 18:59:31 2006 UTC vs.
Revision 1.12 by root, Sun Aug 13 16:29:36 2006 UTC

1=head1 NAME 1=head1 NAME
2 2
3CFClient::Texture - tetxure class for CFClient 3CFPlus::Texture - tetxure class for CFPlus
4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 use CFClient::Texture; 7 use CFPlus::Texture;
8 8
9=head1 DESCRIPTION 9=head1 DESCRIPTION
10 10
11=over 4 11=over 4
12 12
13=cut 13=cut
14 14
15package CFClient::Texture; 15package CFPlus::Texture;
16 16
17use strict; 17use strict;
18 18
19use Scalar::Util; 19use Scalar::Util;
20 20
21use CFClient::OpenGL; 21use CFPlus::OpenGL;
22 22
23my %TEXTURES; 23my %TEXTURES;
24 24
25sub new { 25sub new {
26 my ($class, %data) = @_; 26 my ($class, %data) = @_;
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, nearest => 1)
90} 90}
91 91
92sub upload { 92sub upload {
93 my ($self) = @_; 93 my ($self) = @_;
94 94
107 glMatrixMode GL_MODELVIEW; 107 glMatrixMode GL_MODELVIEW;
108 glLoadIdentity; 108 glLoadIdentity;
109 $self->{render_cb}->($self, $self->{w}, $self->{h}); 109 $self->{render_cb}->($self, $self->{w}, $self->{h});
110 110
111 } else { 111 } else {
112 ($self->{w}, $self->{h}, $data, $self->{internalformat}, $self->{format}, $self->{type}) 112 ($self->{w}, $self->{h}, $data, my $internalformat, $self->{format}, $self->{type})
113 = CFClient::load_image_inline $self->{image}; 113 = CFPlus::load_image_inline $self->{image};
114
115 $self->{internalformat} ||= $internalformat;
114 } 116 }
115 117
116 my ($tw, $th) = @$self{qw(w h)}; 118 my ($tw, $th) = @$self{qw(w h)};
117 119
118 $self->{minified} ||= [CFClient::average $tw, $th, $data] 120 $self->{minified} ||= [CFPlus::average $tw, $th, $data]
119 if $self->{minify}; 121 if $self->{minify};
120 122
121 pad2pot $data, $tw, $th unless $GL_NPOT; 123 pad2pot $data, $tw, $th unless $GL_NPOT;
122 124
123 $self->{s} = $self->{w} / $tw; 125 $self->{s} = $self->{w} / $tw;
133 } else { 135 } else {
134 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, $GL_VERSION >= 1.2 ? GL_CLAMP_TO_EDGE : GL_CLAMP; 136 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, $GL_VERSION >= 1.2 ? GL_CLAMP_TO_EDGE : GL_CLAMP;
135 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, $GL_VERSION >= 1.2 ? GL_CLAMP_TO_EDGE : GL_CLAMP; 137 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, $GL_VERSION >= 1.2 ? GL_CLAMP_TO_EDGE : GL_CLAMP;
136 } 138 }
137 139
138 if ($::FAST) { 140 if ($::FAST || $self->{nearest}) {
139 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST; 141 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST;
140 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST; 142 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST;
141 } elsif ($self->{mipmap} && $GL_VERSION >= 1.4) { 143 } elsif ($self->{mipmap} && $GL_VERSION >= 1.4) {
142 glTexParameter GL_TEXTURE_2D, GL_GENERATE_MIPMAP, 1; 144 glTexParameter GL_TEXTURE_2D, GL_GENERATE_MIPMAP, 1;
143 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR; 145 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR;
159 $self->{type}, 161 $self->{type},
160 $data; 162 $data;
161 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",
162 $tw, $th, $self->{internalformat}, $self->{format}, $self->{type}; 164 $tw, $th, $self->{internalformat}, $self->{format}, $self->{type};
163 } else { 165 } else {
166 exists $self->{render_cb} or die;
164 glCopyTexImage2D GL_TEXTURE_2D, 0, 167 glCopyTexImage2D GL_TEXTURE_2D, 0,
165 $self->{internalformat}, 168 $self->{internalformat},
166 0, 0, 169 0, 0,
167 $tw, $th, 170 $tw, $th,
168 0; 171 0;
169 gl_check "copying to texture %dx%d if=%x", 172 gl_check "copying to texture %dx%d if=%x",
170 $tw, $th, $self->{internalformat}; 173 $tw, $th, $self->{internalformat};
171 } 174 }
172} 175}
173 176
177sub shutdown {
178 my ($self) = @_;
179
180 glDeleteTexture $self->{name}
181 if $self->{name};
182}
183
174sub DESTROY { 184sub DESTROY {
175 my ($self) = @_; 185 my ($self) = @_;
176 186
177 delete $TEXTURES{$self+0}; 187 delete $TEXTURES{$self+0};
178 188
179 glDeleteTexture delete $self->{name} 189 $self->shutdown;
180 if $self->{name};
181} 190}
182 191
183$CFClient::OpenGL::INIT_HOOK{"CFClient::Texture"} = sub { 192$CFPlus::OpenGL::INIT_HOOK{"CFPlus::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;
184 $_->upload 196 $_->upload
185 for values %TEXTURES; 197 for values %TEXTURES;
186}; 198};
187 199
200$CFPlus::OpenGL::SHUTDOWN_HOOK{"CFPlus::Texture"} = sub {
201 $_->shutdown
202 for values %TEXTURES;
203};
204
1881; 2051;
189 206
190=back 207=back
191 208
192=head1 AUTHOR 209=head1 AUTHOR

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines