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.35 by root, Sun Jun 3 15:32:51 2007 UTC vs.
Revision 1.72 by root, Mon Oct 12 14:01:00 2009 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@"; 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;
26use Coro::Util;
24use POSIX (); 27use POSIX ();
25use Digest::MD5; 28use Carp;
29use Coro::Channel;
26use Coro::Storable; $Storable::canonical = 1; 30use Coro::Storable; $Storable::canonical = 1;
31
32$SIG{QUIT} = sub { Carp::cluck "QUIT" };
27 33
28sub usage { 34sub usage {
29 warn <<EOF; 35 warn <<EOF;
30Usage: cfutil [-v] [-q] [--force] [--cache] 36Usage: cfutil [-v] [-q] [--force] [--cache]
31 [--install-arch path] 37 [--install-arch path]
61 tan => 12, 67 tan => 12,
62); 68);
63 69
64END { system "rm", "-rf", $TMPDIR } 70END { system "rm", "-rf", $TMPDIR }
65 71
66Event->signal (signal => "INT", cb => sub { exit 1 }); 72my $s_INT = EV::signal INT => sub { exit 1 };
67Event->signal (signal => "TERM", cb => sub { exit 1 }); 73my $s_TERM = EV::signal TERM => sub { exit 1 };
68 74
69mkdir $TMPDIR, 0700 75mkdir $TMPDIR, 0700
70 or die "$TMPDIR: $!"; 76 or die "$TMPDIR: $!";
71 77
72sub fork_sub(&) { 78sub fork_sub(&) {
92 if (!-f "$path/regions") { 98 if (!-f "$path/regions") {
93 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";
94 exit 1 unless $FORCE; 100 exit 1 unless $FORCE;
95 } 101 }
96 102
97 system $RSYNC, "-av", "$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"
98 and die "map installation failed.\n"; 107 and die "map installation failed.\n";
99 108
100 print "maps installed successfully.\n"; 109 print "maps installed successfully.\n";
101} 110}
102 111
103{ 112{
104 our %ANIMINFO; 113 our %ANIMINFO;
105 our %FACEINFO; 114 our %FACEINFO;
115 our %RESOURCE;
106 our @ARC; 116 our @ARC;
107 our %ARC; 117 our %ARC;
108 our $TRS; 118 our $TRS;
109 our $NFILE; 119 our $NFILE;
120 our $PATH;
110 121
111 our $QUANTIZE = "+dither -colorspace RGB -colors 256"; 122 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
112 123
113 our (@png, @trs, @arc); # files we are interested in 124 our $c_arc = new Coro::Channel;
125 our $c_trs = new Coro::Channel;
126 our $c_res = new Coro::Channel;
127
128 our @c_png;
114 129
115 sub commit_png($$$) { 130 sub commit_png($$$) {
116 my ($name, $data, $T) = @_; 131 my ($name, $data, $T) = @_;
117 132
118 $FACEINFO{$name}{"data$T"} = $data; 133 $FACEINFO{$name}{"data$T"} = $data;
119 } 134 }
120 135
121 sub process_png { 136 sub process_png {
122 while (@png) { 137 while (@c_png) {
123 my ($path, $delete) = @{pop @png}; 138 my ($path, $delete) = @{pop @c_png};
124 139
125 my $png; 140 my $png;
126 aio_lstat $path; 141 aio_lstat $path;
127 my ($size, $mtime) = (stat _)[7,9]; 142 my ($size, $mtime) = (stat _)[7,9];
128 143
159 if ($w % $T || $h % $T) { 174 if ($w % $T || $h % $T) {
160 warn "$path: weird png size ($w $h), skipping.\n"; 175 warn "$path: weird png size ($w $h), skipping.\n";
161 next; 176 next;
162 } 177 }
163 178
179 (my $base = $stem) =~ s/^.*\///;
180
181 my $fi = $FACEINFO{$base};
182 unless ($fi) {
183 #warn "$path: <$base> not referenced by any archetype, skipping.\n";
184 #next;
185 }
186
187 my $arc = $fi->{arc} || { };
188
164 unless ($path =~ /~$/) { 189 unless ($path =~ /~$/) {
165 # possibly enlarge 190 # possibly enlarge
166 if (0 > aio_stat "$stem.64x64.png") { 191 if (0 > aio_stat "$stem.64x64.png") {
167 my $other = "$stem.64x64.png~"; 192 my $other = "$stem.64x64.png~";
168 193
169 if (0 > aio_lstat $other or (-M _) > (-M $path)) { 194 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
170 my $wrap = 0; # for the time being
171 fork_sub { 195 fork_sub {
196 my $CROP;
197 my $SRC = "png:\Q$path\E";
198
199 my $is_floor = $arc->{is_floor};
200 my $is_wall = 0;
201
202 my ($wall_pfx, $wall_dir, $wall_sfx);
203
204 if (
205 !$is_floor
206 && !$arc->{alive}
207 && $arc->{move_block} eq "all"
208 && $path =~ /^(.*_)([0-9A-F])(\.x11.*\.png)$/
209 ) {
210 ($wall_pfx, $wall_dir, $wall_sfx) = ($1, hex $2, $3);
211
212 unless (grep { !-e sprintf "%s%X%s", $wall_pfx, $_, $wall_sfx } 0..15) {
213 $is_wall = 1;
214 }
215 }
216
217 if ($is_wall || $is_floor) {
218 # add a 4px border and add other images around it
219 $CROP = "-shave 8x8 +repage";
220
221 $w += 8;
222 $h += 8;
223
224 $SRC = "-size ${w}x${h} xc:transparent";
225 $SRC .= " png:\Q$path\E -geometry +4+4 -composite";
226
227 # 8 surrounding images
228 for (
229 # x y b r0 r1
230 [-1, -1, 0, 6],
231 [ 0, -1, 1, 10, 14],
232 [+1, -1, 0, 12],
233
234 [-1, 0, 8, 5, 7],
235 #
236 [+1, 0, 2, 5, 13],
237
238 [-1, +1, 0, 3],
239 [ 0, +1, 4, 10, 11],
240 [+1, +1, 0, 9],
241 ) {
242 my ($x, $y, $d, $r0, $r1) = @$_;
243
244 my $tile = $is_floor ? $path
245 : $is_wall ? sprintf "%s%X%s", $wall_pfx, ($wall_dir & $d) ? $r1 : $r0, $wall_sfx
246 : die;
247
248 $SRC .= sprintf " png:%s -geometry %+d%+d -composite",
249 "\Q$tile",
250 $x * ($w - 8) + 4,
251 $y * ($h - 8) + 4;
252 }
253 }
254
172 system "convert png:\Q$path\E -depth 8 rgba:-" 255 system "convert -depth 8 $SRC rgba:-"
173 . "| $exec_prefix/bin/cfhq2xa $w $h $wrap" 256 . "| $exec_prefix/bin/cfhq2xa $w $h 0"
174 . "| convert -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $QUANTIZE -quality 00 png32:\Q$other\E~" 257 . "| convert -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $CROP $QUANTIZE -quality 00 png32:\Q$other\E~"
175 and die "convert/hq2xa pipeline error: status $? ($!)"; 258 and die "convert/cfhq2xa pipeline error: status $? ($!)";
176 system $OPTIPNG, "-i0", "-q", "$other~"; 259 system $OPTIPNG, "-i0", "-q", "$other~";
177 die "$other~ has zero size, aborting." unless -s "$other~"; 260 die "$other~ has zero size, aborting." unless -s "$other~";
178 rename "$other~", $other; 261 rename "$other~", $other;
179 }; 262 };
180 } 263 }
181 264
182 push @png, [$other, !$CACHE]; 265 push @c_png, [$other, !$CACHE];
183 } 266 }
184 267
185 # possibly scale down 268 # possibly scale down
186 if (0 > aio_stat "$stem.32x32.png") { 269 if (0 > aio_stat "$stem.32x32.png") {
187 my $other = "$stem.32x32.png~"; 270 my $other = "$stem.32x32.png~";
190 fork_sub { 273 fork_sub {
191 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~";
192 system $OPTIPNG, "-i0", "-q", "$other~"; 275 system $OPTIPNG, "-i0", "-q", "$other~";
193 276
194 # reduce smoothfaces >10000 bytes 277 # reduce smoothfaces >10000 bytes
278 # obsolete, no longer required
195 if ($stem =~ /_S\./ && (-s "$other~") > 10000) { 279 if (0 && $stem =~ /_S\./ && (-s "$other~") > 10000) {
196 my $ncolor = 256; 280 my $ncolor = 256;
197 while () { 281 while () {
198 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E"; 282 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
199 system $OPTIPNG, "-i0", "-q", "$other~~"; 283 system $OPTIPNG, "-i0", "-q", "$other~~";
200 last if 10000 > -s "$other~~"; 284 last if 10000 > -s "$other~~";
212 rename "$other~", $other; 296 rename "$other~", $other;
213 }; 297 };
214 } 298 }
215 299
216 #warn "scaled down $path to $other\n";#d# 300 #warn "scaled down $path to $other\n";#d#
217 push @png, [$other, !$CACHE]; 301 push @c_png, [$other, !$CACHE];
218 } 302 }
219 } 303 }
220 304
221 (my $face = $stem) =~ s/^.*\///; 305 (my $face = $stem) =~ s/^.*\///;
222 306
283 aio_unlink $path if $delete; 367 aio_unlink $path if $delete;
284 } 368 }
285 } 369 }
286 370
287 sub process_arc { 371 sub process_arc {
288 while (@arc) { 372 while (my $job = $c_arc->get) {
289 my ($dir, $file) = @{pop @arc}; 373 my ($dir, $file) = @$job;
290 374
291 my $arc; 375 my $arc;
292 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/ 376 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/
293 377
294 my $arc = read_arch "$dir/$file"; 378 my $arc = read_arch "$dir/$file";
346 facings => $facings, 430 facings => $facings,
347 frames => \@frames, 431 frames => \@frames,
348 }; 432 };
349 } 433 }
350 434
351 for my $face ($o->{face} || (), @{$anim || []}) { 435 for ($o->{face} || (), @{$anim || []}) {
352 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/; 436 next if /^facings\s/;
353 437
438 my $face = $_;
439 $face =~ s/\+\d+\+\d+$//; # remove tile offset coordinates
440
354 my $info = $FACEINFO{$face} ||= {}; 441 my $info = $FACEINFO{$face} ||= { };
442 $info->{arc} = $o;
443
444 next if $face =~ /^blank.x11$|^empty.x11$/;
355 445
356 $info->{visibility} = $visibility if defined $visibility; 446 $info->{visibility} = $visibility if defined $visibility;
357 $info->{magicmap} = $magicmap if defined $magicmap; 447 $info->{magicmap} = $magicmap if defined $magicmap;
358 } 448 }
359 449
360 if (my $smooth = delete $o->{smoothface}) { 450 if (my $smooth = delete $o->{smoothface}) {
361 my %kv =split /\s+/, $smooth; 451 my %kv = split /\s+/, $smooth;
362 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support 452 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
363 while (my ($face, $smooth) = each %kv) { 453 while (my ($face, $smooth) = each %kv) {
454 $FACEINFO{$smooth}{arc} = $o;
455
364 $FACEINFO{$face}{smooth} = $smooth; 456 $FACEINFO{$face}{smooth} = $smooth;
365 $FACEINFO{$face}{smoothlevel} = $level; 457 $FACEINFO{$face}{smoothlevel} = $level;
366 } 458 }
367 } 459 }
368 } 460 }
369 } 461 }
370 } 462 }
371 } 463 }
372 464
373 sub process_trs { 465 sub process_trs {
374 while (@trs) { 466 while (my $job = $c_trs->get) {
375 my ($dir, $file) = @{pop @trs}; 467 my ($dir, $file) = @$job;
376 my $path = "$dir/$file"; 468 my $path = "$dir/$file";
377 469
378 my $trs; 470 my $trs;
379 if (0 > aio_load $path, $trs) { 471 if (0 > aio_load $path, $trs) {
380 warn "$path: $!, skipping.\n"; 472 warn "$path: $!, skipping.\n";
383 475
384 $TRS .= $trs; 476 $TRS .= $trs;
385 } 477 }
386 } 478 }
387 479
480 my %FILECACHE;
481
482 sub load_cached($;$) {
483 unless (exists $FILECACHE{$_[0]}) {
484 my $data;
485 if (0 < aio_load $_[0], $data) {
486 if ($_[1]) {
487 $data = eval { $_[1]->($data) };
488 warn "$_[0]: $@" if $@;
489 }
490 }
491
492 $FILECACHE{$_[0]} = $data;
493 }
494
495 $FILECACHE{$_[0]}
496 }
497
498 sub process_res {
499 while (my $job = $c_res->get) {
500 my ($dir, $file, $type) = @$job;
501
502 my $data;
503 aio_load "$dir/$file", $data;
504
505 my $meta = load_cached "$dir/meta", sub { JSON::XS->new->utf8->relaxed->decode (shift) };
506
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 }
515
516 $meta = {
517 %{ $meta->{"" } || {} },
518 %{ $meta->{$file} || {} },
519 };
520
521 if ($meta->{license} =~ s/^#//) {
522 $meta->{license} = ({
523 "pd" => "Public Domain",
524 "gpl" => "GNU General Public License, version 3.0 or any later",
525 "cc/by/2.0" => "Licensed under Creative Commons Attribution 2.0 http://creativecommons.org/licenses/by/2.0/",
526 "cc/by/2.5" => "Licensed under Creative Commons Attribution 2.5 http://creativecommons.org/licenses/by/2.5/",
527 "cc/by/3.0" => "Licensed under Creative Commons Attribution 3.0 http://creativecommons.org/licenses/by/3.0/",
528 })->{$meta->{license}}
529 || warn "$dir/$file: license tag '$meta->{license}' not found.";
530 }
531
532 $file =~ s/\.res$//;
533 $file =~ s/\.(ogg|wav|jpg|png)$//;
534
535 substr $dir, 0, 1 + length $PATH, "";
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
550 $RESOURCE{"$dir/$file"} = {
551 type => (exists $meta->{type} ? delete $meta->{type} : $type),
552 data => $data,
553 %$meta ? (meta => $meta) : (),
554 };
555 }
556 }
557
388 sub find_files; 558 sub find_files;
389 sub find_files { 559 sub find_files {
390 my ($path) = @_; 560 my ($path) = @_;
391 561
392 IO::AIO::aioreq_pri 4; 562 IO::AIO::aioreq_pri 4;
394 my ($dirs, $nondirs) = @_; 564 my ($dirs, $nondirs) = @_;
395 565
396 find_files "$path/$_" 566 find_files "$path/$_"
397 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs; 567 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs;
398 568
569 my $dir = $path;
570 substr $dir, 0, 1 + length $PATH, "";
571
399 for my $file (@$nondirs) { 572 for my $file (@$nondirs) {
573 if ($dir =~ /^music(?:\/|$)/) {
574 $c_res->put ([$path, $file, 3]) # FT_MUSIC
575 if $file =~ /\.(ogg)$/;
576
577 } elsif ($dir =~ /^sound(?:\/|$)/) {
578 $c_res->put ([$path, $file, 5]) # FT_SOUND
579 if $file =~ /\.(wav|ogg)$/;
580
581 } elsif ($dir =~ /^res(?:\/|$)/) {
582 if ($file =~ /\.(jpg|png)$/) {
583 $c_res->put ([$path, $file, 0]) # FT_FACE
584 } elsif ($file =~ /\.(res)$/) {
585 $c_res->put ([$path, $file, 6]) # FT_RSRC
586 } else {
587 $c_res->put ([$path, $file, undef]);
588 }
589
400 if ($file =~ /\.png$/) { 590 } elsif ($file =~ /\.png$/) {
401 push @png, ["$path/$file", 0]; 591 push @c_png, ["$path/$file", 0];
592
402 } elsif ($file =~ /\.trs$/) { 593 } elsif ($file =~ /\.trs$/) {
403 push @trs, [$path, $file]; 594 $c_trs->put ([$path, $file]);
595
404 } elsif ($file =~ /\.arc$/) { 596 } elsif ($file =~ /\.arc$/) {
405 push @arc, [$path, $file]; 597 $c_arc->put ([$path, $file]);
598
406 } else { 599 } else {
407 warn "ignoring $path/$file\n" if $VERBOSE >= 3; 600 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
408 } 601 }
409 } 602 }
410 }; 603 };
411 } 604 }
412 605
413 sub inst_arch($) { 606 sub inst_arch($) {
414 my (undef, $path) = @_; 607 my (undef, $path) = @_;
608
609 $PATH = $path;
415 610
416 print "\n", 611 print "\n",
417 "Installing '$path' to '$DATADIR'\n", 612 "Installing '$path' to '$DATADIR'\n",
418 "\n", 613 "\n",
419 "This can take a long time if you run this\n", 614 "This can take a long time if you run this\n",
426 if (!-d "$path/treasures") { 621 if (!-d "$path/treasures") {
427 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n"; 622 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n";
428 exit 1 unless $FORCE; 623 exit 1 unless $FORCE;
429 } 624 }
430 625
626 print "scanning files...\n" if $VERBOSE;
627
431 find_files $path; 628 find_files $path;
629
630 my @a_arc = map +(async \&process_arc), 1..2;
631 my @a_res = map +(async \&process_res), 1..2;
632 my @a_trs = map +(async \&process_trs), 1..2;
633
432 IO::AIO::flush; 634 IO::AIO::flush;
433 635
434 $_->join for ( 636 $c_res->shutdown;
637 $c_arc->shutdown;
638 $c_trs->shutdown;
639
640 print "start file scan, arc, res processing...\n" if $VERBOSE;
641
642 $_->join for @a_arc; # need to parse all archetypes before png processing
643
644 print "end arc, start png processing...\n" if $VERBOSE;
645
435 # four png crunchers work fine for my 2x smp machine 646 # eight png crunchers work fine for my 4x smp machine
436 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png), 647 my @a_png = map +(async \&process_png), 1..8;
437 (async \&process_trs), (async \&process_trs),
438 (async \&process_arc), (async \&process_arc),
439 );
440 648
649 $_->join for (@a_trs, @a_res, @a_png);
650
651 print "scanning done, processing results...\n" if $VERBOSE;
441 { 652 {
442 # remove path prefix from editor_folder 653 # remove path prefix from editor_folder
443 substr $_->{editor_folder}, 0, 1 + length $path, "" 654 substr $_->{editor_folder}, 0, 1 + length $path, ""
444 for values %ARC; 655 for values %ARC;
445 656
657 print "resolving inheritance tree...\n" if $VERBOSE;
446 # resolve inherit 658 # resolve inherit
447 while () { 659 while () {
448 my $progress; 660 my $progress;
449 my $loop; 661 my $loop;
450 662
476 } 688 }
477 689
478 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit 690 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit
479 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC; 691 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC;
480 692
693 print "writing archetypes...\n" if $VERBOSE;
481 open my $fh, ">:utf8", "$DATADIR/archetypes~" 694 open my $fh, ">:utf8", "$DATADIR/archetypes~"
482 or die "$DATADIR/archetypes~: $!"; 695 or die "$DATADIR/archetypes~: $!";
483 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];
484 } 697 }
485 698
486 { 699 {
700 print "writing treasures...\n" if $VERBOSE;
487 open my $fh, ">:utf8", "$DATADIR/treasures~" 701 open my $fh, ">:utf8", "$DATADIR/treasures~"
488 or die "$DATADIR/treasures~: $!"; 702 or die "$DATADIR/treasures~: $!";
489 print $fh $TRS; 703 print $fh $TRS;
490 } 704 }
491 705
492 { 706 {
707 print "processing facedata...\n" if $VERBOSE;
493 while (my ($k, $v) = each %FACEINFO) { 708 while (my ($k, $v) = each %FACEINFO) {
494 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";
495 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";
496 711
497 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";
498 #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";
499
500 $v->{chksum32} = Digest::MD5::md5 $v->{data32};
501 $v->{chksum64} = Digest::MD5::md5 $v->{data64};
502 714
503 if (my $magicmap = $v->{magicmap}) { 715 if (my $magicmap = $v->{magicmap}) {
504 $magicmap =~ y/A-Z_\-/a-z/d; 716 $magicmap =~ y/A-Z_\-/a-z/d;
505 $v->{magicmap} = $COLOR{$magicmap}; 717 $v->{magicmap} = $COLOR{$magicmap};
506 } 718 }
507 }
508 719
720 delete $v->{arc};
721 }
722
723 print "writing facedata...\n" if $VERBOSE;
509 open my $fh, ">:perlio", "$DATADIR/facedata~" 724 open my $fh, ">:perlio", "$DATADIR/facedata~"
510 or die "$DATADIR/facedata~: $!"; 725 or die "$DATADIR/facedata~: $!";
511 726
512 print $fh freeze { 727 print $fh freeze {
513 version => 2, 728 version => 2,
514 faceinfo => \%FACEINFO, 729 faceinfo => \%FACEINFO,
515 animinfo => \%ANIMINFO, 730 animinfo => \%ANIMINFO,
731 resource => \%RESOURCE,
516 }; 732 };
517 } 733 }
734
735 print "committing files...\n" if $VERBOSE;
518 736
519 for (qw(archetypes facedata treasures)) { 737 for (qw(archetypes facedata treasures)) {
520 chmod 0644, "$DATADIR/$_~"; 738 chmod 0644, "$DATADIR/$_~";
521 rename "$DATADIR/$_~", "$DATADIR/$_" 739 rename "$DATADIR/$_~", "$DATADIR/$_"
522 or die "$DATADIR/$_: $!"; 740 or die "$DATADIR/$_: $!";

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines