ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/utils/cfutil.in
Revision: 1.59
Committed: Tue Aug 21 20:00:18 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
Changes since 1.58: +3 -4 lines
Log Message:
do include all pngs we find. even if no archetype info is available (bad, bad bad)

File Contents

# User Rev Content
1 root 1.1 #!@PERL@
2    
3 root 1.2 use strict;
4    
5     my $prefix = "@prefix@";
6     my $exec_prefix = "@exec_prefix@";
7     my $datarootdir = "@datarootdir@";
8     my $DATADIR = "@datadir@/@PACKAGE@";
9    
10     my $CONVERT = "@CONVERT@";
11 root 1.36 #my $IDENTIFY = "@IDENTIFY@";
12 root 1.3 my $OPTIPNG = "@OPTIPNG@";
13 root 1.2 my $RSYNC = "@RSYNC@";
14 root 1.31 my $PNGNQ = "@PNGNQ@";
15 root 1.2
16     use Getopt::Long;
17 root 1.3 use Coro::Event;
18     use AnyEvent;
19     use IO::AIO ();
20 root 1.2 use File::Temp;
21     use Crossfire;
22 root 1.3 use Coro;
23     use Coro::AIO;
24 root 1.51 use Coro::Util;
25 root 1.3 use POSIX ();
26 root 1.42 use Carp;
27 root 1.53 use Coro::Channel;
28 root 1.25 use Coro::Storable; $Storable::canonical = 1;
29 root 1.2
30 root 1.42 $SIG{QUIT} = sub { Carp::cluck "QUIT" };
31    
32 root 1.2 sub usage {
33     warn <<EOF;
34 root 1.3 Usage: cfutil [-v] [-q] [--force] [--cache]
35 root 1.2 [--install-arch path]
36     [--install-maps maps]
37     [--print-statedir]
38     [--print-confdir]
39     [--print-datadir]
40     [--print-libdir]
41     [--print-bindir]
42     EOF
43     exit 1;
44     }
45    
46     my $VERBOSE = 1;
47 root 1.3 my $CACHE = 0;
48 root 1.2 my $FORCE;
49 root 1.3 my $TMPDIR = "/tmp/cfutil$$~";
50     my $TMPFILE = "aaaa0";
51 root 1.2
52 root 1.35 our %COLOR = (
53     black => 0,
54     white => 1,
55     navy => 2,
56     red => 3,
57     orange => 4,
58     blue => 5,
59     darkorange => 6,
60     green => 7,
61     lightgreen => 8,
62     grey => 9,
63     brown => 10,
64     gold => 11,
65     tan => 12,
66     );
67    
68 root 1.2 END { system "rm", "-rf", $TMPDIR }
69    
70 root 1.3 Event->signal (signal => "INT", cb => sub { exit 1 });
71     Event->signal (signal => "TERM", cb => sub { exit 1 });
72    
73 root 1.2 mkdir $TMPDIR, 0700
74     or die "$TMPDIR: $!";
75    
76 root 1.3 sub fork_sub(&) {
77     my ($cb) = @_;
78    
79     if (my $pid = fork) {
80     my $current = $Coro::current;
81     my $w = AnyEvent->child (pid => $pid, cb => sub { $current->ready });
82     Coro::schedule;
83     } else {
84     eval { $cb->() };
85     POSIX::_exit 0 unless $@;
86     warn $@;
87     POSIX::_exit 1;
88     }
89     }
90    
91 root 1.2 sub inst_maps($) {
92     my (undef, $path) = @_;
93    
94 root 1.29 print "\nInstalling '$path' to '$DATADIR/maps'\n\n";
95 root 1.2
96     if (!-f "$path/regions") {
97     warn "'$path' does not look like a maps directory ('regions' file is missing).\n";
98     exit 1 unless $FORCE;
99     }
100    
101 root 1.41 system $RSYNC, "-a", "--chmod=u=rwX,go=rX", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded"
102 root 1.16 and die "map installation failed.\n";
103 root 1.13
104     print "maps installed successfully.\n";
105 root 1.2 }
106    
107     {
108 root 1.24 our %ANIMINFO;
109 root 1.6 our %FACEINFO;
110 root 1.37 our %RESOURCE;
111 root 1.30 our @ARC;
112 root 1.27 our %ARC;
113 root 1.12 our $TRS;
114 root 1.3 our $NFILE;
115 root 1.37 our $PATH;
116 root 1.3
117 root 1.19 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
118    
119 root 1.53 our $c_arc = new Coro::Channel;
120     our $c_trs = new Coro::Channel;
121     our $c_res = new Coro::Channel;
122    
123     our @c_png;
124 root 1.2
125 root 1.19 sub commit_png($$$) {
126     my ($name, $data, $T) = @_;
127 root 1.5
128 root 1.19 $FACEINFO{$name}{"data$T"} = $data;
129 root 1.2 }
130    
131 root 1.3 sub process_png {
132 root 1.53 while (@c_png) {
133     my ($path, $delete) = @{pop @c_png};
134 root 1.2
135 root 1.3 my $png;
136     aio_lstat $path;
137 root 1.2 my ($size, $mtime) = (stat _)[7,9];
138    
139 root 1.3 if (0 > aio_load $path, $png) {
140     warn "$path: $!, skipping.\n";
141 root 1.5 next;
142 root 1.3 }
143    
144 root 1.19 my $stem = $path;
145     my $T;
146    
147     if ($stem =~ s/\.32x32\.png~?$//) {
148     $T = 32;
149     } elsif ($stem =~ s/\.64x64\.png~?$//) {
150     $T = 64;
151     } else {
152     warn "$path: weird filename, skipping.\n";
153     next;
154     }
155    
156 root 1.6 # quickly extract width and height of the (necessarily PNG) image
157 root 1.3 unless ($png =~ /^\x89PNG\x0d\x0a\x1a\x0a....IHDR(........)/s) {
158 root 1.19 warn "$path: not a recognized png file, skipping.\n";
159 root 1.5 next;
160 root 1.3 }
161 root 1.2
162 root 1.3 my ($w, $h) = unpack "NN", $1;
163 root 1.2
164 root 1.3 if ($w < $T || $h < $T) {
165     warn "$path: too small ($w $h), skipping.\n";
166 root 1.5 next;
167 root 1.3 }
168    
169     if ($w % $T || $h % $T) {
170     warn "$path: weird png size ($w $h), skipping.\n";
171 root 1.5 next;
172 root 1.3 }
173 root 1.2
174 root 1.54 (my $base = $stem) =~ s/^.*\///;
175    
176     my $fi = $FACEINFO{$base};
177     unless ($fi) {
178 root 1.59 #warn "$path: <$base> not referenced by any archetype, skipping.\n";
179     #next;
180 root 1.54 }
181    
182 root 1.59 my $arc = $fi->{arc} || { };
183 root 1.54
184 root 1.19 unless ($path =~ /~$/) {
185     # possibly enlarge
186     if (0 > aio_stat "$stem.64x64.png") {
187     my $other = "$stem.64x64.png~";
188    
189     if (0 > aio_lstat $other or (-M _) > (-M $path)) {
190     fork_sub {
191 root 1.52 my $CROP;
192     my $SRC = "png:\Q$path\E";
193    
194 root 1.54 my $is_floor = $arc->{is_floor};
195     my $is_wall = 0;
196    
197     my ($wall_pfx, $wall_dir, $wall_sfx);
198    
199     if (
200     !$is_floor
201     && !$arc->{alive}
202 root 1.55 && $arc->{move_block} eq "all"
203 root 1.54 && $path =~ /^(.*_)([0-9A-F])(\.x11.*\.png)$/
204     ) {
205     ($wall_pfx, $wall_dir, $wall_sfx) = ($1, hex $2, $3);
206    
207     unless (grep { !-e sprintf "%s%X%s", $wall_pfx, $_, $wall_sfx } 0..15) {
208     $is_wall = 1;
209     }
210     }
211    
212     if ($is_wall || $is_floor) {
213     # add a 4px border and add other images around it
214     $CROP = "-shave 8x8 +repage";
215    
216     $w += 8;
217     $h += 8;
218    
219     $SRC = "-size ${w}x${h} xc:transparent";
220     $SRC .= " png:\Q$path\E -geometry +4+4 -composite";
221    
222     # 8 surrounding images
223     for (
224     # x y b r0 r1
225     [-1, -1, 0, 6],
226     [ 0, -1, 1, 10, 14],
227     [+1, -1, 0, 12],
228    
229     [-1, 0, 8, 5, 7],
230     #
231     [+1, 0, 2, 5, 13],
232    
233     [-1, +1, 0, 3],
234     [ 0, +1, 4, 10, 11],
235     [+1, +1, 0, 9],
236     ) {
237     my ($x, $y, $d, $r0, $r1) = @$_;
238    
239     my $tile = $is_floor ? $path
240     : $is_wall ? sprintf "%s%X%s", $wall_pfx, ($wall_dir & $d) ? $r1 : $r0, $wall_sfx
241     : die;
242    
243     $SRC .= sprintf " png:%s -geometry %+d%+d -composite",
244     "\Q$tile",
245     $x * ($w - 8) + 4,
246     $y * ($h - 8) + 4;
247 root 1.52 }
248     }
249    
250     system "convert -depth 8 $SRC rgba:-"
251 root 1.51 . "| $exec_prefix/bin/cfhq2xa $w $h 0"
252 root 1.52 . "| convert -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $CROP $QUANTIZE -quality 00 png32:\Q$other\E~"
253     and die "convert/cfhq2xa pipeline error: status $? ($!)";
254 root 1.31 system $OPTIPNG, "-i0", "-q", "$other~";
255 root 1.19 die "$other~ has zero size, aborting." unless -s "$other~";
256     rename "$other~", $other;
257     };
258     }
259    
260 root 1.53 push @c_png, [$other, !$CACHE];
261 root 1.19 }
262    
263     # possibly scale down
264     if (0 > aio_stat "$stem.32x32.png") {
265     my $other = "$stem.32x32.png~";
266    
267     if (0 > aio_lstat $other or (-M _) > (-M $path)) {
268     fork_sub {
269     system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~";
270 root 1.31 system $OPTIPNG, "-i0", "-q", "$other~";
271    
272     # reduce smoothfaces >10000 bytes
273     if ($stem =~ /_S\./ && (-s "$other~") > 10000) {
274     my $ncolor = 256;
275     while () {
276 root 1.33 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
277 root 1.31 system $OPTIPNG, "-i0", "-q", "$other~~";
278     last if 10000 > -s "$other~~";
279     $ncolor = int $ncolor * 0.9;
280     $ncolor > 8 or die "cannot reduce filesize to < 10000 bytes";
281     }
282    
283     printf "reduced %s from %d to %d bytes using %d colours.\n",
284     $other, -s "$other~", -s "$other~~", $ncolor
285 root 1.32 if $VERBOSE >= 2;
286 root 1.31 rename "$other~~", "$other~";
287     }
288    
289 root 1.19 die "$other~ has zero size, aborting." unless -s "$other~";
290     rename "$other~", $other;
291     };
292     }
293    
294 root 1.21 #warn "scaled down $path to $other\n";#d#
295 root 1.53 push @c_png, [$other, !$CACHE];
296 root 1.19 }
297     }
298    
299     (my $face = $stem) =~ s/^.*\///;
300    
301 root 1.23 # split all bigfaces, but avoid smoothfaces (*_S)
302 root 1.3 if (($w > $T || $h > $T) && $face !~ /_S\./) {
303     # split
304     my @tile;
305     for my $x (0 .. (int $w / $T) - 1) {
306     for my $y (0 .. (int $h / $T) - 1) {
307     my $file = "$path+$x+$y~";
308     aio_lstat $file;
309     push @tile, [$x, $y, $file, (stat _)[9]];
310     }
311 root 1.2 }
312    
313 root 1.3 my $mtime = (lstat $path)[9];
314     my @todo = grep { $_->[3] <= $mtime } @tile;
315     if (@todo) {
316     fork_sub {
317     open my $convert, "|-", $CONVERT,
318     "png:-",
319     (map {
320     (
321     "(",
322     "+clone",
323     -crop => (sprintf "%dx%d+%d+%d", $T, $T, $_->[0] * $T, $_->[1] * $T),
324 root 1.7 "+repage",
325 root 1.19 -quality => "00",
326     -write => "png32:$_->[2]~",
327 root 1.3 "+delete",
328     ")",
329     )
330     } @todo),
331     "null:";
332    
333     binmode $convert;
334     print $convert $png;
335     close $convert;
336    
337     # pass 2, optimise, and rename
338     for (@todo) {
339     system $OPTIPNG, "-o5", "-i0", "-q", "$_->[2]~";
340 root 1.19 die "$_->[2]~ has zero size, aborting." unless -s "$_->[2]~";
341 root 1.3 rename "$_->[2]~", $_->[2];
342     }
343     };
344 root 1.2 }
345    
346 root 1.3 for (@tile) {
347     my ($x, $y, $file) = @$_;
348     my $tile;
349    
350     if (0 > aio_load $file, $tile) {
351     die "$path: unable to read tile +$x+$y, aborting.\n";
352     }
353     IO::AIO::aio_unlink $file unless $CACHE;
354 root 1.19 commit_png $x|$y ? "$face+$x+$y" : $face, $tile, $T;
355 root 1.2 }
356 root 1.3 } else {
357     # use as-is (either small, use smooth)
358 root 1.19 commit_png $face, $png, $T;
359 root 1.3 }
360 root 1.19
361     aio_unlink $path if $delete;
362 root 1.3 }
363 root 1.2 }
364    
365 root 1.3 sub process_arc {
366 root 1.53 while (my $job = $c_arc->get) {
367     my ($dir, $file) = @$job;
368 root 1.2
369 root 1.3 my $arc;
370     aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/
371 root 1.4
372 root 1.2 my $arc = read_arch "$dir/$file";
373 root 1.4 for my $o (values %$arc) {
374 root 1.30 push @ARC, $o;
375     for (my $m = $o; $m; $m = $m->{more}) {
376     $ARC{$m->{_name}} = $m;
377     }
378 root 1.6
379 root 1.10 $o->{editor_folder} = $dir;
380    
381 root 1.6 my $visibility = delete $o->{visibility};
382     my $magicmap = delete $o->{magicmap};
383    
384     # find upper left corner :/
385     # omg, this is sooo broken
386 root 1.4 my ($dx, $dy);
387     for (my $o = $o; $o; $o = $o->{more}) {
388     $dx = $o->{x} if $o->{x} < $dx;
389     $dy = $o->{y} if $o->{y} < $dy;
390     }
391 root 1.6
392 root 1.4 for (my $o = $o; $o; $o = $o->{more}) {
393     my $x = $o->{x} - $dx;
394     my $y = $o->{y} - $dy;
395 root 1.6
396     my $ext = $x|$y ? "+$x+$y" : "";
397    
398 root 1.26 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
399 root 1.6
400 root 1.35 $visibility = delete $o->{visibility} if exists $o->{visibility};
401     $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
402 root 1.6
403     my $anim = delete $o->{anim};
404    
405     if ($anim) {
406 root 1.24 # possibly add $ext to the animation name to avoid
407     # the need to specify archnames for all parts
408     # of a multipart archetype.
409 root 1.8 $o->{animation} = "$o->{_name}";
410 root 1.24 my $facings = 1;
411     my @frames;
412 root 1.6
413     for (@$anim) {
414 root 1.24 if (/^facings\s+(\d+)/) {
415     $facings = $1*1;
416     } elsif (/^blank.x11$|^empty.x11$/) {
417     push @frames, $_;
418     } else {
419     push @frames, "$_$ext";
420     }
421 root 1.6 }
422    
423 root 1.24 $ANIMINFO{$o->{animation}} = {
424     facings => $facings,
425     frames => \@frames,
426     };
427 root 1.6 }
428    
429 root 1.58 for ($o->{face} || (), @{$anim || []}) {
430     next if /^facings\s/;
431    
432     my $face = $_;
433     $face =~ s/\+\d+\+\d+$//; # remove tile offset coordinates
434 root 1.6
435 root 1.56 my $info = $FACEINFO{$face} ||= { };
436     $info->{arc} = $o;
437    
438     next if $face =~ /^blank.x11$|^empty.x11$/;
439 root 1.6
440     $info->{visibility} = $visibility if defined $visibility;
441     $info->{magicmap} = $magicmap if defined $magicmap;
442 root 1.4 }
443 root 1.12
444     if (my $smooth = delete $o->{smoothface}) {
445 root 1.54 my %kv = split /\s+/, $smooth;
446 root 1.23 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
447     while (my ($face, $smooth) = each %kv) {
448 root 1.54 $FACEINFO{$smooth}{arc} = $o;
449    
450 root 1.23 $FACEINFO{$face}{smooth} = $smooth;
451     $FACEINFO{$face}{smoothlevel} = $level;
452 root 1.14 }
453 root 1.12 }
454 root 1.4 }
455     }
456 root 1.3 }
457 root 1.2 }
458    
459 root 1.3 sub process_trs {
460 root 1.53 while (my $job = $c_trs->get) {
461     my ($dir, $file) = @$job;
462 root 1.12 my $path = "$dir/$file";
463    
464     my $trs;
465     if (0 > aio_load $path, $trs) {
466     warn "$path: $!, skipping.\n";
467     next;
468     }
469    
470     $TRS .= $trs;
471 root 1.3 }
472 root 1.2 }
473    
474 root 1.45 my %FILECACHE;
475    
476     sub load_cached($;$) {
477     unless (exists $FILECACHE{$_[0]}) {
478     my $data;
479     if (0 < aio_load $_[0], $data) {
480 root 1.49 if ($_[1]) {
481     $data = eval { $_[1]->($data) };
482     warn "$_[0]: $@" if $@;
483     }
484 root 1.45 }
485    
486     $FILECACHE{$_[0]} = $data;
487     }
488    
489     $FILECACHE{$_[0]}
490     }
491    
492 root 1.37 sub process_res {
493 root 1.53 while (my $job = $c_res->get) {
494     my ($dir, $file, $type) = @$job;
495 root 1.37
496     my $data;
497     aio_load "$dir/$file", $data;
498    
499 root 1.45 my $meta = load_cached "$dir/meta", sub { JSON::XS::from_json shift };
500 root 1.38
501 root 1.50 next if $meta && !exists $meta->{$file};
502 root 1.49
503 root 1.48 $meta = {
504     %{ $meta->{"" } || {} },
505     %{ $meta->{$file} || {} },
506     };
507    
508 root 1.49 if ($meta->{license} =~ s/^#//) {
509     $meta->{license} = ({
510     "pd" => "Public Domain",
511     "gpl" => "GNU General Public License, version 3.0 or any later",
512     "cc/by/2.0" => "Licensed under Creative Commons Attribution 2.0 http://creativecommons.org/licenses/by/2.0/",
513 root 1.53 "cc/by/2.5" => "Licensed under Creative Commons Attribution 2.5 http://creativecommons.org/licenses/by/2.5/",
514 root 1.49 "cc/by/3.0" => "Licensed under Creative Commons Attribution 3.0 http://creativecommons.org/licenses/by/3.0/",
515     })->{$meta->{license}}
516     || warn "$dir/$file: license tag '$meta->{license}' not found.";
517     }
518    
519 root 1.37 $file =~ s/\.res$//;
520 root 1.46 $file =~ s/\.(ogg|wav|jpg|png)$//;
521 root 1.37
522     substr $dir, 0, 1 + length $PATH, "";
523    
524     $RESOURCE{"$dir/$file"} = {
525 root 1.45 type => (delete $meta->{type}) || $type,
526     data => $data,
527     %$meta ? (meta => $meta) : (),
528 root 1.37 };
529     }
530     }
531    
532 root 1.3 sub find_files;
533     sub find_files {
534 root 1.2 my ($path) = @_;
535    
536 root 1.3 IO::AIO::aioreq_pri 4;
537     IO::AIO::aio_scandir $path, 4, sub {
538 root 1.2 my ($dirs, $nondirs) = @_;
539    
540 root 1.3 find_files "$path/$_"
541 root 1.2 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs;
542    
543 root 1.43 my $dir = $path;
544     substr $dir, 0, 1 + length $PATH, "";
545    
546 root 1.2 for my $file (@$nondirs) {
547 root 1.44 if ($dir =~ /^music(?:\/|$)/) {
548 root 1.53 $c_res->put ([$path, $file, 3]) # FT_MUSIC
549 root 1.44 if $file =~ /\.(ogg)$/;
550    
551 root 1.47 } elsif ($dir =~ /^sound(?:\/|$)/) {
552 root 1.53 $c_res->put ([$path, $file, 5]) # FT_SOUND
553 root 1.44 if $file =~ /\.(wav|ogg)$/;
554    
555     } elsif ($dir =~ /^res(?:\/|$)/) {
556 root 1.53 $c_res->put ([$path, $file, 0]) # FT_FACE
557 root 1.44 if $file =~ /\.(jpg|png)$/;
558 root 1.53 $c_res->put ([$path, $file, 7]) # FT_RSRC
559 root 1.44 if $file =~ /\.(res)$/;
560    
561 root 1.43 } elsif ($file =~ /\.png$/) {
562 root 1.53 push @c_png, ["$path/$file", 0];
563 root 1.44
564 root 1.2 } elsif ($file =~ /\.trs$/) {
565 root 1.53 $c_trs->put ([$path, $file]);
566 root 1.44
567 root 1.2 } elsif ($file =~ /\.arc$/) {
568 root 1.53 $c_arc->put ([$path, $file]);
569 root 1.44
570 root 1.2 } else {
571 root 1.33 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
572 root 1.2 }
573     }
574     };
575     }
576    
577     sub inst_arch($) {
578     my (undef, $path) = @_;
579    
580 root 1.37 $PATH = $path;
581    
582 root 1.29 print "\n",
583     "Installing '$path' to '$DATADIR'\n",
584 root 1.28 "\n",
585 root 1.27 "This can take a long time if you run this\n",
586     "for the first time or do not use --cache.\n",
587     "\n",
588     "Unless you run verbosely, all following warning\n",
589     "or error messages indicate serious problems.\n",
590     "\n";
591 root 1.2
592     if (!-d "$path/treasures") {
593     warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n";
594     exit 1 unless $FORCE;
595     }
596    
597 root 1.53 print "scanning files...\n" if $VERBOSE;
598    
599 root 1.3 find_files $path;
600 root 1.53
601     my @a_arc = map +(async \&process_arc), 1..2;
602     my @a_res = map +(async \&process_res), 1..2;
603     my @a_trs = map +(async \&process_trs), 1..2;
604    
605 root 1.2 IO::AIO::flush;
606    
607 root 1.53 $c_res->put (undef) for @a_res;
608     $c_arc->put (undef) for @a_arc;
609     $c_trs->put (undef) for @a_trs;
610    
611     print "start file scan, arc, res processing...\n" if $VERBOSE;
612    
613     $_->join for @a_arc; # need to parse all archetypes before png processing
614 root 1.3
615 root 1.53 print "end arc, start png processing...\n" if $VERBOSE;
616    
617     # four png crunchers work fine for my 2x smp machine
618     my @a_png = map +(async \&process_png), 1..4;
619    
620     $_->join for (@a_trs, @a_res, @a_png);
621    
622     print "scanning done, processing results...\n" if $VERBOSE;
623 root 1.5 {
624 root 1.27 # remove path prefix from editor_folder
625     substr $_->{editor_folder}, 0, 1 + length $path, ""
626     for values %ARC;
627    
628 root 1.53 print "resolving inheritance tree...\n" if $VERBOSE;
629 root 1.27 # resolve inherit
630     while () {
631     my $progress;
632     my $loop;
633    
634     for my $o (values %ARC) {
635     if (my $other = $o->{inherit}) {
636     if (my $s = $ARC{$other}) {
637     if ($s->{inherit}) {
638     $loop = $s;
639     } else {
640     delete $o->{inherit};
641 root 1.30 my %s = %$s;
642     delete @s{qw(_name more name name_pl)};
643     %$o = ( %s, %$o );
644 root 1.27 ++$progress;
645     }
646     } else {
647     warn "'$o->{_name}' tries to inherit from undefined archetype '$other', skipping.\n";
648     delete $ARC{$o->{_name}};
649     }
650     }
651     }
652    
653     unless ($progress) {
654     die "inheritance loop detected starting at archetype '$loop->{_name}', aborting.\n"
655     if $loop;
656    
657     last;
658     }
659     }
660    
661 root 1.34 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit
662     @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC;
663    
664 root 1.53 print "writing archetypes...\n" if $VERBOSE;
665 root 1.5 open my $fh, ">:utf8", "$DATADIR/archetypes~"
666     or die "$DATADIR/archetypes~: $!";
667 root 1.30 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
668 root 1.5 }
669    
670 root 1.6 {
671 root 1.53 print "writing treasures...\n" if $VERBOSE;
672 root 1.12 open my $fh, ">:utf8", "$DATADIR/treasures~"
673     or die "$DATADIR/treasures~: $!";
674     print $fh $TRS;
675     }
676    
677     {
678 root 1.53 print "processing facedata...\n" if $VERBOSE;
679 root 1.6 while (my ($k, $v) = each %FACEINFO) {
680 root 1.12 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n";
681 root 1.19 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n";
682 root 1.5
683 root 1.20 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";
685    
686 root 1.35 if (my $magicmap = $v->{magicmap}) {
687     $magicmap =~ y/A-Z_\-/a-z/d;
688     $v->{magicmap} = $COLOR{$magicmap};
689     }
690 root 1.53
691     delete $v->{arc};
692 root 1.6 }
693    
694 root 1.53 print "writing facedata...\n" if $VERBOSE;
695 root 1.19 open my $fh, ">:perlio", "$DATADIR/facedata~"
696     or die "$DATADIR/facedata~: $!";
697 root 1.6
698 root 1.25 print $fh freeze {
699 root 1.24 version => 2,
700     faceinfo => \%FACEINFO,
701     animinfo => \%ANIMINFO,
702 root 1.37 resource => \%RESOURCE,
703 root 1.24 };
704 root 1.5 }
705    
706 root 1.53 print "committing files...\n" if $VERBOSE;
707    
708 root 1.24 for (qw(archetypes facedata treasures)) {
709 root 1.6 chmod 0644, "$DATADIR/$_~";
710 root 1.13 rename "$DATADIR/$_~", "$DATADIR/$_"
711     or die "$DATADIR/$_: $!";
712 root 1.6 }
713 root 1.13
714     print "archetype data installed successfully.\n";
715 root 1.2 }
716     }
717    
718     Getopt::Long::Configure ("bundling", "no_ignore_case");
719     GetOptions (
720     "verbose|v:+" => \$VERBOSE,
721 root 1.3 "cache" => \$CACHE,
722 root 1.2 "quiet|q" => sub { $VERBOSE = 0 },
723     "force" => sub { $FORCE = 1 },
724     "install-arch=s" => \&inst_arch,
725     "install-maps=s" => \&inst_maps,
726     "print-statedir" => sub { print "@pkgstatedir@\n" },
727     "print-datadir" => sub { print "$DATADIR\n" },
728     "print-confdir" => sub { print "@pkgconfdir@\n" },
729     "print-libdir" => sub { print "@libdir@/@PACKAGE@\n" },
730     "print-bindir" => sub { print "@bindir@/@PACKAGE@\n" },
731     ) or usage;
732