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.60 by root, Mon Aug 27 02:43:38 2007 UTC vs.
Revision 1.72 by root, Mon Oct 12 14:01:00 2009 UTC

12my $OPTIPNG = "@OPTIPNG@"; 12my $OPTIPNG = "@OPTIPNG@";
13my $RSYNC = "@RSYNC@"; 13my $RSYNC = "@RSYNC@";
14my $PNGNQ = "@PNGNQ@"; 14my $PNGNQ = "@PNGNQ@";
15 15
16use Getopt::Long; 16use Getopt::Long;
17use Coro::Event; 17use Coro::EV;
18use AnyEvent; 18use AnyEvent;
19use YAML::XS ();
20use JSON::XS ();
19use IO::AIO (); 21use IO::AIO ();
20use File::Temp; 22use File::Temp;
21use Crossfire; 23use Deliantra;
22use Coro; 24use Coro 5.12;
23use Coro::AIO; 25use Coro::AIO;
24use Coro::Util; 26use Coro::Util;
25use POSIX (); 27use POSIX ();
26use Carp; 28use Carp;
27use Coro::Channel; 29use Coro::Channel;
65 tan => 12, 67 tan => 12,
66); 68);
67 69
68END { system "rm", "-rf", $TMPDIR } 70END { system "rm", "-rf", $TMPDIR }
69 71
70Event->signal (signal => "INT", cb => sub { exit 1 }); 72my $s_INT = EV::signal INT => sub { exit 1 };
71Event->signal (signal => "TERM", cb => sub { exit 1 }); 73my $s_TERM = EV::signal TERM => sub { exit 1 };
72 74
73mkdir $TMPDIR, 0700 75mkdir $TMPDIR, 0700
74 or die "$TMPDIR: $!"; 76 or die "$TMPDIR: $!";
75 77
76sub fork_sub(&) { 78sub fork_sub(&) {
96 if (!-f "$path/regions") { 98 if (!-f "$path/regions") {
97 warn "'$path' does not look like a maps directory ('regions' file is missing).\n"; 99 warn "'$path' does not look like a maps directory ('regions' file is missing).\n";
98 exit 1 unless $FORCE; 100 exit 1 unless $FORCE;
99 } 101 }
100 102
101 system $RSYNC, "-a", "--chmod=u=rwX,go=rX", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded" 103 system $RSYNC, "-av", "--chmod=u=rwX,go=rX",
104 "$path/.", "$DATADIR/maps/.",
105 "--exclude", "CVS", "--exclude", "/world-precomposed",
106 "--delete", "--delete-excluded"
102 and die "map installation failed.\n"; 107 and die "map installation failed.\n";
103 108
104 print "maps installed successfully.\n"; 109 print "maps installed successfully.\n";
105} 110}
106 111
268 fork_sub { 273 fork_sub {
269 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~"; 274 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~";
270 system $OPTIPNG, "-i0", "-q", "$other~"; 275 system $OPTIPNG, "-i0", "-q", "$other~";
271 276
272 # reduce smoothfaces >10000 bytes 277 # reduce smoothfaces >10000 bytes
278 # obsolete, no longer required
273 if ($stem =~ /_S\./ && (-s "$other~") > 10000) { 279 if (0 && $stem =~ /_S\./ && (-s "$other~") > 10000) {
274 my $ncolor = 256; 280 my $ncolor = 256;
275 while () { 281 while () {
276 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E"; 282 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
277 system $OPTIPNG, "-i0", "-q", "$other~~"; 283 system $OPTIPNG, "-i0", "-q", "$other~~";
278 last if 10000 > -s "$other~~"; 284 last if 10000 > -s "$other~~";
496 my $data; 502 my $data;
497 aio_load "$dir/$file", $data; 503 aio_load "$dir/$file", $data;
498 504
499 my $meta = load_cached "$dir/meta", sub { JSON::XS->new->utf8->relaxed->decode (shift) }; 505 my $meta = load_cached "$dir/meta", sub { JSON::XS->new->utf8->relaxed->decode (shift) };
500 506
501 next if $meta && !exists $meta->{$file}; 507 utf8::decode $dir;
508 utf8::decode $file;
509
510 # a meta file for resources is now mandatory
511 unless (exists $meta->{$file}) {
512 warn "skipping $dir/$file\n" if $VERBOSE >= 3;
513 next;
514 }
502 515
503 $meta = { 516 $meta = {
504 %{ $meta->{"" } || {} }, 517 %{ $meta->{"" } || {} },
505 %{ $meta->{$file} || {} }, 518 %{ $meta->{$file} || {} },
506 }; 519 };
519 $file =~ s/\.res$//; 532 $file =~ s/\.res$//;
520 $file =~ s/\.(ogg|wav|jpg|png)$//; 533 $file =~ s/\.(ogg|wav|jpg|png)$//;
521 534
522 substr $dir, 0, 1 + length $PATH, ""; 535 substr $dir, 0, 1 + length $PATH, "";
523 536
537 if (my $filter = $meta->{cfutil_filter}) {
538 if ($filter eq "yaml2json") {
539 $data = JSON::XS::encode_json YAML::XS::Load $data;
540 } elsif ($filter eq "json2json") {
541 $data = JSON::XS::encode_json JSON::XS->relaxed->utf8->decode ($data);
542 } elsif ($filter eq "perl2json") {
543 $data = eval $data; die if $@;
544 $data = JSON::XS::encode_json $data;
545 } else {
546 warn "$dir/$file: unknown filter $filter, skipping\n";
547 }
548 }
549
524 $RESOURCE{"$dir/$file"} = { 550 $RESOURCE{"$dir/$file"} = {
525 type => (delete $meta->{type}) || $type, 551 type => (exists $meta->{type} ? delete $meta->{type} : $type),
526 data => $data, 552 data => $data,
527 %$meta ? (meta => $meta) : (), 553 %$meta ? (meta => $meta) : (),
528 }; 554 };
529 } 555 }
530 } 556 }
551 } elsif ($dir =~ /^sound(?:\/|$)/) { 577 } elsif ($dir =~ /^sound(?:\/|$)/) {
552 $c_res->put ([$path, $file, 5]) # FT_SOUND 578 $c_res->put ([$path, $file, 5]) # FT_SOUND
553 if $file =~ /\.(wav|ogg)$/; 579 if $file =~ /\.(wav|ogg)$/;
554 580
555 } elsif ($dir =~ /^res(?:\/|$)/) { 581 } elsif ($dir =~ /^res(?:\/|$)/) {
582 if ($file =~ /\.(jpg|png)$/) {
556 $c_res->put ([$path, $file, 0]) # FT_FACE 583 $c_res->put ([$path, $file, 0]) # FT_FACE
557 if $file =~ /\.(jpg|png)$/; 584 } elsif ($file =~ /\.(res)$/) {
558 $c_res->put ([$path, $file, 7]) # FT_RSRC 585 $c_res->put ([$path, $file, 6]) # FT_RSRC
559 if $file =~ /\.(res)$/; 586 } else {
587 $c_res->put ([$path, $file, undef]);
588 }
560 589
561 } elsif ($file =~ /\.png$/) { 590 } elsif ($file =~ /\.png$/) {
562 push @c_png, ["$path/$file", 0]; 591 push @c_png, ["$path/$file", 0];
563 592
564 } elsif ($file =~ /\.trs$/) { 593 } elsif ($file =~ /\.trs$/) {
602 my @a_res = map +(async \&process_res), 1..2; 631 my @a_res = map +(async \&process_res), 1..2;
603 my @a_trs = map +(async \&process_trs), 1..2; 632 my @a_trs = map +(async \&process_trs), 1..2;
604 633
605 IO::AIO::flush; 634 IO::AIO::flush;
606 635
607 $c_res->put (undef) for @a_res; 636 $c_res->shutdown;
608 $c_arc->put (undef) for @a_arc; 637 $c_arc->shutdown;
609 $c_trs->put (undef) for @a_trs; 638 $c_trs->shutdown;
610 639
611 print "start file scan, arc, res processing...\n" if $VERBOSE; 640 print "start file scan, arc, res processing...\n" if $VERBOSE;
612 641
613 $_->join for @a_arc; # need to parse all archetypes before png processing 642 $_->join for @a_arc; # need to parse all archetypes before png processing
614 643
615 print "end arc, start png processing...\n" if $VERBOSE; 644 print "end arc, start png processing...\n" if $VERBOSE;
616 645
617 # four png crunchers work fine for my 2x smp machine 646 # eight png crunchers work fine for my 4x smp machine
618 my @a_png = map +(async \&process_png), 1..4; 647 my @a_png = map +(async \&process_png), 1..8;
619 648
620 $_->join for (@a_trs, @a_res, @a_png); 649 $_->join for (@a_trs, @a_res, @a_png);
621 650
622 print "scanning done, processing results...\n" if $VERBOSE; 651 print "scanning done, processing results...\n" if $VERBOSE;
623 { 652 {
662 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC; 691 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC;
663 692
664 print "writing archetypes...\n" if $VERBOSE; 693 print "writing archetypes...\n" if $VERBOSE;
665 open my $fh, ">:utf8", "$DATADIR/archetypes~" 694 open my $fh, ">:utf8", "$DATADIR/archetypes~"
666 or die "$DATADIR/archetypes~: $!"; 695 or die "$DATADIR/archetypes~: $!";
667 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC]; 696 print $fh Deliantra::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
668 } 697 }
669 698
670 { 699 {
671 print "writing treasures...\n" if $VERBOSE; 700 print "writing treasures...\n" if $VERBOSE;
672 open my $fh, ">:utf8", "$DATADIR/treasures~" 701 open my $fh, ">:utf8", "$DATADIR/treasures~"
678 print "processing facedata...\n" if $VERBOSE; 707 print "processing facedata...\n" if $VERBOSE;
679 while (my ($k, $v) = each %FACEINFO) { 708 while (my ($k, $v) = each %FACEINFO) {
680 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n"; 709 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n";
681 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n"; 710 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n";
682 711
683 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n"; 712 #length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
684 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n"; 713 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
685 714
686 if (my $magicmap = $v->{magicmap}) { 715 if (my $magicmap = $v->{magicmap}) {
687 $magicmap =~ y/A-Z_\-/a-z/d; 716 $magicmap =~ y/A-Z_\-/a-z/d;
688 $v->{magicmap} = $COLOR{$magicmap}; 717 $v->{magicmap} = $COLOR{$magicmap};

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines