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.65 by root, Thu Dec 27 15:32:41 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::Syck (); 19use YAML::XS ();
20use JSON::XS (); 20use JSON::XS ();
21use IO::AIO (); 21use IO::AIO ();
22use File::Temp; 22use File::Temp;
23use Deliantra; 23use Deliantra;
24use Coro; 24use Coro 5.12;
25use Coro::AIO; 25use Coro::AIO;
26use Coro::Util; 26use Coro::Util;
27use POSIX (); 27use POSIX ();
28use Carp; 28use Carp;
29use Coro::Channel; 29use Coro::Channel;
67 tan => 12, 67 tan => 12,
68); 68);
69 69
70END { system "rm", "-rf", $TMPDIR } 70END { system "rm", "-rf", $TMPDIR }
71 71
72Event->signal (signal => "INT", cb => sub { exit 1 }); 72my $s_INT = EV::signal INT => sub { exit 1 };
73Event->signal (signal => "TERM", cb => sub { exit 1 }); 73my $s_TERM = EV::signal TERM => sub { exit 1 };
74 74
75mkdir $TMPDIR, 0700 75mkdir $TMPDIR, 0700
76 or die "$TMPDIR: $!"; 76 or die "$TMPDIR: $!";
77 77
78sub fork_sub(&) { 78sub fork_sub(&) {
273 fork_sub { 273 fork_sub {
274 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~";
275 system $OPTIPNG, "-i0", "-q", "$other~"; 275 system $OPTIPNG, "-i0", "-q", "$other~";
276 276
277 # reduce smoothfaces >10000 bytes 277 # reduce smoothfaces >10000 bytes
278 # obsolete, no longer required
278 if ($stem =~ /_S\./ && (-s "$other~") > 10000) { 279 if (0 && $stem =~ /_S\./ && (-s "$other~") > 10000) {
279 my $ncolor = 256; 280 my $ncolor = 256;
280 while () { 281 while () {
281 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E"; 282 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
282 system $OPTIPNG, "-i0", "-q", "$other~~"; 283 system $OPTIPNG, "-i0", "-q", "$other~~";
283 last if 10000 > -s "$other~~"; 284 last if 10000 > -s "$other~~";
533 534
534 substr $dir, 0, 1 + length $PATH, ""; 535 substr $dir, 0, 1 + length $PATH, "";
535 536
536 if (my $filter = $meta->{cfutil_filter}) { 537 if (my $filter = $meta->{cfutil_filter}) {
537 if ($filter eq "yaml2json") { 538 if ($filter eq "yaml2json") {
538 $data = JSON::XS::encode_json YAML::Syck::Load $data; 539 $data = JSON::XS::encode_json YAML::XS::Load $data;
539 } elsif ($filter eq "json2json") { 540 } elsif ($filter eq "json2json") {
540 $data = JSON::XS::encode_json JSON::XS->relaxed->utf8->decode ($data); 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;
541 } else { 545 } else {
542 warn "$dir/$file: unknown filter $filter, skipping\n"; 546 warn "$dir/$file: unknown filter $filter, skipping\n";
543 } 547 }
544 } 548 }
545 549
576 580
577 } elsif ($dir =~ /^res(?:\/|$)/) { 581 } elsif ($dir =~ /^res(?:\/|$)/) {
578 if ($file =~ /\.(jpg|png)$/) { 582 if ($file =~ /\.(jpg|png)$/) {
579 $c_res->put ([$path, $file, 0]) # FT_FACE 583 $c_res->put ([$path, $file, 0]) # FT_FACE
580 } elsif ($file =~ /\.(res)$/) { 584 } elsif ($file =~ /\.(res)$/) {
581 $c_res->put ([$path, $file, 7]) # FT_RSRC 585 $c_res->put ([$path, $file, 6]) # FT_RSRC
582 } else { 586 } else {
583 $c_res->put ([$path, $file, undef]); 587 $c_res->put ([$path, $file, undef]);
584 } 588 }
585 589
586 } elsif ($file =~ /\.png$/) { 590 } elsif ($file =~ /\.png$/) {
627 my @a_res = map +(async \&process_res), 1..2; 631 my @a_res = map +(async \&process_res), 1..2;
628 my @a_trs = map +(async \&process_trs), 1..2; 632 my @a_trs = map +(async \&process_trs), 1..2;
629 633
630 IO::AIO::flush; 634 IO::AIO::flush;
631 635
632 $c_res->put (undef) for @a_res; 636 $c_res->shutdown;
633 $c_arc->put (undef) for @a_arc; 637 $c_arc->shutdown;
634 $c_trs->put (undef) for @a_trs; 638 $c_trs->shutdown;
635 639
636 print "start file scan, arc, res processing...\n" if $VERBOSE; 640 print "start file scan, arc, res processing...\n" if $VERBOSE;
637 641
638 $_->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
639 643
640 print "end arc, start png processing...\n" if $VERBOSE; 644 print "end arc, start png processing...\n" if $VERBOSE;
641 645
642 # four png crunchers work fine for my 2x smp machine 646 # eight png crunchers work fine for my 4x smp machine
643 my @a_png = map +(async \&process_png), 1..4; 647 my @a_png = map +(async \&process_png), 1..8;
644 648
645 $_->join for (@a_trs, @a_res, @a_png); 649 $_->join for (@a_trs, @a_res, @a_png);
646 650
647 print "scanning done, processing results...\n" if $VERBOSE; 651 print "scanning done, processing results...\n" if $VERBOSE;
648 { 652 {
703 print "processing facedata...\n" if $VERBOSE; 707 print "processing facedata...\n" if $VERBOSE;
704 while (my ($k, $v) = each %FACEINFO) { 708 while (my ($k, $v) = each %FACEINFO) {
705 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";
706 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";
707 711
708 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";
709 #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";
710 714
711 if (my $magicmap = $v->{magicmap}) { 715 if (my $magicmap = $v->{magicmap}) {
712 $magicmap =~ y/A-Z_\-/a-z/d; 716 $magicmap =~ y/A-Z_\-/a-z/d;
713 $v->{magicmap} = $COLOR{$magicmap}; 717 $v->{magicmap} = $COLOR{$magicmap};

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines