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.24 by root, Thu Apr 12 14:18:06 2007 UTC vs.
Revision 1.42 by root, Thu Jul 19 13:46:39 2007 UTC

6my $exec_prefix = "@exec_prefix@"; 6my $exec_prefix = "@exec_prefix@";
7my $datarootdir = "@datarootdir@"; 7my $datarootdir = "@datarootdir@";
8my $DATADIR = "@datadir@/@PACKAGE@"; 8my $DATADIR = "@datadir@/@PACKAGE@";
9 9
10my $CONVERT = "@CONVERT@"; 10my $CONVERT = "@CONVERT@";
11my $IDENTIFY = "@IDENTIFY@"; 11#my $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;
26use Carp;
25use Storable; $Storable::canonical = 1; 27use Coro::Storable; $Storable::canonical = 1;
28
29$SIG{QUIT} = sub { Carp::cluck "QUIT" };
26 30
27sub usage { 31sub usage {
28 warn <<EOF; 32 warn <<EOF;
29Usage: cfutil [-v] [-q] [--force] [--cache] 33Usage: cfutil [-v] [-q] [--force] [--cache]
30 [--install-arch path] 34 [--install-arch path]
42my $CACHE = 0; 46my $CACHE = 0;
43my $FORCE; 47my $FORCE;
44my $TMPDIR = "/tmp/cfutil$$~"; 48my $TMPDIR = "/tmp/cfutil$$~";
45my $TMPFILE = "aaaa0"; 49my $TMPFILE = "aaaa0";
46 50
51our %COLOR = (
52 black => 0,
53 white => 1,
54 navy => 2,
55 red => 3,
56 orange => 4,
57 blue => 5,
58 darkorange => 6,
59 green => 7,
60 lightgreen => 8,
61 grey => 9,
62 brown => 10,
63 gold => 11,
64 tan => 12,
65);
66
47END { system "rm", "-rf", $TMPDIR } 67END { system "rm", "-rf", $TMPDIR }
48 68
49Event->signal (signal => "INT", cb => sub { exit 1 }); 69Event->signal (signal => "INT", cb => sub { exit 1 });
50Event->signal (signal => "TERM", cb => sub { exit 1 }); 70Event->signal (signal => "TERM", cb => sub { exit 1 });
51 71
68} 88}
69 89
70sub inst_maps($) { 90sub inst_maps($) {
71 my (undef, $path) = @_; 91 my (undef, $path) = @_;
72 92
73 print "installing '$path' to '$DATADIR/maps'\n"; 93 print "\nInstalling '$path' to '$DATADIR/maps'\n\n";
74 94
75 if (!-f "$path/regions") { 95 if (!-f "$path/regions") {
76 warn "'$path' does not look like a maps directory ('regions' file is missing).\n"; 96 warn "'$path' does not look like a maps directory ('regions' file is missing).\n";
77 exit 1 unless $FORCE; 97 exit 1 unless $FORCE;
78 } 98 }
79 99
80 system $RSYNC, "-av", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded" 100 system $RSYNC, "-a", "--chmod=u=rwX,go=rX", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded"
81 and die "map installation failed.\n"; 101 and die "map installation failed.\n";
82 102
83 print "maps installed successfully.\n"; 103 print "maps installed successfully.\n";
84} 104}
85 105
86{ 106{
87 our %ANIMINFO; 107 our %ANIMINFO;
88 our %FACEINFO; 108 our %FACEINFO;
109 our %RESOURCE;
89 our @ARC; 110 our @ARC;
111 our %ARC;
90 our $TRS; 112 our $TRS;
91 our $NFILE; 113 our $NFILE;
114 our $PATH;
92 115
93 our $QUANTIZE = "+dither -colorspace RGB -colors 256"; 116 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
94 117
95 our (@png, @trs, @arc); # files we are interested in 118 our (@png, @trs, @arc, @res); # files we are interested in
96 119
97 sub commit_png($$$) { 120 sub commit_png($$$) {
98 my ($name, $data, $T) = @_; 121 my ($name, $data, $T) = @_;
99 122
100 $FACEINFO{$name}{"data$T"} = $data; 123 $FACEINFO{$name}{"data$T"} = $data;
153 fork_sub { 176 fork_sub {
154 system "convert png:\Q$path\E -depth 8 rgba:-" 177 system "convert png:\Q$path\E -depth 8 rgba:-"
155 . "| $exec_prefix/bin/cfhq2xa $w $h $wrap" 178 . "| $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~" 179 . "| 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 $? ($!)"; 180 and die "convert/hq2xa pipeline error: status $? ($!)";
158 system $OPTIPNG, "-o5", "-i0", "-q", "$other~"; 181 system $OPTIPNG, "-i0", "-q", "$other~";
159 die "$other~ has zero size, aborting." unless -s "$other~"; 182 die "$other~ has zero size, aborting." unless -s "$other~";
160 rename "$other~", $other; 183 rename "$other~", $other;
161 }; 184 };
162 } 185 }
163 186
169 my $other = "$stem.32x32.png~"; 192 my $other = "$stem.32x32.png~";
170 193
171 if (0 > aio_lstat $other or (-M _) > (-M $path)) { 194 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
172 fork_sub { 195 fork_sub {
173 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~"; 196 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~";
174 system $OPTIPNG, "-o5", "-i0", "-q", "$other~"; 197 system $OPTIPNG, "-i0", "-q", "$other~";
198
199 # reduce smoothfaces >10000 bytes
200 if ($stem =~ /_S\./ && (-s "$other~") > 10000) {
201 my $ncolor = 256;
202 while () {
203 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
204 system $OPTIPNG, "-i0", "-q", "$other~~";
205 last if 10000 > -s "$other~~";
206 $ncolor = int $ncolor * 0.9;
207 $ncolor > 8 or die "cannot reduce filesize to < 10000 bytes";
208 }
209
210 printf "reduced %s from %d to %d bytes using %d colours.\n",
211 $other, -s "$other~", -s "$other~~", $ncolor
212 if $VERBOSE >= 2;
213 rename "$other~~", "$other~";
214 }
215
175 die "$other~ has zero size, aborting." unless -s "$other~"; 216 die "$other~ has zero size, aborting." unless -s "$other~";
176 rename "$other~", $other; 217 rename "$other~", $other;
177 }; 218 };
178 } 219 }
179 220
256 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/ 297 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/
257 298
258 my $arc = read_arch "$dir/$file"; 299 my $arc = read_arch "$dir/$file";
259 for my $o (values %$arc) { 300 for my $o (values %$arc) {
260 push @ARC, $o; 301 push @ARC, $o;
302 for (my $m = $o; $m; $m = $m->{more}) {
303 $ARC{$m->{_name}} = $m;
304 }
261 305
262 $o->{editor_folder} = $dir; 306 $o->{editor_folder} = $dir;
263 307
264 my $visibility = delete $o->{visibility}; 308 my $visibility = delete $o->{visibility};
265 my $magicmap = delete $o->{magicmap}; 309 my $magicmap = delete $o->{magicmap};
276 my $x = $o->{x} - $dx; 320 my $x = $o->{x} - $dx;
277 my $y = $o->{y} - $dy; 321 my $y = $o->{y} - $dy;
278 322
279 my $ext = $x|$y ? "+$x+$y" : ""; 323 my $ext = $x|$y ? "+$x+$y" : "";
280 324
281 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/; 325 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
282 326
283 my $visibility = delete $o->{visibility} if exists $o->{visibility}; 327 $visibility = delete $o->{visibility} if exists $o->{visibility};
284 my $magicmap = delete $o->{magicmap} if exists $o->{magicmap}; 328 $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
285 329
286 my $anim = delete $o->{anim}; 330 my $anim = delete $o->{anim};
287 331
288 if ($anim) { 332 if ($anim) {
289 # possibly add $ext to the animation name to avoid 333 # possibly add $ext to the animation name to avoid
344 388
345 $TRS .= $trs; 389 $TRS .= $trs;
346 } 390 }
347 } 391 }
348 392
393 sub process_res {
394 while (@res) {
395 my ($dir, $file) = @{pop @res};
396
397 my $data;
398 aio_load "$dir/$file", $data;
399
400 my $copyright;
401 aio_load "$dir/copyright", $copyright;
402
403 $file =~ s/\.res$//;
404 $file =~ /\.([^.]+)$/
405 or next;
406
407 my $type = $1;
408
409 substr $dir, 0, 1 + length $PATH, "";
410
411 $RESOURCE{"$dir/$file"} = {
412 type => $1,
413 copyright => $copyright,
414 data => $data,
415 chksum => Digest::MD5::md5 $data,
416 };
417 }
418 }
419
349 sub find_files; 420 sub find_files;
350 sub find_files { 421 sub find_files {
351 my ($path) = @_; 422 my ($path) = @_;
352 423
353 IO::AIO::aioreq_pri 4; 424 IO::AIO::aioreq_pri 4;
362 push @png, ["$path/$file", 0]; 433 push @png, ["$path/$file", 0];
363 } elsif ($file =~ /\.trs$/) { 434 } elsif ($file =~ /\.trs$/) {
364 push @trs, [$path, $file]; 435 push @trs, [$path, $file];
365 } elsif ($file =~ /\.arc$/) { 436 } elsif ($file =~ /\.arc$/) {
366 push @arc, [$path, $file]; 437 push @arc, [$path, $file];
438 } elsif ($file =~ /\.(ogg|jpg|res)$/) {
439 push @res, [$path, $file];
367 } else { 440 } else {
368 warn "ignoring $path/$file\n" if $VERBOSE >= 2; 441 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
369 } 442 }
370 } 443 }
371 }; 444 };
372 } 445 }
373 446
374 sub inst_arch($) { 447 sub inst_arch($) {
375 my (undef, $path) = @_; 448 my (undef, $path) = @_;
376 449
450 $PATH = $path;
451
452 print "\n",
377 print "installing '$path' to '$DATADIR'\n", 453 "Installing '$path' to '$DATADIR'\n",
454 "\n",
378 "(this can take a long time if you run this\n", 455 "This can take a long time if you run this\n",
379 "for the first time or do not use --cache).\n"; 456 "for the first time or do not use --cache.\n",
457 "\n",
458 "Unless you run verbosely, all following warning\n",
459 "or error messages indicate serious problems.\n",
460 "\n";
380 461
381 if (!-d "$path/treasures") { 462 if (!-d "$path/treasures") {
382 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n"; 463 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n";
383 exit 1 unless $FORCE; 464 exit 1 unless $FORCE;
384 } 465 }
389 $_->join for ( 470 $_->join for (
390 # four png crunchers work fine for my 2x smp machine 471 # four png crunchers work fine for my 2x smp machine
391 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png), 472 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png),
392 (async \&process_trs), (async \&process_trs), 473 (async \&process_trs), (async \&process_trs),
393 (async \&process_arc), (async \&process_arc), 474 (async \&process_arc), (async \&process_arc),
475 (async \&process_res), (async \&process_res),
394 ); 476 );
395 477
396 { 478 {
479 # remove path prefix from editor_folder
480 substr $_->{editor_folder}, 0, 1 + length $path, ""
481 for values %ARC;
482
483 # resolve inherit
484 while () {
485 my $progress;
486 my $loop;
487
488 for my $o (values %ARC) {
489 if (my $other = $o->{inherit}) {
490 if (my $s = $ARC{$other}) {
491 if ($s->{inherit}) {
492 $loop = $s;
493 } else {
494 delete $o->{inherit};
495 my %s = %$s;
496 delete @s{qw(_name more name name_pl)};
497 %$o = ( %s, %$o );
498 ++$progress;
499 }
500 } else {
501 warn "'$o->{_name}' tries to inherit from undefined archetype '$other', skipping.\n";
502 delete $ARC{$o->{_name}};
503 }
504 }
505 }
506
507 unless ($progress) {
508 die "inheritance loop detected starting at archetype '$loop->{_name}', aborting.\n"
509 if $loop;
510
511 last;
512 }
513 }
514
515 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit
516 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC;
517
397 open my $fh, ">:utf8", "$DATADIR/archetypes~" 518 open my $fh, ">:utf8", "$DATADIR/archetypes~"
398 or die "$DATADIR/archetypes~: $!"; 519 or die "$DATADIR/archetypes~: $!";
399 substr $_->{editor_folder}, 0, 1 + length $path, "" for @ARC; 520 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
400 print $fh Crossfire::archlist_to_string \@ARC;
401 } 521 }
402 522
403 { 523 {
404 open my $fh, ">:utf8", "$DATADIR/treasures~" 524 open my $fh, ">:utf8", "$DATADIR/treasures~"
405 or die "$DATADIR/treasures~: $!"; 525 or die "$DATADIR/treasures~: $!";
414 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n"; 534 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
415 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n"; 535 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
416 536
417 $v->{chksum32} = Digest::MD5::md5 $v->{data32}; 537 $v->{chksum32} = Digest::MD5::md5 $v->{data32};
418 $v->{chksum64} = Digest::MD5::md5 $v->{data64}; 538 $v->{chksum64} = Digest::MD5::md5 $v->{data64};
539
540 if (my $magicmap = $v->{magicmap}) {
541 $magicmap =~ y/A-Z_\-/a-z/d;
542 $v->{magicmap} = $COLOR{$magicmap};
543 }
419 } 544 }
420 545
421 open my $fh, ">:perlio", "$DATADIR/facedata~" 546 open my $fh, ">:perlio", "$DATADIR/facedata~"
422 or die "$DATADIR/facedata~: $!"; 547 or die "$DATADIR/facedata~: $!";
423 548
424 print $fh Storable::nfreeze { 549 print $fh freeze {
425 version => 2, 550 version => 2,
426 faceinfo => \%FACEINFO, 551 faceinfo => \%FACEINFO,
427 animinfo => \%ANIMINFO, 552 animinfo => \%ANIMINFO,
553 resource => \%RESOURCE,
428 }; 554 };
429 } 555 }
430 556
431 for (qw(archetypes facedata treasures)) { 557 for (qw(archetypes facedata treasures)) {
432 chmod 0644, "$DATADIR/$_~"; 558 chmod 0644, "$DATADIR/$_~";

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines