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.19 by root, Sun Apr 1 00:36:35 2007 UTC vs.
Revision 1.33 by root, Thu Apr 26 00:50:03 2007 UTC

9 9
10my $CONVERT = "@CONVERT@"; 10my $CONVERT = "@CONVERT@";
11my $IDENTIFY = "@IDENTIFY@"; 11my $IDENTIFY = "@IDENTIFY@";
12my $OPTIPNG = "@OPTIPNG@"; 12my $OPTIPNG = "@OPTIPNG@";
13my $RSYNC = "@RSYNC@"; 13my $RSYNC = "@RSYNC@";
14my $PNGNQ = "@PNGNQ@";
14 15
15use Getopt::Long; 16use Getopt::Long;
16use Coro::Event; 17use Coro::Event;
17use AnyEvent; 18use AnyEvent;
18use IO::AIO (); 19use IO::AIO ();
20use Crossfire; 21use Crossfire;
21use Coro; 22use Coro;
22use Coro::AIO; 23use Coro::AIO;
23use POSIX (); 24use POSIX ();
24use Digest::MD5; 25use Digest::MD5;
25use Storable; $Storable::canonical = 1; 26use Coro::Storable; $Storable::canonical = 1;
26 27
27sub usage { 28sub usage {
28 warn <<EOF; 29 warn <<EOF;
29Usage: cfutil [-v] [-q] [--force] [--cache] 30Usage: cfutil [-v] [-q] [--force] [--cache]
30 [--install-arch path] 31 [--install-arch path]
68} 69}
69 70
70sub inst_maps($) { 71sub inst_maps($) {
71 my (undef, $path) = @_; 72 my (undef, $path) = @_;
72 73
73 print "installing '$path' to '$DATADIR/maps'\n"; 74 print "\nInstalling '$path' to '$DATADIR/maps'\n\n";
74 75
75 if (!-f "$path/regions") { 76 if (!-f "$path/regions") {
76 warn "'$path' does not look like a maps directory ('regions' file is missing).\n"; 77 warn "'$path' does not look like a maps directory ('regions' file is missing).\n";
77 exit 1 unless $FORCE; 78 exit 1 unless $FORCE;
78 } 79 }
82 83
83 print "maps installed successfully.\n"; 84 print "maps installed successfully.\n";
84} 85}
85 86
86{ 87{
88 our %ANIMINFO;
87 our %FACEINFO; 89 our %FACEINFO;
88 our @ARC; 90 our @ARC;
91 our %ARC;
89 our $TRS; 92 our $TRS;
90 our $NFILE; 93 our $NFILE;
91 our %ANIM;
92 94
93 our $QUANTIZE = "+dither -colorspace RGB -colors 256"; 95 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
94 96
95 our (@png, @trs, @arc); # files we are interested in 97 our (@png, @trs, @arc); # files we are interested in
96 98
147 # possibly enlarge 149 # possibly enlarge
148 if (0 > aio_stat "$stem.64x64.png") { 150 if (0 > aio_stat "$stem.64x64.png") {
149 my $other = "$stem.64x64.png~"; 151 my $other = "$stem.64x64.png~";
150 152
151 if (0 > aio_lstat $other or (-M _) > (-M $path)) { 153 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
152 warn "rescale $other\n";#d#
153 my $wrap = 0; # for the time being 154 my $wrap = 0; # for the time being
154 fork_sub { 155 fork_sub {
155 system "convert png:\Q$path\E -depth 8 rgba:-" 156 system "convert png:\Q$path\E -depth 8 rgba:-"
156 . "| $exec_prefix/bin/cfhq2xa $w $h $wrap" 157 . "| $exec_prefix/bin/cfhq2xa $w $h $wrap"
157 . "| convert -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $QUANTIZE -quality 00 png32:\Q$other\E~" 158 . "| convert -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $QUANTIZE -quality 00 png32:\Q$other\E~"
158 and die "convert/hq2xa pipeline error: status $? ($!)"; 159 and die "convert/hq2xa pipeline error: status $? ($!)";
159 system $OPTIPNG, "-o5", "-i0", "-q", "$other~"; 160 system $OPTIPNG, "-i0", "-q", "$other~";
160 die "$other~ has zero size, aborting." unless -s "$other~"; 161 die "$other~ has zero size, aborting." unless -s "$other~";
161 rename "$other~", $other; 162 rename "$other~", $other;
162 }; 163 };
163 } 164 }
164 165
170 my $other = "$stem.32x32.png~"; 171 my $other = "$stem.32x32.png~";
171 172
172 if (0 > aio_lstat $other or (-M _) > (-M $path)) { 173 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
173 fork_sub { 174 fork_sub {
174 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~"; 175 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~";
175 system $OPTIPNG, "-o5", "-i0", "-q", "$other~"; 176 system $OPTIPNG, "-i0", "-q", "$other~";
177
178 # reduce smoothfaces >10000 bytes
179 if ($stem =~ /_S\./ && (-s "$other~") > 10000) {
180 my $ncolor = 256;
181 while () {
182 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
183 system $OPTIPNG, "-i0", "-q", "$other~~";
184 last if 10000 > -s "$other~~";
185 $ncolor = int $ncolor * 0.9;
186 $ncolor > 8 or die "cannot reduce filesize to < 10000 bytes";
187 }
188
189 printf "reduced %s from %d to %d bytes using %d colours.\n",
190 $other, -s "$other~", -s "$other~~", $ncolor
191 if $VERBOSE >= 2;
192 rename "$other~~", "$other~";
193 }
194
176 die "$other~ has zero size, aborting." unless -s "$other~"; 195 die "$other~ has zero size, aborting." unless -s "$other~";
177 rename "$other~", $other; 196 rename "$other~", $other;
178 }; 197 };
179 } 198 }
180 199
181 warn "scaled down $path to $other\n";#d# 200 #warn "scaled down $path to $other\n";#d#
182
183 push @png, [$other, !$CACHE]; 201 push @png, [$other, !$CACHE];
184 } 202 }
185 } 203 }
186 204
187 (my $face = $stem) =~ s/^.*\///; 205 (my $face = $stem) =~ s/^.*\///;
188 206
207 # split all bigfaces, but avoid smoothfaces (*_S)
189 if (($w > $T || $h > $T) && $face !~ /_S\./) { 208 if (($w > $T || $h > $T) && $face !~ /_S\./) {
190 # split 209 # split
191 my @tile; 210 my @tile;
192 for my $x (0 .. (int $w / $T) - 1) { 211 for my $x (0 .. (int $w / $T) - 1) {
193 for my $y (0 .. (int $h / $T) - 1) { 212 for my $y (0 .. (int $h / $T) - 1) {
257 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/ 276 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/
258 277
259 my $arc = read_arch "$dir/$file"; 278 my $arc = read_arch "$dir/$file";
260 for my $o (values %$arc) { 279 for my $o (values %$arc) {
261 push @ARC, $o; 280 push @ARC, $o;
281 for (my $m = $o; $m; $m = $m->{more}) {
282 $ARC{$m->{_name}} = $m;
283 }
262 284
263 $o->{editor_folder} = $dir; 285 $o->{editor_folder} = $dir;
264 286
265 my $visibility = delete $o->{visibility}; 287 my $visibility = delete $o->{visibility};
266 my $magicmap = delete $o->{magicmap}; 288 my $magicmap = delete $o->{magicmap};
277 my $x = $o->{x} - $dx; 299 my $x = $o->{x} - $dx;
278 my $y = $o->{y} - $dy; 300 my $y = $o->{y} - $dy;
279 301
280 my $ext = $x|$y ? "+$x+$y" : ""; 302 my $ext = $x|$y ? "+$x+$y" : "";
281 303
282 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/; 304 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
283 305
284 my $visibility = delete $o->{visibility} if exists $o->{visibility}; 306 my $visibility = delete $o->{visibility} if exists $o->{visibility};
285 my $magicmap = delete $o->{magicmap} if exists $o->{magicmap}; 307 my $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
286 308
287 my $anim = delete $o->{anim}; 309 my $anim = delete $o->{anim};
288 310
289 if ($anim) { 311 if ($anim) {
312 # possibly add $ext to the animation name to avoid
313 # the need to specify archnames for all parts
314 # of a multipart archetype.
290 $o->{animation} = "$o->{_name}"; 315 $o->{animation} = "$o->{_name}";
316 my $facings = 1;
317 my @frames;
291 318
292 for (@$anim) { 319 for (@$anim) {
293 $_ .= $ext unless /^facings\s|^blank.x11$|^empty.x11$/; 320 if (/^facings\s+(\d+)/) {
321 $facings = $1*1;
322 } elsif (/^blank.x11$|^empty.x11$/) {
323 push @frames, $_;
324 } else {
325 push @frames, "$_$ext";
326 }
294 } 327 }
295 328
296 $ANIM{"$o->{_name}$ext"} = 329 $ANIMINFO{$o->{animation}} = {
297 join "", map "$_\n", 330 facings => $facings,
298 "anim $o->{_name}", 331 frames => \@frames,
299 @$anim, 332 };
300 "mina";
301 } 333 }
302 334
303 for my $face ($o->{face} || (), @{$anim || []}) { 335 for my $face ($o->{face} || (), @{$anim || []}) {
304 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/; 336 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/;
305 337
308 $info->{visibility} = $visibility if defined $visibility; 340 $info->{visibility} = $visibility if defined $visibility;
309 $info->{magicmap} = $magicmap if defined $magicmap; 341 $info->{magicmap} = $magicmap if defined $magicmap;
310 } 342 }
311 343
312 if (my $smooth = delete $o->{smoothface}) { 344 if (my $smooth = delete $o->{smoothface}) {
313 my ($face, $smooth) = split /\s+/, $smooth; 345 my %kv =split /\s+/, $smooth;
314 # skip empty_S.x11, it seems to server no purpose whatsoever 346 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
315 # but increases bandwidth demands and worse. 347 while (my ($face, $smooth) = each %kv) {
316 unless ($smooth eq "empty_S.x11") {
317 $FACEINFO{$face}{smooth} = $smooth; 348 $FACEINFO{$face}{smooth} = $smooth;
349 $FACEINFO{$face}{smoothlevel} = $level;
318 } 350 }
319 } 351 }
320 } 352 }
321 } 353 }
322 } 354 }
354 } elsif ($file =~ /\.trs$/) { 386 } elsif ($file =~ /\.trs$/) {
355 push @trs, [$path, $file]; 387 push @trs, [$path, $file];
356 } elsif ($file =~ /\.arc$/) { 388 } elsif ($file =~ /\.arc$/) {
357 push @arc, [$path, $file]; 389 push @arc, [$path, $file];
358 } else { 390 } else {
359 warn "ignoring $path/$file\n" if $VERBOSE >= 2; 391 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
360 } 392 }
361 } 393 }
362 }; 394 };
363 } 395 }
364 396
365 sub inst_arch($) { 397 sub inst_arch($) {
366 my (undef, $path) = @_; 398 my (undef, $path) = @_;
367 399
400 print "\n",
368 print "installing '$path' to '$DATADIR'\n", 401 "Installing '$path' to '$DATADIR'\n",
402 "\n",
369 "(this can take a long time if you run this\n", 403 "This can take a long time if you run this\n",
370 "for the first time or do not use --cache).\n"; 404 "for the first time or do not use --cache.\n",
405 "\n",
406 "Unless you run verbosely, all following warning\n",
407 "or error messages indicate serious problems.\n",
408 "\n";
371 409
372 if (!-d "$path/treasures") { 410 if (!-d "$path/treasures") {
373 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n"; 411 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n";
374 exit 1 unless $FORCE; 412 exit 1 unless $FORCE;
375 } 413 }
383 (async \&process_trs), (async \&process_trs), 421 (async \&process_trs), (async \&process_trs),
384 (async \&process_arc), (async \&process_arc), 422 (async \&process_arc), (async \&process_arc),
385 ); 423 );
386 424
387 { 425 {
388 open my $fh, ">:utf8", "$DATADIR/animations~" 426 # remove path prefix from editor_folder
389 or die "$DATADIR/animations~: $!"; 427 substr $_->{editor_folder}, 0, 1 + length $path, ""
390 print $fh join "", map $ANIM{$_}, sort keys %ANIM 428 for values %ARC;
429
430 # resolve inherit
431 while () {
432 my $progress;
433 my $loop;
434
435 for my $o (values %ARC) {
436 if (my $other = $o->{inherit}) {
437 if (my $s = $ARC{$other}) {
438 if ($s->{inherit}) {
439 $loop = $s;
440 } else {
441 delete $o->{inherit};
442 my %s = %$s;
443 delete @s{qw(_name more name name_pl)};
444 %$o = ( %s, %$o );
445 ++$progress;
446 }
447 } else {
448 warn "'$o->{_name}' tries to inherit from undefined archetype '$other', skipping.\n";
449 delete $ARC{$o->{_name}};
450 }
451 }
452 }
453
454 unless ($progress) {
455 die "inheritance loop detected starting at archetype '$loop->{_name}', aborting.\n"
456 if $loop;
457
458 last;
459 }
391 } 460 }
392 461
393 {
394 open my $fh, ">:utf8", "$DATADIR/archetypes~" 462 open my $fh, ">:utf8", "$DATADIR/archetypes~"
395 or die "$DATADIR/archetypes~: $!"; 463 or die "$DATADIR/archetypes~: $!";
396 substr $_->{editor_folder}, 0, 1 + length $path, "" for @ARC; 464 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
397 print $fh Crossfire::archlist_to_string \@ARC;
398 } 465 }
399 466
400 { 467 {
401 open my $fh, ">:utf8", "$DATADIR/treasures~" 468 open my $fh, ">:utf8", "$DATADIR/treasures~"
402 or die "$DATADIR/treasures~: $!"; 469 or die "$DATADIR/treasures~: $!";
406 { 473 {
407 while (my ($k, $v) = each %FACEINFO) { 474 while (my ($k, $v) = each %FACEINFO) {
408 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n"; 475 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n";
409 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n"; 476 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n";
410 477
478 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
479 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
480
411 $v->{chksum32} = Digest::MD5::md5 $v->{data32}; 481 $v->{chksum32} = Digest::MD5::md5 $v->{data32};
412 $v->{chksum64} = Digest::MD5::md5 $v->{data64}; 482 $v->{chksum64} = Digest::MD5::md5 $v->{data64};
413 } 483 }
414 484
415 open my $fh, ">:perlio", "$DATADIR/facedata~" 485 open my $fh, ">:perlio", "$DATADIR/facedata~"
416 or die "$DATADIR/facedata~: $!"; 486 or die "$DATADIR/facedata~: $!";
417 487
418 $FACEINFO{""} = { version => 1}; 488 print $fh freeze {
419 print $fh Storable::nfreeze \%FACEINFO; 489 version => 2,
490 faceinfo => \%FACEINFO,
491 animinfo => \%ANIMINFO,
420 } 492 };
493 }
421 494
422 for (qw(archetypes facedata animations treasures)) { 495 for (qw(archetypes facedata treasures)) {
423 chmod 0644, "$DATADIR/$_~"; 496 chmod 0644, "$DATADIR/$_~";
424 rename "$DATADIR/$_~", "$DATADIR/$_" 497 rename "$DATADIR/$_~", "$DATADIR/$_"
425 or die "$DATADIR/$_: $!"; 498 or die "$DATADIR/$_: $!";
426 } 499 }
427 500

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines