ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/utils/cfutil.in
(Generate patch)

Comparing deliantra/server/utils/cfutil.in (file contents):
Revision 1.16 by root, Wed Mar 14 15:47:21 2007 UTC vs.
Revision 1.23 by root, Tue Apr 10 09:35:24 2007 UTC

20use Crossfire; 20use Crossfire;
21use Coro; 21use Coro;
22use Coro::AIO; 22use Coro::AIO;
23use POSIX (); 23use POSIX ();
24use Digest::MD5; 24use Digest::MD5;
25use Storable; $Storable::canonical = 1;
25 26
26sub usage { 27sub usage {
27 warn <<EOF; 28 warn <<EOF;
28Usage: cfutil [-v] [-q] [--force] [--cache] 29Usage: cfutil [-v] [-q] [--force] [--cache]
29 [--install-arch path] 30 [--install-arch path]
81 82
82 print "maps installed successfully.\n"; 83 print "maps installed successfully.\n";
83} 84}
84 85
85{ 86{
86 our %PNG32;
87 our %FACEINFO; 87 our %FACEINFO;
88 our @ARC; 88 our @ARC;
89 our $TRS; 89 our $TRS;
90 our $NFILE; 90 our $NFILE;
91 our %ANIM; 91 our %ANIM;
92 92
93 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
94
93 our (@png, @trs, @arc); # files we are interested in 95 our (@png, @trs, @arc); # files we are interested in
94 96
95 sub commit_png { 97 sub commit_png($$$) {
96 my ($name, $data) = @_; 98 my ($name, $data, $T) = @_;
97 99
98 $PNG32{$name} = $data; 100 $FACEINFO{$name}{"data$T"} = $data;
99 $FACEINFO{$name} ||= {};
100 } 101 }
101 102
102 sub process_png { 103 sub process_png {
103 while (@png) { 104 while (@png) {
104 my $path = pop @png; 105 my ($path, $delete) = @{pop @png};
105 106
106 my $png; 107 my $png;
107 aio_lstat $path; 108 aio_lstat $path;
108 my ($size, $mtime) = (stat _)[7,9]; 109 my ($size, $mtime) = (stat _)[7,9];
109 110
110 if (0 > aio_load $path, $png) { 111 if (0 > aio_load $path, $png) {
111 warn "$path: $!, skipping.\n"; 112 warn "$path: $!, skipping.\n";
112 next; 113 next;
113 } 114 }
114 115
116 my $stem = $path;
117 my $T;
118
119 if ($stem =~ s/\.32x32\.png~?$//) {
120 $T = 32;
121 } elsif ($stem =~ s/\.64x64\.png~?$//) {
122 $T = 64;
123 } else {
124 warn "$path: weird filename, skipping.\n";
125 next;
126 }
127
115 # quickly extract width and height of the (necessarily PNG) image 128 # quickly extract width and height of the (necessarily PNG) image
116 unless ($png =~ /^\x89PNG\x0d\x0a\x1a\x0a....IHDR(........)/s) { 129 unless ($png =~ /^\x89PNG\x0d\x0a\x1a\x0a....IHDR(........)/s) {
117 warn "$path: not a recongized png file, skipping.\n"; 130 warn "$path: not a recognized png file, skipping.\n";
118 next; 131 next;
119 } 132 }
120 133
121 my ($w, $h) = unpack "NN", $1; 134 my ($w, $h) = unpack "NN", $1;
122
123 (my $face = $path) =~ s/^.*\///;
124 my $T = 32;
125
126 unless ($face =~ s/\.base\.(...)\.png$/.$1/) {
127 warn "$path: weird filename, skipping.\n";
128 next;
129 }
130 135
131 if ($w < $T || $h < $T) { 136 if ($w < $T || $h < $T) {
132 warn "$path: too small ($w $h), skipping.\n"; 137 warn "$path: too small ($w $h), skipping.\n";
133 next; 138 next;
134 } 139 }
136 if ($w % $T || $h % $T) { 141 if ($w % $T || $h % $T) {
137 warn "$path: weird png size ($w $h), skipping.\n"; 142 warn "$path: weird png size ($w $h), skipping.\n";
138 next; 143 next;
139 } 144 }
140 145
146 unless ($path =~ /~$/) {
147 # possibly enlarge
148 if (0 > aio_stat "$stem.64x64.png") {
149 my $other = "$stem.64x64.png~";
150
151 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
152 my $wrap = 0; # for the time being
153 fork_sub {
154 system "convert png:\Q$path\E -depth 8 rgba:-"
155 . "| $exec_prefix/bin/cfhq2xa $w $h $wrap"
156 . "| convert -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $QUANTIZE -quality 00 png32:\Q$other\E~"
157 and die "convert/hq2xa pipeline error: status $? ($!)";
158 system $OPTIPNG, "-o5", "-i0", "-q", "$other~";
159 die "$other~ has zero size, aborting." unless -s "$other~";
160 rename "$other~", $other;
161 };
162 }
163
164 push @png, [$other, !$CACHE];
165 }
166
167 # possibly scale down
168 if (0 > aio_stat "$stem.32x32.png") {
169 my $other = "$stem.32x32.png~";
170
171 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
172 fork_sub {
173 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~";
174 system $OPTIPNG, "-o5", "-i0", "-q", "$other~";
175 die "$other~ has zero size, aborting." unless -s "$other~";
176 rename "$other~", $other;
177 };
178 }
179
180 #warn "scaled down $path to $other\n";#d#
181 push @png, [$other, !$CACHE];
182 }
183 }
184
185 (my $face = $stem) =~ s/^.*\///;
186
187 # split all bigfaces, but avoid smoothfaces (*_S)
141 if (($w > $T || $h > $T) && $face !~ /_S\./) { 188 if (($w > $T || $h > $T) && $face !~ /_S\./) {
142 # split 189 # split
143 my @tile; 190 my @tile;
144 for my $x (0 .. (int $w / $T) - 1) { 191 for my $x (0 .. (int $w / $T) - 1) {
145 for my $y (0 .. (int $h / $T) - 1) { 192 for my $y (0 .. (int $h / $T) - 1) {
159 ( 206 (
160 "(", 207 "(",
161 "+clone", 208 "+clone",
162 -crop => (sprintf "%dx%d+%d+%d", $T, $T, $_->[0] * $T, $_->[1] * $T), 209 -crop => (sprintf "%dx%d+%d+%d", $T, $T, $_->[0] * $T, $_->[1] * $T),
163 "+repage", 210 "+repage",
211 -quality => "00",
164 -write => "png:$_->[2]~", 212 -write => "png32:$_->[2]~",
165 "+delete", 213 "+delete",
166 ")", 214 ")",
167 ) 215 )
168 } @todo), 216 } @todo),
169 "null:"; 217 "null:";
173 close $convert; 221 close $convert;
174 222
175 # pass 2, optimise, and rename 223 # pass 2, optimise, and rename
176 for (@todo) { 224 for (@todo) {
177 system $OPTIPNG, "-o5", "-i0", "-q", "$_->[2]~"; 225 system $OPTIPNG, "-o5", "-i0", "-q", "$_->[2]~";
226 die "$_->[2]~ has zero size, aborting." unless -s "$_->[2]~";
178 rename "$_->[2]~", $_->[2]; 227 rename "$_->[2]~", $_->[2];
179 } 228 }
180 }; 229 };
181 } 230 }
182 231
186 235
187 if (0 > aio_load $file, $tile) { 236 if (0 > aio_load $file, $tile) {
188 die "$path: unable to read tile +$x+$y, aborting.\n"; 237 die "$path: unable to read tile +$x+$y, aborting.\n";
189 } 238 }
190 IO::AIO::aio_unlink $file unless $CACHE; 239 IO::AIO::aio_unlink $file unless $CACHE;
191 commit_png $x|$y ? "$face+$x+$y" : $face, $tile; 240 commit_png $x|$y ? "$face+$x+$y" : $face, $tile, $T;
192 } 241 }
193 } else { 242 } else {
194 # use as-is (either small, use smooth) 243 # use as-is (either small, use smooth)
195 commit_png $face, $png; 244 commit_png $face, $png, $T;
196 } 245 }
246
247 aio_unlink $path if $delete;
197 } 248 }
198 } 249 }
199 250
200 sub process_arc { 251 sub process_arc {
201 while (@arc) { 252 while (@arc) {
256 $info->{visibility} = $visibility if defined $visibility; 307 $info->{visibility} = $visibility if defined $visibility;
257 $info->{magicmap} = $magicmap if defined $magicmap; 308 $info->{magicmap} = $magicmap if defined $magicmap;
258 } 309 }
259 310
260 if (my $smooth = delete $o->{smoothface}) { 311 if (my $smooth = delete $o->{smoothface}) {
261 my ($face, $smooth) = split /\s+/, $smooth; 312 my %kv =split /\s+/, $smooth;
262 # skip empty_S.x11, it seems to server no purpose whatsoever 313 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
263 # but increases bandwidth demands and worse. 314 while (my ($face, $smooth) = each %kv) {
264 unless ($smooth eq "empty_S.x11") {
265 $FACEINFO{$face}{smooth} = $smooth; 315 $FACEINFO{$face}{smooth} = $smooth;
316 $FACEINFO{$face}{smoothlevel} = $level;
266 } 317 }
267 } 318 }
268 } 319 }
269 } 320 }
270 } 321 }
296 find_files "$path/$_" 347 find_files "$path/$_"
297 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs; 348 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs;
298 349
299 for my $file (@$nondirs) { 350 for my $file (@$nondirs) {
300 if ($file =~ /\.png$/) { 351 if ($file =~ /\.png$/) {
301 push @png, "$path/$file"; 352 push @png, ["$path/$file", 0];
302 } elsif ($file =~ /\.trs$/) { 353 } elsif ($file =~ /\.trs$/) {
303 push @trs, [$path, $file]; 354 push @trs, [$path, $file];
304 } elsif ($file =~ /\.arc$/) { 355 } elsif ($file =~ /\.arc$/) {
305 push @arc, [$path, $file]; 356 push @arc, [$path, $file];
306 } else { 357 } else {
311 } 362 }
312 363
313 sub inst_arch($) { 364 sub inst_arch($) {
314 my (undef, $path) = @_; 365 my (undef, $path) = @_;
315 366
316 print "installing '$path' to '$DATADIR'\n"; 367 print "installing '$path' to '$DATADIR'\n",
368 "(this can take a long time if you run this\n",
369 "for the first time or do not use --cache).\n";
317 370
318 if (!-d "$path/treasures") { 371 if (!-d "$path/treasures") {
319 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n"; 372 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n";
320 exit 1 unless $FORCE; 373 exit 1 unless $FORCE;
321 } 374 }
322 375
323 find_files $path; 376 find_files $path;
324 IO::AIO::flush; 377 IO::AIO::flush;
325 378
326 $_->join for ( 379 $_->join for (
327 (async \&process_png), (async \&process_png), 380 # four png crunchers work fine for my 2x smp machine
381 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png),
328 (async \&process_trs), (async \&process_trs), 382 (async \&process_trs), (async \&process_trs),
329 (async \&process_arc), (async \&process_arc), 383 (async \&process_arc), (async \&process_arc),
330 ); 384 );
331 385
332 { 386 {
348 print $fh $TRS; 402 print $fh $TRS;
349 } 403 }
350 404
351 { 405 {
352 while (my ($k, $v) = each %FACEINFO) { 406 while (my ($k, $v) = each %FACEINFO) {
353 $v->{data32} ||= delete $PNG32{$k};
354 }
355
356 while (my ($k, $v) = each %FACEINFO) {
357 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n"; 407 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n";
408 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n";
409
410 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
411 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
358 412
359 $v->{chksum32} = Digest::MD5::md5 $v->{data32}; 413 $v->{chksum32} = Digest::MD5::md5 $v->{data32};
414 $v->{chksum64} = Digest::MD5::md5 $v->{data64};
360 } 415 }
361 416
362 open my $fh, ">:perlio", "$DATADIR/faces~" 417 open my $fh, ">:perlio", "$DATADIR/facedata~"
363 or die "$DATADIR/faces~: $!"; 418 or die "$DATADIR/facedata~: $!";
364 419
365 $FACEINFO{""} = { version => 1}; 420 $FACEINFO{""} = { version => 1};
366 print $fh Storable::nfreeze \%FACEINFO; 421 print $fh Storable::nfreeze \%FACEINFO;
367 } 422 }
368 423
369 for (qw(archetypes faces animations treasures)) { 424 for (qw(archetypes facedata animations treasures)) {
370 chmod 0644, "$DATADIR/$_~"; 425 chmod 0644, "$DATADIR/$_~";
371 rename "$DATADIR/$_~", "$DATADIR/$_" 426 rename "$DATADIR/$_~", "$DATADIR/$_"
372 or die "$DATADIR/$_: $!"; 427 or die "$DATADIR/$_: $!";
373 } 428 }
374 429

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines