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

Comparing deliantra/Deliantra-Client/DC.pm (file contents):
Revision 1.36 by root, Sat Apr 15 23:24:59 2006 UTC vs.
Revision 1.42 by root, Fri Apr 21 07:09:10 2006 UTC

21 XSLoader::load "CFClient", $VERSION; 21 XSLoader::load "CFClient", $VERSION;
22} 22}
23 23
24use AnyEvent; 24use AnyEvent;
25use BerkeleyDB; 25use BerkeleyDB;
26use SDL::OpenGL; 26use CFClient::OpenGL;
27 27
28our %GL_EXT; 28our %GL_EXT;
29our $GL_VERSION; 29our $GL_VERSION;
30 30
31our $GL_NPOT; 31our $GL_NPOT;
93mkdir "$Crossfire::VARDIR/pclient", 0777; 93mkdir "$Crossfire::VARDIR/pclient", 0777;
94 94
95our $DB_ENV = new BerkeleyDB::Env 95our $DB_ENV = new BerkeleyDB::Env
96 -Home => "$Crossfire::VARDIR/pclient", 96 -Home => "$Crossfire::VARDIR/pclient",
97 -Cachesize => 1_000_000, 97 -Cachesize => 1_000_000,
98 -ErrFile => "/proc/self/fd/2", 98 -ErrFile => "$Crossfire::VARDIR/pclient/errorlog.txt",
99 -ErrPrefix => "DATABASE", 99# -ErrPrefix => "DATABASE",
100 -Verbose => 1, 100 -Verbose => 1,
101 -Flags => DB_CREATE | DB_JOINENV | DB_RECOVER_FATAL | DB_INIT_MPOOL | DB_INIT_LOCK | DB_INIT_TXN, 101 -Flags => DB_CREATE | DB_RECOVER_FATAL | DB_INIT_MPOOL | DB_INIT_LOCK | DB_INIT_TXN,
102 or die "unable to create/open database home $Crossfire::VARDIR/pclient: $BerkeleyDB::Error"; 102 or die "unable to create/open database home $Crossfire::VARDIR/pclient: $BerkeleyDB::Error";
103 103
104sub db_table($) { 104sub db_table($) {
105 my ($table) = @_;
106
107 $table =~ s/([^a-zA-Z0-9_\-])/sprintf "=%x=", ord $1/ge;
108
105 new CFClient::Database 109 new CFClient::Database
106 -Env => $DB_ENV, 110 -Env => $DB_ENV,
111 -Filename => $table,
107 -Filename => "database", 112# -Filename => "database",
108 -Subname => $_[0], 113# -Subname => $table,
109 -Flags => DB_CREATE | DB_UPGRADE, 114 -Flags => DB_CREATE | DB_UPGRADE,
110 or die "unable to create/open database table $_[0]: $BerkeleyDB::Error"; 115 or die "unable to create/open database table $_[0]: $BerkeleyDB::Error";
111} 116}
112 117
113package CFClient::Database; 118package CFClient::Database;
117sub get($$) { 122sub get($$) {
118 my $data; 123 my $data;
119 124
120 $_[0]->db_get ($_[1], $data) == 0 125 $_[0]->db_get ($_[1], $data) == 0
121 ? $data 126 ? $data
122 : (); 127 : ()
123} 128}
124 129
125my %DB_SYNC; 130my %DB_SYNC;
126 131
127sub put($$$) { 132sub put($$$) {
128 my ($db, $key, $data) = @_; 133 my ($db, $key, $data) = @_;
129 134
130 $db->db_put ($key => $data);
131
132 $DB_SYNC{$db} = AnyEvent->timer (after => 5, cb => sub { $db->db_sync }); 135 $DB_SYNC{$db} = AnyEvent->timer (after => 5, cb => sub { $db->db_sync });
133 136
137 $db->db_put ($key => $data)
134} 138}
135 139
136package CFClient::Texture; 140package CFClient::Texture;
137 141
138use strict; 142use strict;
139 143
140use Scalar::Util; 144use Scalar::Util;
141 145
142use SDL::OpenGL; 146use CFClient::OpenGL;
143 147
144my %TEXTURES; 148my %TEXTURES;
145 149
146sub new { 150sub new {
147 my ($class, %data) = @_; 151 my ($class, %data) = @_;
165 169
166 $class->new (image => $image, %arg) 170 $class->new (image => $image, %arg)
167} 171}
168 172
169sub new_from_file { 173sub new_from_file {
170 my ($class, $path) = @_; 174 my ($class, $path, %arg) = @_;
171 175
172 open my $fh, "<:raw", $path 176 open my $fh, "<:raw", $path
173 or die "$path: $!"; 177 or die "$path: $!";
174 178
175 local $/; 179 local $/;
176 $class->new_from_image (<$fh>) 180 $class->new_from_image (<$fh>, %arg)
177} 181}
178 182
179#sub new_from_surface { 183#sub new_from_surface {
180# my ($class, $surface) = @_; 184# my ($class, $surface) = @_;
181# 185#
187# h => $surface->height, 191# h => $surface->height,
188# ) 192# )
189#} 193#}
190 194
191sub new_from_layout { 195sub new_from_layout {
192 my ($class, $layout) = @_; 196 my ($class, $layout, %arg) = @_;
193 197
194 my ($w, $h, $data) = $layout->render; 198 my ($w, $h, $data) = $layout->render;
195 199
196 $class->new ( 200 $class->new (
197 w => $w, 201 w => $w,
198 h => $h, 202 h => $h,
199 data => $data, 203 data => $data,
200 internalformat => GL_ALPHA4, 204 internalformat => GL_ALPHA4,
201 format => GL_ALPHA, 205 format => GL_ALPHA,
202 type => GL_UNSIGNED_BYTE, 206 type => GL_UNSIGNED_BYTE,
207 %arg,
203 ) 208 )
204} 209}
205 210
206sub new_from_opengl { 211sub new_from_opengl {
207 my ($class, $w, $h, $cb) = @_; 212 my ($class, $w, $h, $cb) = @_;
261 } 266 }
262 267
263 $self->{s} = $self->{w} / $tw; 268 $self->{s} = $self->{w} / $tw;
264 $self->{t} = $self->{h} / $th; 269 $self->{t} = $self->{h} / $th;
265 270
271 glGetError;
272
266 $self->{name} ||= (glGenTextures 1)->[0]; 273 $self->{name} ||= glGenTexture;
267 274
268 glBindTexture GL_TEXTURE_2D, $self->{name}; 275 glBindTexture GL_TEXTURE_2D, $self->{name};
269 276
270 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, $::FAST ? GL_NEAREST : GL_LINEAR;
271 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, $::FAST ? GL_NEAREST : GL_LINEAR;
272 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP; 277 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP;
273 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP; 278 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP;
279
280 if ($::FAST) {
281 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST;
282 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST;
283 } else {
284 glTexParameter GL_TEXTURE_2D, GL_GENERATE_MIPMAP, $self->{mipmap};
285 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR;
286 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, $self->{mipmap} ? GL_LINEAR_MIPMAP_LINEAR : GL_LINEAR;
287 }
274 288
275 if (defined $data) { 289 if (defined $data) {
276 glTexImage2D GL_TEXTURE_2D, 0, 290 glTexImage2D GL_TEXTURE_2D, 0,
277 $self->{internalformat}, 291 $self->{internalformat},
278 $tw, $th, # need to pad texture first 292 $tw, $th, # need to pad texture first
279 0, 293 0,
280 $self->{format}, 294 $self->{format},
281 $self->{type}, 295 $self->{type},
282 $data; 296 $data;
283 glGetError and die; 297 if (my $error = glGetError) {
298 warn sprintf "texture upload error: %x %dx%d i=%x f=%x t=%x\n",
299 $error, $tw, $th, $self->{internalformat}, $self->{format}, $self->{type};
300 }
284 } else { 301 } else {
285 glCopyTexImage2D GL_TEXTURE_2D, 0, 302 glCopyTexImage2D GL_TEXTURE_2D, 0,
286 $self->{internalformat}, 303 $self->{internalformat},
287 0, 0, 304 0, 0,
288 $tw, $th, 305 $tw, $th,
294sub DESTROY { 311sub DESTROY {
295 my ($self) = @_; 312 my ($self) = @_;
296 313
297 delete $TEXTURES{$self+0}; 314 delete $TEXTURES{$self+0};
298 315
299 glDeleteTextures delete $self->{name} 316 glDeleteTexture delete $self->{name}
300 if $self->{name}; 317 if $self->{name};
301} 318}
302 319
303sub restore_state{ 320sub restore_state{
304 $_->upload 321 $_->upload

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines