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.39 by root, Tue Apr 18 01:36:12 2006 UTC

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;
278 $tw, $th, # need to pad texture first 282 $tw, $th, # need to pad texture first
279 0, 283 0,
280 $self->{format}, 284 $self->{format},
281 $self->{type}, 285 $self->{type},
282 $data; 286 $data;
283 glGetError and die; 287 if (my $error = glGetError) {
288 warn sprintf "texture upload error: %x %dx%d i=%x f=%x t=%x\n",
289 $error, $tw, $th, $self->{internalformat}, $self->{format}, $self->{type};
290 }
284 } else { 291 } else {
285 glCopyTexImage2D GL_TEXTURE_2D, 0, 292 glCopyTexImage2D GL_TEXTURE_2D, 0,
286 $self->{internalformat}, 293 $self->{internalformat},
287 0, 0, 294 0, 0,
288 $tw, $th, 295 $tw, $th,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines