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.19 by root, Sun Apr 1 00:36:35 2007 UTC vs.
Revision 1.63 by root, Mon Dec 17 08:03:22 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;
19use YAML::Syck ();
20use JSON::XS ();
18use IO::AIO (); 21use IO::AIO ();
19use File::Temp; 22use File::Temp;
20use Crossfire; 23use Crossfire;
21use Coro; 24use Coro;
22use Coro::AIO; 25use Coro::AIO;
26use Coro::Util;
23use POSIX (); 27use POSIX ();
24use Digest::MD5; 28use Carp;
29use Coro::Channel;
25use Storable; $Storable::canonical = 1; 30use Coro::Storable; $Storable::canonical = 1;
31
32$SIG{QUIT} = sub { Carp::cluck "QUIT" };
26 33
27sub usage { 34sub usage {
28 warn <<EOF; 35 warn <<EOF;
29Usage: cfutil [-v] [-q] [--force] [--cache] 36Usage: cfutil [-v] [-q] [--force] [--cache]
30 [--install-arch path] 37 [--install-arch path]
42my $CACHE = 0; 49my $CACHE = 0;
43my $FORCE; 50my $FORCE;
44my $TMPDIR = "/tmp/cfutil$$~"; 51my $TMPDIR = "/tmp/cfutil$$~";
45my $TMPFILE = "aaaa0"; 52my $TMPFILE = "aaaa0";
46 53
54our %COLOR = (
55 black => 0,
56 white => 1,
57 navy => 2,
58 red => 3,
59 orange => 4,
60 blue => 5,
61 darkorange => 6,
62 green => 7,
63 lightgreen => 8,
64 grey => 9,
65 brown => 10,
66 gold => 11,
67 tan => 12,
68);
69
47END { system "rm", "-rf", $TMPDIR } 70END { system "rm", "-rf", $TMPDIR }
48 71
49Event->signal (signal => "INT", cb => sub { exit 1 }); 72Event->signal (signal => "INT", cb => sub { exit 1 });
50Event->signal (signal => "TERM", cb => sub { exit 1 }); 73Event->signal (signal => "TERM", cb => sub { exit 1 });
51 74
68} 91}
69 92
70sub inst_maps($) { 93sub inst_maps($) {
71 my (undef, $path) = @_; 94 my (undef, $path) = @_;
72 95
73 print "installing '$path' to '$DATADIR/maps'\n"; 96 print "\nInstalling '$path' to '$DATADIR/maps'\n\n";
74 97
75 if (!-f "$path/regions") { 98 if (!-f "$path/regions") {
76 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";
77 exit 1 unless $FORCE; 100 exit 1 unless $FORCE;
78 } 101 }
79 102
80 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"
81 and die "map installation failed.\n"; 107 and die "map installation failed.\n";
82 108
83 print "maps installed successfully.\n"; 109 print "maps installed successfully.\n";
84} 110}
85 111
86{ 112{
113 our %ANIMINFO;
87 our %FACEINFO; 114 our %FACEINFO;
115 our %RESOURCE;
88 our @ARC; 116 our @ARC;
117 our %ARC;
89 our $TRS; 118 our $TRS;
90 our $NFILE; 119 our $NFILE;
91 our %ANIM; 120 our $PATH;
92 121
93 our $QUANTIZE = "+dither -colorspace RGB -colors 256"; 122 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
94 123
95 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;
96 129
97 sub commit_png($$$) { 130 sub commit_png($$$) {
98 my ($name, $data, $T) = @_; 131 my ($name, $data, $T) = @_;
99 132
100 $FACEINFO{$name}{"data$T"} = $data; 133 $FACEINFO{$name}{"data$T"} = $data;
101 } 134 }
102 135
103 sub process_png { 136 sub process_png {
104 while (@png) { 137 while (@c_png) {
105 my ($path, $delete) = @{pop @png}; 138 my ($path, $delete) = @{pop @c_png};
106 139
107 my $png; 140 my $png;
108 aio_lstat $path; 141 aio_lstat $path;
109 my ($size, $mtime) = (stat _)[7,9]; 142 my ($size, $mtime) = (stat _)[7,9];
110 143
141 if ($w % $T || $h % $T) { 174 if ($w % $T || $h % $T) {
142 warn "$path: weird png size ($w $h), skipping.\n"; 175 warn "$path: weird png size ($w $h), skipping.\n";
143 next; 176 next;
144 } 177 }
145 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
146 unless ($path =~ /~$/) { 189 unless ($path =~ /~$/) {
147 # possibly enlarge 190 # possibly enlarge
148 if (0 > aio_stat "$stem.64x64.png") { 191 if (0 > aio_stat "$stem.64x64.png") {
149 my $other = "$stem.64x64.png~"; 192 my $other = "$stem.64x64.png~";
150 193
151 if (0 > aio_lstat $other or (-M _) > (-M $path)) { 194 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
152 warn "rescale $other\n";#d#
153 my $wrap = 0; # for the time being
154 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
155 system "convert png:\Q$path\E -depth 8 rgba:-" 255 system "convert -depth 8 $SRC rgba:-"
156 . "| $exec_prefix/bin/cfhq2xa $w $h $wrap" 256 . "| $exec_prefix/bin/cfhq2xa $w $h 0"
157 . "| 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~"
158 and die "convert/hq2xa pipeline error: status $? ($!)"; 258 and die "convert/cfhq2xa pipeline error: status $? ($!)";
159 system $OPTIPNG, "-o5", "-i0", "-q", "$other~"; 259 system $OPTIPNG, "-i0", "-q", "$other~";
160 die "$other~ has zero size, aborting." unless -s "$other~"; 260 die "$other~ has zero size, aborting." unless -s "$other~";
161 rename "$other~", $other; 261 rename "$other~", $other;
162 }; 262 };
163 } 263 }
164 264
165 push @png, [$other, !$CACHE]; 265 push @c_png, [$other, !$CACHE];
166 } 266 }
167 267
168 # possibly scale down 268 # possibly scale down
169 if (0 > aio_stat "$stem.32x32.png") { 269 if (0 > aio_stat "$stem.32x32.png") {
170 my $other = "$stem.32x32.png~"; 270 my $other = "$stem.32x32.png~";
171 271
172 if (0 > aio_lstat $other or (-M _) > (-M $path)) { 272 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
173 fork_sub { 273 fork_sub {
174 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~";
175 system $OPTIPNG, "-o5", "-i0", "-q", "$other~"; 275 system $OPTIPNG, "-i0", "-q", "$other~";
276
277 # reduce smoothfaces >10000 bytes
278 if ($stem =~ /_S\./ && (-s "$other~") > 10000) {
279 my $ncolor = 256;
280 while () {
281 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
282 system $OPTIPNG, "-i0", "-q", "$other~~";
283 last if 10000 > -s "$other~~";
284 $ncolor = int $ncolor * 0.9;
285 $ncolor > 8 or die "cannot reduce filesize to < 10000 bytes";
286 }
287
288 printf "reduced %s from %d to %d bytes using %d colours.\n",
289 $other, -s "$other~", -s "$other~~", $ncolor
290 if $VERBOSE >= 2;
291 rename "$other~~", "$other~";
292 }
293
176 die "$other~ has zero size, aborting." unless -s "$other~"; 294 die "$other~ has zero size, aborting." unless -s "$other~";
177 rename "$other~", $other; 295 rename "$other~", $other;
178 }; 296 };
179 } 297 }
180 298
181 warn "scaled down $path to $other\n";#d# 299 #warn "scaled down $path to $other\n";#d#
182
183 push @png, [$other, !$CACHE]; 300 push @c_png, [$other, !$CACHE];
184 } 301 }
185 } 302 }
186 303
187 (my $face = $stem) =~ s/^.*\///; 304 (my $face = $stem) =~ s/^.*\///;
188 305
306 # split all bigfaces, but avoid smoothfaces (*_S)
189 if (($w > $T || $h > $T) && $face !~ /_S\./) { 307 if (($w > $T || $h > $T) && $face !~ /_S\./) {
190 # split 308 # split
191 my @tile; 309 my @tile;
192 for my $x (0 .. (int $w / $T) - 1) { 310 for my $x (0 .. (int $w / $T) - 1) {
193 for my $y (0 .. (int $h / $T) - 1) { 311 for my $y (0 .. (int $h / $T) - 1) {
248 aio_unlink $path if $delete; 366 aio_unlink $path if $delete;
249 } 367 }
250 } 368 }
251 369
252 sub process_arc { 370 sub process_arc {
253 while (@arc) { 371 while (my $job = $c_arc->get) {
254 my ($dir, $file) = @{pop @arc}; 372 my ($dir, $file) = @$job;
255 373
256 my $arc; 374 my $arc;
257 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/ 375 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/
258 376
259 my $arc = read_arch "$dir/$file"; 377 my $arc = read_arch "$dir/$file";
260 for my $o (values %$arc) { 378 for my $o (values %$arc) {
261 push @ARC, $o; 379 push @ARC, $o;
380 for (my $m = $o; $m; $m = $m->{more}) {
381 $ARC{$m->{_name}} = $m;
382 }
262 383
263 $o->{editor_folder} = $dir; 384 $o->{editor_folder} = $dir;
264 385
265 my $visibility = delete $o->{visibility}; 386 my $visibility = delete $o->{visibility};
266 my $magicmap = delete $o->{magicmap}; 387 my $magicmap = delete $o->{magicmap};
277 my $x = $o->{x} - $dx; 398 my $x = $o->{x} - $dx;
278 my $y = $o->{y} - $dy; 399 my $y = $o->{y} - $dy;
279 400
280 my $ext = $x|$y ? "+$x+$y" : ""; 401 my $ext = $x|$y ? "+$x+$y" : "";
281 402
282 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/; 403 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
283 404
284 my $visibility = delete $o->{visibility} if exists $o->{visibility}; 405 $visibility = delete $o->{visibility} if exists $o->{visibility};
285 my $magicmap = delete $o->{magicmap} if exists $o->{magicmap}; 406 $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
286 407
287 my $anim = delete $o->{anim}; 408 my $anim = delete $o->{anim};
288 409
289 if ($anim) { 410 if ($anim) {
411 # possibly add $ext to the animation name to avoid
412 # the need to specify archnames for all parts
413 # of a multipart archetype.
290 $o->{animation} = "$o->{_name}"; 414 $o->{animation} = "$o->{_name}";
415 my $facings = 1;
416 my @frames;
291 417
292 for (@$anim) { 418 for (@$anim) {
293 $_ .= $ext unless /^facings\s|^blank.x11$|^empty.x11$/; 419 if (/^facings\s+(\d+)/) {
420 $facings = $1*1;
421 } elsif (/^blank.x11$|^empty.x11$/) {
422 push @frames, $_;
423 } else {
424 push @frames, "$_$ext";
425 }
294 } 426 }
295 427
296 $ANIM{"$o->{_name}$ext"} = 428 $ANIMINFO{$o->{animation}} = {
297 join "", map "$_\n", 429 facings => $facings,
298 "anim $o->{_name}", 430 frames => \@frames,
299 @$anim,
300 "mina";
301 } 431 };
432 }
302 433
303 for my $face ($o->{face} || (), @{$anim || []}) { 434 for ($o->{face} || (), @{$anim || []}) {
304 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/; 435 next if /^facings\s/;
305 436
437 my $face = $_;
438 $face =~ s/\+\d+\+\d+$//; # remove tile offset coordinates
439
306 my $info = $FACEINFO{$face} ||= {}; 440 my $info = $FACEINFO{$face} ||= { };
441 $info->{arc} = $o;
442
443 next if $face =~ /^blank.x11$|^empty.x11$/;
307 444
308 $info->{visibility} = $visibility if defined $visibility; 445 $info->{visibility} = $visibility if defined $visibility;
309 $info->{magicmap} = $magicmap if defined $magicmap; 446 $info->{magicmap} = $magicmap if defined $magicmap;
310 } 447 }
311 448
312 if (my $smooth = delete $o->{smoothface}) { 449 if (my $smooth = delete $o->{smoothface}) {
313 my ($face, $smooth) = split /\s+/, $smooth; 450 my %kv = split /\s+/, $smooth;
314 # skip empty_S.x11, it seems to server no purpose whatsoever 451 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
315 # but increases bandwidth demands and worse. 452 while (my ($face, $smooth) = each %kv) {
316 unless ($smooth eq "empty_S.x11") { 453 $FACEINFO{$smooth}{arc} = $o;
454
317 $FACEINFO{$face}{smooth} = $smooth; 455 $FACEINFO{$face}{smooth} = $smooth;
456 $FACEINFO{$face}{smoothlevel} = $level;
318 } 457 }
319 } 458 }
320 } 459 }
321 } 460 }
322 } 461 }
323 } 462 }
324 463
325 sub process_trs { 464 sub process_trs {
326 while (@trs) { 465 while (my $job = $c_trs->get) {
327 my ($dir, $file) = @{pop @trs}; 466 my ($dir, $file) = @$job;
328 my $path = "$dir/$file"; 467 my $path = "$dir/$file";
329 468
330 my $trs; 469 my $trs;
331 if (0 > aio_load $path, $trs) { 470 if (0 > aio_load $path, $trs) {
332 warn "$path: $!, skipping.\n"; 471 warn "$path: $!, skipping.\n";
335 474
336 $TRS .= $trs; 475 $TRS .= $trs;
337 } 476 }
338 } 477 }
339 478
479 my %FILECACHE;
480
481 sub load_cached($;$) {
482 unless (exists $FILECACHE{$_[0]}) {
483 my $data;
484 if (0 < aio_load $_[0], $data) {
485 if ($_[1]) {
486 $data = eval { $_[1]->($data) };
487 warn "$_[0]: $@" if $@;
488 }
489 }
490
491 $FILECACHE{$_[0]} = $data;
492 }
493
494 $FILECACHE{$_[0]}
495 }
496
497 sub process_res {
498 while (my $job = $c_res->get) {
499 my ($dir, $file, $type) = @$job;
500
501 my $data;
502 aio_load "$dir/$file", $data;
503
504 my $meta = load_cached "$dir/meta", sub { JSON::XS->new->utf8->relaxed->decode (shift) };
505
506 utf8::decode $dir;
507 utf8::decode $file;
508
509 # a meta file for resources is now mandatory
510 unless (exists $meta->{$file}) {
511 warn "skipping $dir/$file\n" if $VERBOSE >= 3;
512 }
513
514 $meta = {
515 %{ $meta->{"" } || {} },
516 %{ $meta->{$file} || {} },
517 };
518
519 if ($meta->{license} =~ s/^#//) {
520 $meta->{license} = ({
521 "pd" => "Public Domain",
522 "gpl" => "GNU General Public License, version 3.0 or any later",
523 "cc/by/2.0" => "Licensed under Creative Commons Attribution 2.0 http://creativecommons.org/licenses/by/2.0/",
524 "cc/by/2.5" => "Licensed under Creative Commons Attribution 2.5 http://creativecommons.org/licenses/by/2.5/",
525 "cc/by/3.0" => "Licensed under Creative Commons Attribution 3.0 http://creativecommons.org/licenses/by/3.0/",
526 })->{$meta->{license}}
527 || warn "$dir/$file: license tag '$meta->{license}' not found.";
528 }
529
530 $file =~ s/\.res$//;
531 $file =~ s/\.(ogg|wav|jpg|png)$//;
532
533 substr $dir, 0, 1 + length $PATH, "";
534
535 if (my $filter = $meta->{cfutil_filter}) {
536 if ($filter eq "yaml2json") {
537 $data = JSON::XS::encode_json YAML::Syck::Load $data;
538 } else {
539 warn "$dir/$file: unknown filter $filter, skipping\n";
540 }
541 }
542
543 $RESOURCE{"$dir/$file"} = {
544 type => (exists $meta->{type} ? delete $meta->{type} : $type),
545 data => $data,
546 %$meta ? (meta => $meta) : (),
547 };
548 }
549 }
550
340 sub find_files; 551 sub find_files;
341 sub find_files { 552 sub find_files {
342 my ($path) = @_; 553 my ($path) = @_;
343 554
344 IO::AIO::aioreq_pri 4; 555 IO::AIO::aioreq_pri 4;
346 my ($dirs, $nondirs) = @_; 557 my ($dirs, $nondirs) = @_;
347 558
348 find_files "$path/$_" 559 find_files "$path/$_"
349 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs; 560 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs;
350 561
562 my $dir = $path;
563 substr $dir, 0, 1 + length $PATH, "";
564
351 for my $file (@$nondirs) { 565 for my $file (@$nondirs) {
566 if ($dir =~ /^music(?:\/|$)/) {
567 $c_res->put ([$path, $file, 3]) # FT_MUSIC
568 if $file =~ /\.(ogg)$/;
569
570 } elsif ($dir =~ /^sound(?:\/|$)/) {
571 $c_res->put ([$path, $file, 5]) # FT_SOUND
572 if $file =~ /\.(wav|ogg)$/;
573
574 } elsif ($dir =~ /^res(?:\/|$)/) {
575 if ($file =~ /\.(jpg|png)$/) {
576 $c_res->put ([$path, $file, 0]) # FT_FACE
577 } elsif ($file =~ /\.(res)$/) {
578 $c_res->put ([$path, $file, 7]) # FT_RSRC
579 } else {
580 $c_res->put ([$path, $file, undef]);
581 }
582
352 if ($file =~ /\.png$/) { 583 } elsif ($file =~ /\.png$/) {
353 push @png, ["$path/$file", 0]; 584 push @c_png, ["$path/$file", 0];
585
354 } elsif ($file =~ /\.trs$/) { 586 } elsif ($file =~ /\.trs$/) {
355 push @trs, [$path, $file]; 587 $c_trs->put ([$path, $file]);
588
356 } elsif ($file =~ /\.arc$/) { 589 } elsif ($file =~ /\.arc$/) {
357 push @arc, [$path, $file]; 590 $c_arc->put ([$path, $file]);
591
358 } else { 592 } else {
359 warn "ignoring $path/$file\n" if $VERBOSE >= 2; 593 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
360 } 594 }
361 } 595 }
362 }; 596 };
363 } 597 }
364 598
365 sub inst_arch($) { 599 sub inst_arch($) {
366 my (undef, $path) = @_; 600 my (undef, $path) = @_;
367 601
602 $PATH = $path;
603
604 print "\n",
368 print "installing '$path' to '$DATADIR'\n", 605 "Installing '$path' to '$DATADIR'\n",
606 "\n",
369 "(this can take a long time if you run this\n", 607 "This can take a long time if you run this\n",
370 "for the first time or do not use --cache).\n"; 608 "for the first time or do not use --cache.\n",
609 "\n",
610 "Unless you run verbosely, all following warning\n",
611 "or error messages indicate serious problems.\n",
612 "\n";
371 613
372 if (!-d "$path/treasures") { 614 if (!-d "$path/treasures") {
373 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n"; 615 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n";
374 exit 1 unless $FORCE; 616 exit 1 unless $FORCE;
375 } 617 }
376 618
619 print "scanning files...\n" if $VERBOSE;
620
377 find_files $path; 621 find_files $path;
622
623 my @a_arc = map +(async \&process_arc), 1..2;
624 my @a_res = map +(async \&process_res), 1..2;
625 my @a_trs = map +(async \&process_trs), 1..2;
626
378 IO::AIO::flush; 627 IO::AIO::flush;
379 628
380 $_->join for ( 629 $c_res->put (undef) for @a_res;
630 $c_arc->put (undef) for @a_arc;
631 $c_trs->put (undef) for @a_trs;
632
633 print "start file scan, arc, res processing...\n" if $VERBOSE;
634
635 $_->join for @a_arc; # need to parse all archetypes before png processing
636
637 print "end arc, start png processing...\n" if $VERBOSE;
638
381 # four png crunchers work fine for my 2x smp machine 639 # four png crunchers work fine for my 2x smp machine
382 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png), 640 my @a_png = map +(async \&process_png), 1..4;
383 (async \&process_trs), (async \&process_trs),
384 (async \&process_arc), (async \&process_arc),
385 );
386 641
642 $_->join for (@a_trs, @a_res, @a_png);
643
644 print "scanning done, processing results...\n" if $VERBOSE;
387 { 645 {
388 open my $fh, ">:utf8", "$DATADIR/animations~" 646 # remove path prefix from editor_folder
389 or die "$DATADIR/animations~: $!"; 647 substr $_->{editor_folder}, 0, 1 + length $path, ""
390 print $fh join "", map $ANIM{$_}, sort keys %ANIM 648 for values %ARC;
649
650 print "resolving inheritance tree...\n" if $VERBOSE;
651 # resolve inherit
652 while () {
653 my $progress;
654 my $loop;
655
656 for my $o (values %ARC) {
657 if (my $other = $o->{inherit}) {
658 if (my $s = $ARC{$other}) {
659 if ($s->{inherit}) {
660 $loop = $s;
661 } else {
662 delete $o->{inherit};
663 my %s = %$s;
664 delete @s{qw(_name more name name_pl)};
665 %$o = ( %s, %$o );
666 ++$progress;
667 }
668 } else {
669 warn "'$o->{_name}' tries to inherit from undefined archetype '$other', skipping.\n";
670 delete $ARC{$o->{_name}};
671 }
672 }
673 }
674
675 unless ($progress) {
676 die "inheritance loop detected starting at archetype '$loop->{_name}', aborting.\n"
677 if $loop;
678
679 last;
680 }
391 } 681 }
392 682
393 { 683 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit
684 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC;
685
686 print "writing archetypes...\n" if $VERBOSE;
394 open my $fh, ">:utf8", "$DATADIR/archetypes~" 687 open my $fh, ">:utf8", "$DATADIR/archetypes~"
395 or die "$DATADIR/archetypes~: $!"; 688 or die "$DATADIR/archetypes~: $!";
396 substr $_->{editor_folder}, 0, 1 + length $path, "" for @ARC; 689 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
397 print $fh Crossfire::archlist_to_string \@ARC;
398 } 690 }
399 691
400 { 692 {
693 print "writing treasures...\n" if $VERBOSE;
401 open my $fh, ">:utf8", "$DATADIR/treasures~" 694 open my $fh, ">:utf8", "$DATADIR/treasures~"
402 or die "$DATADIR/treasures~: $!"; 695 or die "$DATADIR/treasures~: $!";
403 print $fh $TRS; 696 print $fh $TRS;
404 } 697 }
405 698
406 { 699 {
700 print "processing facedata...\n" if $VERBOSE;
407 while (my ($k, $v) = each %FACEINFO) { 701 while (my ($k, $v) = each %FACEINFO) {
408 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n"; 702 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n";
409 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n"; 703 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n";
410 704
411 $v->{chksum32} = Digest::MD5::md5 $v->{data32}; 705 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
412 $v->{chksum64} = Digest::MD5::md5 $v->{data64}; 706 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
707
708 if (my $magicmap = $v->{magicmap}) {
709 $magicmap =~ y/A-Z_\-/a-z/d;
710 $v->{magicmap} = $COLOR{$magicmap};
413 } 711 }
414 712
713 delete $v->{arc};
714 }
715
716 print "writing facedata...\n" if $VERBOSE;
415 open my $fh, ">:perlio", "$DATADIR/facedata~" 717 open my $fh, ">:perlio", "$DATADIR/facedata~"
416 or die "$DATADIR/facedata~: $!"; 718 or die "$DATADIR/facedata~: $!";
417 719
418 $FACEINFO{""} = { version => 1}; 720 print $fh freeze {
419 print $fh Storable::nfreeze \%FACEINFO; 721 version => 2,
722 faceinfo => \%FACEINFO,
723 animinfo => \%ANIMINFO,
724 resource => \%RESOURCE,
420 } 725 };
726 }
421 727
728 print "committing files...\n" if $VERBOSE;
729
422 for (qw(archetypes facedata animations treasures)) { 730 for (qw(archetypes facedata treasures)) {
423 chmod 0644, "$DATADIR/$_~"; 731 chmod 0644, "$DATADIR/$_~";
424 rename "$DATADIR/$_~", "$DATADIR/$_" 732 rename "$DATADIR/$_~", "$DATADIR/$_"
425 or die "$DATADIR/$_: $!"; 733 or die "$DATADIR/$_: $!";
426 } 734 }
427 735

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines