ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/utils/cfutil.in
Revision: 1.28
Committed: Wed Apr 18 09:26:46 2007 UTC (17 years, 1 month ago) by root
Branch: MAIN
Changes since 1.27: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!@PERL@
2
3 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 my $IDENTIFY = "@IDENTIFY@";
12 my $OPTIPNG = "@OPTIPNG@";
13 my $RSYNC = "@RSYNC@";
14
15 use Getopt::Long;
16 use Coro::Event;
17 use AnyEvent;
18 use IO::AIO ();
19 use File::Temp;
20 use Crossfire;
21 use Coro;
22 use Coro::AIO;
23 use POSIX ();
24 use Digest::MD5;
25 use Coro::Storable; $Storable::canonical = 1;
26
27 sub usage {
28 warn <<EOF;
29 Usage: cfutil [-v] [-q] [--force] [--cache]
30 [--install-arch path]
31 [--install-maps maps]
32 [--print-statedir]
33 [--print-confdir]
34 [--print-datadir]
35 [--print-libdir]
36 [--print-bindir]
37 EOF
38 exit 1;
39 }
40
41 my $VERBOSE = 1;
42 my $CACHE = 0;
43 my $FORCE;
44 my $TMPDIR = "/tmp/cfutil$$~";
45 my $TMPFILE = "aaaa0";
46
47 END { system "rm", "-rf", $TMPDIR }
48
49 Event->signal (signal => "INT", cb => sub { exit 1 });
50 Event->signal (signal => "TERM", cb => sub { exit 1 });
51
52 mkdir $TMPDIR, 0700
53 or die "$TMPDIR: $!";
54
55 sub fork_sub(&) {
56 my ($cb) = @_;
57
58 if (my $pid = fork) {
59 my $current = $Coro::current;
60 my $w = AnyEvent->child (pid => $pid, cb => sub { $current->ready });
61 Coro::schedule;
62 } else {
63 eval { $cb->() };
64 POSIX::_exit 0 unless $@;
65 warn $@;
66 POSIX::_exit 1;
67 }
68 }
69
70 sub inst_maps($) {
71 my (undef, $path) = @_;
72
73 print "installing '$path' to '$DATADIR/maps'\n";
74
75 if (!-f "$path/regions") {
76 warn "'$path' does not look like a maps directory ('regions' file is missing).\n";
77 exit 1 unless $FORCE;
78 }
79
80 system $RSYNC, "-av", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded"
81 and die "map installation failed.\n";
82
83 print "maps installed successfully.\n";
84 }
85
86 {
87 our %ANIMINFO;
88 our %FACEINFO;
89 our %ARC;
90 our $TRS;
91 our $NFILE;
92
93 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
94
95 our (@png, @trs, @arc); # files we are interested in
96
97 sub commit_png($$$) {
98 my ($name, $data, $T) = @_;
99
100 $FACEINFO{$name}{"data$T"} = $data;
101 }
102
103 sub process_png {
104 while (@png) {
105 my ($path, $delete) = @{pop @png};
106
107 my $png;
108 aio_lstat $path;
109 my ($size, $mtime) = (stat _)[7,9];
110
111 if (0 > aio_load $path, $png) {
112 warn "$path: $!, skipping.\n";
113 next;
114 }
115
116 my $stem = $path;
117 my $T;
118
119 if ($stem =~ s/\.32x32\.png~?$//) {
120 $T = 32;
121 } elsif ($stem =~ s/\.64x64\.png~?$//) {
122 $T = 64;
123 } else {
124 warn "$path: weird filename, skipping.\n";
125 next;
126 }
127
128 # quickly extract width and height of the (necessarily PNG) image
129 unless ($png =~ /^\x89PNG\x0d\x0a\x1a\x0a....IHDR(........)/s) {
130 warn "$path: not a recognized png file, skipping.\n";
131 next;
132 }
133
134 my ($w, $h) = unpack "NN", $1;
135
136 if ($w < $T || $h < $T) {
137 warn "$path: too small ($w $h), skipping.\n";
138 next;
139 }
140
141 if ($w % $T || $h % $T) {
142 warn "$path: weird png size ($w $h), skipping.\n";
143 next;
144 }
145
146 unless ($path =~ /~$/) {
147 # possibly enlarge
148 if (0 > aio_stat "$stem.64x64.png") {
149 my $other = "$stem.64x64.png~";
150
151 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
152 my $wrap = 0; # for the time being
153 fork_sub {
154 system "convert png:\Q$path\E -depth 8 rgba:-"
155 . "| $exec_prefix/bin/cfhq2xa $w $h $wrap"
156 . "| convert -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $QUANTIZE -quality 00 png32:\Q$other\E~"
157 and die "convert/hq2xa pipeline error: status $? ($!)";
158 system $OPTIPNG, "-o5", "-i0", "-q", "$other~";
159 die "$other~ has zero size, aborting." unless -s "$other~";
160 rename "$other~", $other;
161 };
162 }
163
164 push @png, [$other, !$CACHE];
165 }
166
167 # possibly scale down
168 if (0 > aio_stat "$stem.32x32.png") {
169 my $other = "$stem.32x32.png~";
170
171 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
172 fork_sub {
173 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~";
174 system $OPTIPNG, "-o5", "-i0", "-q", "$other~";
175 die "$other~ has zero size, aborting." unless -s "$other~";
176 rename "$other~", $other;
177 };
178 }
179
180 #warn "scaled down $path to $other\n";#d#
181 push @png, [$other, !$CACHE];
182 }
183 }
184
185 (my $face = $stem) =~ s/^.*\///;
186
187 # split all bigfaces, but avoid smoothfaces (*_S)
188 if (($w > $T || $h > $T) && $face !~ /_S\./) {
189 # split
190 my @tile;
191 for my $x (0 .. (int $w / $T) - 1) {
192 for my $y (0 .. (int $h / $T) - 1) {
193 my $file = "$path+$x+$y~";
194 aio_lstat $file;
195 push @tile, [$x, $y, $file, (stat _)[9]];
196 }
197 }
198
199 my $mtime = (lstat $path)[9];
200 my @todo = grep { $_->[3] <= $mtime } @tile;
201 if (@todo) {
202 fork_sub {
203 open my $convert, "|-", $CONVERT,
204 "png:-",
205 (map {
206 (
207 "(",
208 "+clone",
209 -crop => (sprintf "%dx%d+%d+%d", $T, $T, $_->[0] * $T, $_->[1] * $T),
210 "+repage",
211 -quality => "00",
212 -write => "png32:$_->[2]~",
213 "+delete",
214 ")",
215 )
216 } @todo),
217 "null:";
218
219 binmode $convert;
220 print $convert $png;
221 close $convert;
222
223 # pass 2, optimise, and rename
224 for (@todo) {
225 system $OPTIPNG, "-o5", "-i0", "-q", "$_->[2]~";
226 die "$_->[2]~ has zero size, aborting." unless -s "$_->[2]~";
227 rename "$_->[2]~", $_->[2];
228 }
229 };
230 }
231
232 for (@tile) {
233 my ($x, $y, $file) = @$_;
234 my $tile;
235
236 if (0 > aio_load $file, $tile) {
237 die "$path: unable to read tile +$x+$y, aborting.\n";
238 }
239 IO::AIO::aio_unlink $file unless $CACHE;
240 commit_png $x|$y ? "$face+$x+$y" : $face, $tile, $T;
241 }
242 } else {
243 # use as-is (either small, use smooth)
244 commit_png $face, $png, $T;
245 }
246
247 aio_unlink $path if $delete;
248 }
249 }
250
251 sub process_arc {
252 while (@arc) {
253 my ($dir, $file) = @{pop @arc};
254
255 my $arc;
256 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/
257
258 my $arc = read_arch "$dir/$file";
259 for my $o (values %$arc) {
260 $ARC{$o->{_name}} = $o;
261
262 $o->{editor_folder} = $dir;
263
264 my $visibility = delete $o->{visibility};
265 my $magicmap = delete $o->{magicmap};
266
267 # find upper left corner :/
268 # omg, this is sooo broken
269 my ($dx, $dy);
270 for (my $o = $o; $o; $o = $o->{more}) {
271 $dx = $o->{x} if $o->{x} < $dx;
272 $dy = $o->{y} if $o->{y} < $dy;
273 }
274
275 for (my $o = $o; $o; $o = $o->{more}) {
276 my $x = $o->{x} - $dx;
277 my $y = $o->{y} - $dy;
278
279 my $ext = $x|$y ? "+$x+$y" : "";
280
281 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
282
283 my $visibility = delete $o->{visibility} if exists $o->{visibility};
284 my $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
285
286 my $anim = delete $o->{anim};
287
288 if ($anim) {
289 # possibly add $ext to the animation name to avoid
290 # the need to specify archnames for all parts
291 # of a multipart archetype.
292 $o->{animation} = "$o->{_name}";
293 my $facings = 1;
294 my @frames;
295
296 for (@$anim) {
297 if (/^facings\s+(\d+)/) {
298 $facings = $1*1;
299 } elsif (/^blank.x11$|^empty.x11$/) {
300 push @frames, $_;
301 } else {
302 push @frames, "$_$ext";
303 }
304 }
305
306 $ANIMINFO{$o->{animation}} = {
307 facings => $facings,
308 frames => \@frames,
309 };
310 }
311
312 for my $face ($o->{face} || (), @{$anim || []}) {
313 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/;
314
315 my $info = $FACEINFO{$face} ||= {};
316
317 $info->{visibility} = $visibility if defined $visibility;
318 $info->{magicmap} = $magicmap if defined $magicmap;
319 }
320
321 if (my $smooth = delete $o->{smoothface}) {
322 my %kv =split /\s+/, $smooth;
323 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
324 while (my ($face, $smooth) = each %kv) {
325 $FACEINFO{$face}{smooth} = $smooth;
326 $FACEINFO{$face}{smoothlevel} = $level;
327 }
328 }
329 }
330 }
331 }
332 }
333
334 sub process_trs {
335 while (@trs) {
336 my ($dir, $file) = @{pop @trs};
337 my $path = "$dir/$file";
338
339 my $trs;
340 if (0 > aio_load $path, $trs) {
341 warn "$path: $!, skipping.\n";
342 next;
343 }
344
345 $TRS .= $trs;
346 }
347 }
348
349 sub find_files;
350 sub find_files {
351 my ($path) = @_;
352
353 IO::AIO::aioreq_pri 4;
354 IO::AIO::aio_scandir $path, 4, sub {
355 my ($dirs, $nondirs) = @_;
356
357 find_files "$path/$_"
358 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs;
359
360 for my $file (@$nondirs) {
361 if ($file =~ /\.png$/) {
362 push @png, ["$path/$file", 0];
363 } elsif ($file =~ /\.trs$/) {
364 push @trs, [$path, $file];
365 } elsif ($file =~ /\.arc$/) {
366 push @arc, [$path, $file];
367 } else {
368 warn "ignoring $path/$file\n" if $VERBOSE >= 2;
369 }
370 }
371 };
372 }
373
374 sub inst_arch($) {
375 my (undef, $path) = @_;
376
377 print "Installing '$path' to '$DATADIR'\n",
378 "\n",
379 "This can take a long time if you run this\n",
380 "for the first time or do not use --cache.\n",
381 "\n",
382 "Unless you run verbosely, all following warning\n",
383 "or error messages indicate serious problems.\n",
384 "\n";
385
386 if (!-d "$path/treasures") {
387 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n";
388 exit 1 unless $FORCE;
389 }
390
391 find_files $path;
392 IO::AIO::flush;
393
394 $_->join for (
395 # four png crunchers work fine for my 2x smp machine
396 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png),
397 (async \&process_trs), (async \&process_trs),
398 (async \&process_arc), (async \&process_arc),
399 );
400
401 {
402 # remove path prefix from editor_folder
403 substr $_->{editor_folder}, 0, 1 + length $path, ""
404 for values %ARC;
405
406 # resolve inherit
407 while () {
408 my $progress;
409 my $loop;
410
411 for my $o (values %ARC) {
412 if (my $other = $o->{inherit}) {
413 if (my $s = $ARC{$other}) {
414 if ($s->{inherit}) {
415 $loop = $s;
416 } else {
417 delete $o->{inherit};
418 %$o = ( %$s, %$o );
419 ++$progress;
420 }
421 } else {
422 warn "'$o->{_name}' tries to inherit from undefined archetype '$other', skipping.\n";
423 delete $ARC{$o->{_name}};
424 }
425 }
426 }
427
428 unless ($progress) {
429 die "inheritance loop detected starting at archetype '$loop->{_name}', aborting.\n"
430 if $loop;
431
432 last;
433 }
434 }
435
436 open my $fh, ">:utf8", "$DATADIR/archetypes~"
437 or die "$DATADIR/archetypes~: $!";
438 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } values %ARC];
439 }
440
441 {
442 open my $fh, ">:utf8", "$DATADIR/treasures~"
443 or die "$DATADIR/treasures~: $!";
444 print $fh $TRS;
445 }
446
447 {
448 while (my ($k, $v) = each %FACEINFO) {
449 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n";
450 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n";
451
452 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
453 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
454
455 $v->{chksum32} = Digest::MD5::md5 $v->{data32};
456 $v->{chksum64} = Digest::MD5::md5 $v->{data64};
457 }
458
459 open my $fh, ">:perlio", "$DATADIR/facedata~"
460 or die "$DATADIR/facedata~: $!";
461
462 print $fh freeze {
463 version => 2,
464 faceinfo => \%FACEINFO,
465 animinfo => \%ANIMINFO,
466 };
467 }
468
469 for (qw(archetypes facedata treasures)) {
470 chmod 0644, "$DATADIR/$_~";
471 rename "$DATADIR/$_~", "$DATADIR/$_"
472 or die "$DATADIR/$_: $!";
473 }
474
475 print "archetype data installed successfully.\n";
476 }
477 }
478
479 Getopt::Long::Configure ("bundling", "no_ignore_case");
480 GetOptions (
481 "verbose|v:+" => \$VERBOSE,
482 "cache" => \$CACHE,
483 "quiet|q" => sub { $VERBOSE = 0 },
484 "force" => sub { $FORCE = 1 },
485 "install-arch=s" => \&inst_arch,
486 "install-maps=s" => \&inst_maps,
487 "print-statedir" => sub { print "@pkgstatedir@\n" },
488 "print-datadir" => sub { print "$DATADIR\n" },
489 "print-confdir" => sub { print "@pkgconfdir@\n" },
490 "print-libdir" => sub { print "@libdir@/@PACKAGE@\n" },
491 "print-bindir" => sub { print "@bindir@/@PACKAGE@\n" },
492 ) or usage;
493