ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/utils/cfutil.in
Revision: 1.86
Committed: Tue Oct 5 22:33:10 2010 UTC (13 years, 7 months ago) by root
Branch: MAIN
Changes since 1.85: +11 -4 lines
Log Message:
support default glyph in cfutil

File Contents

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