ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/utils/cfutil.in
Revision: 1.111
Committed: Fri Apr 22 02:03:12 2011 UTC (13 years, 1 month ago) by root
Branch: MAIN
Changes since 1.110: +118 -18 lines
Log Message:
move gridmap to arch, refactor cf.pm a bit

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