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.61 by root, Thu Aug 30 07:13:17 2007 UTC vs.
Revision 1.92 by root, Tue Oct 5 23:59:10 2010 UTC

1#!@PERL@ 1#!@PERL@
2 2
3use strict; 3#
4# This file is part of Deliantra, the Roguelike Realtime MMORPG.
5#
6# Copyright (©) 2007,2008,2009 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
7#
8# Deliantra is free software: you can redistribute it and/or modify it under
9# the terms of the Affero GNU General Public License as published by the
10# Free Software Foundation, either version 3 of the License, or (at your
11# option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the Affero GNU General Public License
19# and the GNU General Public License along with this program. If not, see
20# <http://www.gnu.org/licenses/>.
21#
22# The authors can be reached via e-mail to <support@deliantra.net>
23#
24
25use common::sense;
4 26
5my $prefix = "@prefix@"; 27my $prefix = "@prefix@";
6my $exec_prefix = "@exec_prefix@"; 28my $exec_prefix = "@exec_prefix@";
7my $datarootdir = "@datarootdir@"; 29my $datarootdir = "@datarootdir@";
8my $DATADIR = "@datadir@/@PACKAGE@"; 30my $DATADIR = "@datadir@/@PACKAGE@";
12my $OPTIPNG = "@OPTIPNG@"; 34my $OPTIPNG = "@OPTIPNG@";
13my $RSYNC = "@RSYNC@"; 35my $RSYNC = "@RSYNC@";
14my $PNGNQ = "@PNGNQ@"; 36my $PNGNQ = "@PNGNQ@";
15 37
16use Getopt::Long; 38use Getopt::Long;
39use File::Temp;
40use POSIX ();
41use Carp;
42
17use Coro::Event; 43use Coro::EV;
18use AnyEvent; 44use AnyEvent;
45use YAML::XS ();
46use JSON::XS ();
19use IO::AIO (); 47use IO::AIO ();
20use File::Temp; 48use Digest::MD5 ();
21use Crossfire; 49
22use Coro; 50use Coro 5.12;
23use Coro::AIO; 51use Coro::AIO;
24use Coro::Util; 52use Coro::Util;
25use POSIX ();
26use Carp;
27use Coro::Channel; 53use Coro::Channel;
28use Coro::Storable; $Storable::canonical = 1; 54use Coro::Storable; $Storable::canonical = 1;
55
56use Deliantra;
29 57
30$SIG{QUIT} = sub { Carp::cluck "QUIT" }; 58$SIG{QUIT} = sub { Carp::cluck "QUIT" };
31 59
32sub usage { 60sub usage {
33 warn <<EOF; 61 warn <<EOF;
46my $VERBOSE = 1; 74my $VERBOSE = 1;
47my $CACHE = 0; 75my $CACHE = 0;
48my $FORCE; 76my $FORCE;
49my $TMPDIR = "/tmp/cfutil$$~"; 77my $TMPDIR = "/tmp/cfutil$$~";
50my $TMPFILE = "aaaa0"; 78my $TMPFILE = "aaaa0";
79my @COMMIT;
51 80
52our %COLOR = ( 81our %COLOR = (
53 black => 0, 82 black => 0,
54 white => 1, 83 white => 1,
55 navy => 2, 84 navy => 2,
65 tan => 12, 94 tan => 12,
66); 95);
67 96
68END { system "rm", "-rf", $TMPDIR } 97END { system "rm", "-rf", $TMPDIR }
69 98
70Event->signal (signal => "INT", cb => sub { exit 1 }); 99my $s_INT = EV::signal INT => sub { exit 1 };
71Event->signal (signal => "TERM", cb => sub { exit 1 }); 100my $s_TERM = EV::signal TERM => sub { exit 1 };
101
102our %hash;
103
104# here we could try to avoid collisions and reduce chksum size further
105sub make_hash($\$\$;$) {
106 my ($id, $dataref, $hashref, $clen) = @_;
107
108 my $hash = substr +(Digest::MD5::md5 $$dataref), 0, $clen || 4;
109
110 if (exists $hash{$hash}) {
111 # hash collision, but some files are simply identical
112 if (${$hash{$hash}[1]} ne $$dataref) {
113 warn "hash collision $hash{$hash}[0] vs. $id\n";
114 exit 1;
115 } else {
116 print "$hash{$hash}[0] and $id are identical (which is fine).\n" if $VERBOSE >= 3;
117 }
118 }
119 $hash{$hash} = [$id, $dataref, $hashref];
120
121 $$hashref = $hash;
122}
72 123
73mkdir $TMPDIR, 0700 124mkdir $TMPDIR, 0700
74 or die "$TMPDIR: $!"; 125 or die "$TMPDIR: $!";
75 126
76sub fork_sub(&) { 127sub fork_sub(&) {
96 if (!-f "$path/regions") { 147 if (!-f "$path/regions") {
97 warn "'$path' does not look like a maps directory ('regions' file is missing).\n"; 148 warn "'$path' does not look like a maps directory ('regions' file is missing).\n";
98 exit 1 unless $FORCE; 149 exit 1 unless $FORCE;
99 } 150 }
100 151
101 system $RSYNC, "-a", "--chmod=u=rwX,go=rX", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded" 152 system $RSYNC, "-av", "--chmod=u=rwX,go=rX",
153 "$path/.", "$DATADIR/maps/.",
154 "--exclude", "CVS", "--exclude", "/world-precomposed",
155 "--delete", "--delete-excluded"
102 and die "map installation failed.\n"; 156 and die "map installation failed.\n";
103 157
104 print "maps installed successfully.\n"; 158 print "maps installed successfully.\n";
159}
160
161our %WALL_SUFFIX = (
162 "_0" => "⬤",
163 "_1_3" => "╸",
164 "_1_4" => "╺",
165 "_2_1_2" => "━",
166
167 "_1_2" => "╹",
168 "_2_2_4" => "┛",
169 "_2_2_1" => "┗",
170 "_3_1" => "┻",
171
172 "_1_1" => "╻",
173 "_2_2_3" => "┓",
174 "_2_2_2" => "┏",
175 "_3_3" => "┳",
176
177 "_2_1_1" => "┃",
178 "_3_4" => "┫",
179 "_3_2" => "┣",
180 "_4" => "╋",
181);
182
183sub autoglyph {
184 my ($stem, $face) = @_;
185
186 if ($stem =~ /^wall\/|Nimwall/) {
187 if ($stem =~ /((?:_[0-4])+).x11/) {
188 return $WALL_SUFFIX{$1} if exists $WALL_SUFFIX{$1};
189 }
190
191 "+"
192
193 } elsif ($stem =~ /^floor\/|^ground\/|Nimfloor/) {
194 "."
195
196 } elsif ($stem =~ /^player\//) {
197 "\@"
198
199 } else {
200 substr $stem, 0, 1
201 }
105} 202}
106 203
107{ 204{
108 our %ANIMINFO; 205 our %ANIMINFO;
109 our %FACEINFO; 206 our %FACEINFO;
120 our $c_trs = new Coro::Channel; 217 our $c_trs = new Coro::Channel;
121 our $c_res = new Coro::Channel; 218 our $c_res = new Coro::Channel;
122 219
123 our @c_png; 220 our @c_png;
124 221
125 sub commit_png($$$) { 222 sub commit_png($$$$) {
126 my ($name, $data, $T) = @_; 223 my ($stem, $name, $data, $T) = @_;
127 224
225 $FACEINFO{$name}{"stem"} = substr $stem, 1 + length $PATH;
128 $FACEINFO{$name}{"data$T"} = $data; 226 $FACEINFO{$name}{"data$T"} = $data;
129 } 227 }
130 228
131 sub process_png { 229 sub process_png {
132 while (@c_png) { 230 while (@c_png) {
268 fork_sub { 366 fork_sub {
269 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~"; 367 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~";
270 system $OPTIPNG, "-i0", "-q", "$other~"; 368 system $OPTIPNG, "-i0", "-q", "$other~";
271 369
272 # reduce smoothfaces >10000 bytes 370 # reduce smoothfaces >10000 bytes
371 # obsolete, no longer required
273 if ($stem =~ /_S\./ && (-s "$other~") > 10000) { 372 if (0 && $stem =~ /_S\./ && (-s "$other~") > 10000) {
274 my $ncolor = 256; 373 my $ncolor = 256;
275 while () { 374 while () {
276 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E"; 375 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
277 system $OPTIPNG, "-i0", "-q", "$other~~"; 376 system $OPTIPNG, "-i0", "-q", "$other~~";
278 last if 10000 > -s "$other~~"; 377 last if 10000 > -s "$other~~";
349 448
350 if (0 > aio_load $file, $tile) { 449 if (0 > aio_load $file, $tile) {
351 die "$path: unable to read tile +$x+$y, aborting.\n"; 450 die "$path: unable to read tile +$x+$y, aborting.\n";
352 } 451 }
353 IO::AIO::aio_unlink $file unless $CACHE; 452 IO::AIO::aio_unlink $file unless $CACHE;
354 commit_png $x|$y ? "$face+$x+$y" : $face, $tile, $T; 453 commit_png $stem, $x|$y ? "$face+$x+$y" : $face, $tile, $T;
355 } 454 }
356 } else { 455 } else {
357 # use as-is (either small, use smooth) 456 # use as-is (either small, use smooth)
358 commit_png $face, $png, $T; 457 commit_png $stem, $face, $png, $T;
359 } 458 }
360 459
361 aio_unlink $path if $delete; 460 aio_unlink $path if $delete;
362 } 461 }
363 } 462 }
374 push @ARC, $o; 473 push @ARC, $o;
375 for (my $m = $o; $m; $m = $m->{more}) { 474 for (my $m = $o; $m; $m = $m->{more}) {
376 $ARC{$m->{_name}} = $m; 475 $ARC{$m->{_name}} = $m;
377 } 476 }
378 477
379 $o->{editor_folder} = $dir; 478 $o->{editor_folder} ||= "\x00$dir"; # horrible kludge
380 479
381 my $visibility = delete $o->{visibility}; 480 my $visibility = delete $o->{visibility};
382 my $magicmap = delete $o->{magicmap}; 481 my $magicmap = delete $o->{magicmap};
482 my $glyph = delete $o->{glyph};
383 483
384 # find upper left corner :/ 484 # find upper left corner :/
385 # omg, this is sooo broken 485 # omg, this is sooo broken
386 my ($dx, $dy); 486 my ($dx, $dy);
387 for (my $o = $o; $o; $o = $o->{more}) { 487 for (my $o = $o; $o; $o = $o->{more}) {
397 497
398 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face}; 498 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
399 499
400 $visibility = delete $o->{visibility} if exists $o->{visibility}; 500 $visibility = delete $o->{visibility} if exists $o->{visibility};
401 $magicmap = delete $o->{magicmap} if exists $o->{magicmap}; 501 $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
502 $glyph = delete $o->{glyph} if exists $o->{glyph};
402 503
403 my $anim = delete $o->{anim}; 504 my $anim = delete $o->{anim};
404 505
405 if ($anim) { 506 if ($anim) {
406 # possibly add $ext to the animation name to avoid 507 # possibly add $ext to the animation name to avoid
437 538
438 next if $face =~ /^blank.x11$|^empty.x11$/; 539 next if $face =~ /^blank.x11$|^empty.x11$/;
439 540
440 $info->{visibility} = $visibility if defined $visibility; 541 $info->{visibility} = $visibility if defined $visibility;
441 $info->{magicmap} = $magicmap if defined $magicmap; 542 $info->{magicmap} = $magicmap if defined $magicmap;
543 $info->{glyph} = $glyph if defined $glyph;
442 } 544 }
443 545
444 if (my $smooth = delete $o->{smoothface}) { 546 if (my $smooth = delete $o->{smoothface}) {
445 my %kv = split /\s+/, $smooth; 547 my %kv = split /\s+/, $smooth;
446 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support 548 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
494 my ($dir, $file, $type) = @$job; 596 my ($dir, $file, $type) = @$job;
495 597
496 my $data; 598 my $data;
497 aio_load "$dir/$file", $data; 599 aio_load "$dir/$file", $data;
498 600
499
500 my $meta = load_cached "$dir/meta", sub { JSON::XS->new->utf8->relaxed->decode (shift) }; 601 my $meta = load_cached "$dir/meta", sub { JSON::XS->new->utf8->relaxed->decode (shift) };
501 602
502 utf8::decode $dir; 603 utf8::decode $dir;
503 utf8::decode $file; 604 utf8::decode $file;
504 605
516 if ($meta->{license} =~ s/^#//) { 617 if ($meta->{license} =~ s/^#//) {
517 $meta->{license} = ({ 618 $meta->{license} = ({
518 "pd" => "Public Domain", 619 "pd" => "Public Domain",
519 "gpl" => "GNU General Public License, version 3.0 or any later", 620 "gpl" => "GNU General Public License, version 3.0 or any later",
520 "cc/by/2.0" => "Licensed under Creative Commons Attribution 2.0 http://creativecommons.org/licenses/by/2.0/", 621 "cc/by/2.0" => "Licensed under Creative Commons Attribution 2.0 http://creativecommons.org/licenses/by/2.0/",
622 "cc/by/2.1" => "Licensed under Creative Commons Attribution 2.1 http://creativecommons.org/licenses/by/2.1/",
521 "cc/by/2.5" => "Licensed under Creative Commons Attribution 2.5 http://creativecommons.org/licenses/by/2.5/", 623 "cc/by/2.5" => "Licensed under Creative Commons Attribution 2.5 http://creativecommons.org/licenses/by/2.5/",
522 "cc/by/3.0" => "Licensed under Creative Commons Attribution 3.0 http://creativecommons.org/licenses/by/3.0/", 624 "cc/by/3.0" => "Licensed under Creative Commons Attribution 3.0 http://creativecommons.org/licenses/by/3.0/",
523 })->{$meta->{license}} 625 })->{$meta->{license}}
524 || warn "$dir/$file: license tag '$meta->{license}' not found."; 626 || warn "$dir/$file: license tag '$meta->{license}' not found.";
525 } 627 }
526 628
629 if (!exists $meta->{author} && $meta->{source} =~ m%^http://www.jamendo.com/en/artist/(.*)$%) {
630 ($meta->{author} = $1) =~ s/_/ /g;
631 }
632
527 $file =~ s/\.res$//; 633 $file =~ s/\.res$//;
528 $file =~ s/\.(ogg|wav|jpg|png)$//; 634 $file =~ s/\.(ogg|wav|jpg|png)$//;
529 635
530 substr $dir, 0, 1 + length $PATH, ""; 636 substr $dir, 0, 1 + length $PATH, "";
531 637
638 if (my $filter = $meta->{cfutil_filter}) {
639 if ($filter eq "yaml2json") {
640 $data = JSON::XS::encode_json YAML::XS::Load $data;
641 } elsif ($filter eq "json2json") {
642 $data = JSON::XS::encode_json JSON::XS->relaxed->utf8->decode ($data);
643 } elsif ($filter eq "perl2json") {
644 $data = eval $data; die if $@;
645 $data = JSON::XS::encode_json $data;
646 } else {
647 warn "$dir/$file: unknown filter $filter, skipping\n";
648 }
649 }
650
532 $RESOURCE{"$dir/$file"} = { 651 $RESOURCE{"$dir/$file"} = {
533 type => (delete $meta->{type}) || $type, 652 type => (exists $meta->{type} ? delete $meta->{type} : $type),
534 data => $data, 653 data => $data,
535 %$meta ? (meta => $meta) : (), 654 %$meta ? (meta => $meta) : (),
536 }; 655 };
537 } 656 }
538 } 657 }
544 IO::AIO::aioreq_pri 4; 663 IO::AIO::aioreq_pri 4;
545 IO::AIO::aio_scandir $path, 4, sub { 664 IO::AIO::aio_scandir $path, 4, sub {
546 my ($dirs, $nondirs) = @_; 665 my ($dirs, $nondirs) = @_;
547 666
548 find_files "$path/$_" 667 find_files "$path/$_"
549 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs; 668 for grep $_ !~ /^(?:CVS|dev|\..*)$/, @$dirs;
550 669
551 my $dir = $path; 670 my $dir = $path;
552 substr $dir, 0, 1 + length $PATH, ""; 671 substr $dir, 0, 1 + length $PATH, "";
553 672
554 for my $file (@$nondirs) { 673 for my $file (@$nondirs) {
559 } elsif ($dir =~ /^sound(?:\/|$)/) { 678 } elsif ($dir =~ /^sound(?:\/|$)/) {
560 $c_res->put ([$path, $file, 5]) # FT_SOUND 679 $c_res->put ([$path, $file, 5]) # FT_SOUND
561 if $file =~ /\.(wav|ogg)$/; 680 if $file =~ /\.(wav|ogg)$/;
562 681
563 } elsif ($dir =~ /^res(?:\/|$)/) { 682 } elsif ($dir =~ /^res(?:\/|$)/) {
683 if ($file =~ /\.(jpg|png)$/) {
564 $c_res->put ([$path, $file, 0]) # FT_FACE 684 $c_res->put ([$path, $file, 0]) # FT_FACE
565 if $file =~ /\.(jpg|png)$/; 685 } elsif ($file =~ /\.(res)$/) {
566 $c_res->put ([$path, $file, 7]) # FT_RSRC 686 $c_res->put ([$path, $file, 6]) # FT_RSRC
567 if $file =~ /\.(res)$/; 687 } else {
688 $c_res->put ([$path, $file, undef]);
689 }
568 690
569 } elsif ($file =~ /\.png$/) { 691 } elsif ($file =~ /\.png$/) {
570 push @c_png, ["$path/$file", 0]; 692 push @c_png, ["$path/$file", 0];
571 693
572 } elsif ($file =~ /\.trs$/) { 694 } elsif ($file =~ /\.trs$/) {
578 } else { 700 } else {
579 warn "ignoring $path/$file\n" if $VERBOSE >= 3; 701 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
580 } 702 }
581 } 703 }
582 }; 704 };
705 }
706
707 sub generate_plurals {
708# use Lingua::EN::Inflect ();
709# Lingua::EN::Inflect::classical;
710# Lingua::EN::Inflect::def_noun '(.*)staff' => '$1staves'; # policy
711# Lingua::EN::Inflect::def_noun '(.*)boots' => '$1boots'; # hack
712#
713# for my $a (@ARC) {
714# my $name = $a->{name} || $a->{_name};
715#
716# next unless $a->{name_pl};
717# next if $a->{invisible};
718# next if $a->{is_floor};
719# next if $a->{no_pick};
720#
721# my $test = Lingua::EN::Inflect::PL_N_eq $name, Lingua::EN::Inflect::PL $name;
722# my $pl = $test =~ /^(?:eq|p:.)$/
723# ? $name
724# : Lingua::EN::Inflect::PL $name;
725#
726# if ($pl ne $a->{name_pl}) {
727# warn "$a->{_name}: plural differs, $pl vs $a->{name_pl}\n";
728# }
729# }
583 } 730 }
584 731
585 sub inst_arch($) { 732 sub inst_arch($) {
586 my (undef, $path) = @_; 733 my (undef, $path) = @_;
587 734
610 my @a_res = map +(async \&process_res), 1..2; 757 my @a_res = map +(async \&process_res), 1..2;
611 my @a_trs = map +(async \&process_trs), 1..2; 758 my @a_trs = map +(async \&process_trs), 1..2;
612 759
613 IO::AIO::flush; 760 IO::AIO::flush;
614 761
615 $c_res->put (undef) for @a_res; 762 $c_res->shutdown;
616 $c_arc->put (undef) for @a_arc; 763 $c_arc->shutdown;
617 $c_trs->put (undef) for @a_trs; 764 $c_trs->shutdown;
618 765
619 print "start file scan, arc, res processing...\n" if $VERBOSE; 766 print "start file scan, arc, res processing...\n" if $VERBOSE;
620 767
621 $_->join for @a_arc; # need to parse all archetypes before png processing 768 $_->join for @a_arc; # need to parse all archetypes before png processing
622 769
623 print "end arc, start png processing...\n" if $VERBOSE; 770 print "end arc, start png processing...\n" if $VERBOSE;
624 771
625 # four png crunchers work fine for my 2x smp machine 772 # eight png crunchers work fine for my 4x smp machine
626 my @a_png = map +(async \&process_png), 1..4; 773 my @a_png = map +(async \&process_png), 1..8;
627 774
628 $_->join for (@a_trs, @a_res, @a_png); 775 $_->join for (@a_trs, @a_res, @a_png);
629 776
630 print "scanning done, processing results...\n" if $VERBOSE; 777 print "scanning done, processing results...\n" if $VERBOSE;
631 { 778 {
632 # remove path prefix from editor_folder 779 # remove path prefix from editor_folder
780 $_->{editor_folder} =~ /^\x00/
633 substr $_->{editor_folder}, 0, 1 + length $path, "" 781 and substr $_->{editor_folder}, 0, 2 + length $path, ""
634 for values %ARC; 782 for values %ARC;
635 783
636 print "resolving inheritance tree...\n" if $VERBOSE; 784 print "resolving inheritance tree...\n" if $VERBOSE;
637 # resolve inherit 785 # resolve inherit
638 while () { 786 while () {
639 my $progress; 787 my $progress;
640 my $loop; 788 my $loop;
641 789
642 for my $o (values %ARC) { 790 for my $o (values %ARC) {
643 if (my $other = $o->{inherit}) { 791 for my $other (split /,/, $o->{inherit}) {
644 if (my $s = $ARC{$other}) { 792 if (my $s = $ARC{$other}) {
645 if ($s->{inherit}) { 793 if ($s->{inherit}) {
646 $loop = $s; 794 $loop = $s;
647 } else { 795 } else {
648 delete $o->{inherit}; 796 delete $o->{inherit};
667 } 815 }
668 816
669 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit 817 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit
670 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC; 818 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC;
671 819
820 print "generating plurals...\n" if $VERBOSE;
821 generate_plurals;
822
672 print "writing archetypes...\n" if $VERBOSE; 823 printf "writing %d archetypes...\n", scalar @ARC if $VERBOSE;
673 open my $fh, ">:utf8", "$DATADIR/archetypes~" 824 open my $fh, ">:utf8", "$DATADIR/archetypes~"
674 or die "$DATADIR/archetypes~: $!"; 825 or die "$DATADIR/archetypes~: $!";
675 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC]; 826 print $fh Deliantra::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
676 } 827 }
677 828
678 { 829 {
679 print "writing treasures...\n" if $VERBOSE; 830 printf "writing treasures (%d octets)...\n", length $TRS if $VERBOSE;
680 open my $fh, ">:utf8", "$DATADIR/treasures~" 831 open my $fh, ">:utf8", "$DATADIR/treasures~"
681 or die "$DATADIR/treasures~: $!"; 832 or die "$DATADIR/treasures~: $!";
682 print $fh $TRS; 833 print $fh $TRS;
683 } 834 }
684 835
686 print "processing facedata...\n" if $VERBOSE; 837 print "processing facedata...\n" if $VERBOSE;
687 while (my ($k, $v) = each %FACEINFO) { 838 while (my ($k, $v) = each %FACEINFO) {
688 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n"; 839 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n";
689 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n"; 840 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n";
690 841
842 make_hash $k, $v->{data32}, $v->{hash32};
843 make_hash $k, $v->{data64}, $v->{hash64};
844
691 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n"; 845 #length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
692 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n"; 846 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
693 847
694 if (my $magicmap = $v->{magicmap}) { 848 if (my $magicmap = $v->{magicmap}) {
695 $magicmap =~ y/A-Z_\-/a-z/d; 849 $magicmap =~ y/A-Z_\-/a-z/d;
696 $v->{magicmap} = $COLOR{$magicmap}; 850 $v->{magicmap} = $COLOR{$magicmap};
697 } 851 }
698 852
853 my $stem = delete $v->{stem};
854 $v->{glyph} //= autoglyph $stem, $v;
855 $v->{glyph} = (chr $v->{magicmap}) . $v->{glyph};
856
699 delete $v->{arc}; 857 delete $v->{arc};
700 } 858 }
701 859
702 print "writing facedata...\n" if $VERBOSE; 860 print "processing resources...\n" if $VERBOSE;
861 my $enc = JSON::XS->new->utf8->canonical->relaxed;
862 while (my ($k, $v) = each %RESOURCE) {
863
864 if ($v->{meta} && $v->{meta}{datadir}) {
865 delete $RESOURCE{$k};
866
867 $k =~ s/^res\/// or die "$k: datadir files must be in res/";
868
869 printf "writing $k (%d octets)...\n", length $v->{data} if $VERBOSE;
870 open my $fh, ">:raw", "$DATADIR/$k~"
871 or die "$DATADIR/$k~: $!";
872 syswrite $fh, $v->{data};
873 push @COMMIT, $k;
874
875 } else {
876 if ($v->{type} & 1) {
877 # prepend meta info
878
879 my $meta = $enc->encode ({
880 name => $k,
881 %{ $v->{meta} || {} },
882 });
883
884 $v->{data} = pack "(w/a*)*", $meta, $v->{data};
885 }
886
887 make_hash $k, $v->{data}, $v->{hash}, 6; # 6 for the benefit of existing clients
888 }
889 }
890
891 printf "writing facedata (%d faces, %d anims, %d resources)...\n",
892 scalar keys %FACEINFO,
893 scalar keys %ANIMINFO,
894 scalar keys %RESOURCE
895 if $VERBOSE;
896
703 open my $fh, ">:perlio", "$DATADIR/facedata~" 897 open my $fh, ">:perlio", "$DATADIR/facedata~"
704 or die "$DATADIR/facedata~: $!"; 898 or die "$DATADIR/facedata~: $!";
705 899
706 print $fh freeze { 900 print $fh nfreeze {
707 version => 2, 901 version => 2,
708 faceinfo => \%FACEINFO, 902 faceinfo => \%FACEINFO,
709 animinfo => \%ANIMINFO, 903 animinfo => \%ANIMINFO,
710 resource => \%RESOURCE, 904 resource => \%RESOURCE,
711 }; 905 };
906
712 } 907 }
713 908
714 print "committing files...\n" if $VERBOSE; 909 print "committing files...\n" if $VERBOSE;
715 910
716 for (qw(archetypes facedata treasures)) { 911 for (qw(archetypes facedata treasures), @COMMIT) {
717 chmod 0644, "$DATADIR/$_~"; 912 chmod 0644, "$DATADIR/$_~";
718 rename "$DATADIR/$_~", "$DATADIR/$_" 913 rename "$DATADIR/$_~", "$DATADIR/$_"
719 or die "$DATADIR/$_: $!"; 914 or die "$DATADIR/$_: $!";
720 } 915 }
721 916

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines