ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/utils/cfutil.in
(Generate patch)

Comparing deliantra/server/utils/cfutil.in (file contents):
Revision 1.47 by root, Thu Jul 26 21:44:43 2007 UTC vs.
Revision 1.126 by root, Wed Jan 11 11:39:02 2017 UTC

1#!@PERL@ 1#!@PERL@
2 2
3use strict; 3#
4# This file is part of Deliantra, the Roguelike Realtime MMORPG.
5#
6# Copyright (©) 2007,2008,2009,2010,2011,2012 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
25use common::sense;
4 26
5my $prefix = "@prefix@"; 27my $prefix = "@prefix@";
6my $exec_prefix = "@exec_prefix@"; 28my $exec_prefix = "@exec_prefix@";
7my $datarootdir = "@datarootdir@"; 29my $datarootdir = "@datarootdir@";
8my $DATADIR = "@datadir@/@PACKAGE@"; 30my $DATADIR = "@datadir@/@PACKAGE@";
9 31
10my $CONVERT = "@CONVERT@"; 32my $CONVERT = "@CONVERT@";
11#my $IDENTIFY = "@IDENTIFY@"; 33my $IDENTIFY = "@IDENTIFY@";
12my $OPTIPNG = "@OPTIPNG@"; 34my $OPTIPNG = "@OPTIPNG@";
13my $RSYNC = "@RSYNC@"; 35my $RSYNC = "@RSYNC@";
14my $PNGNQ = "@PNGNQ@"; 36my $PNGNQ = "@PNGNQ@";
15 37
16use Getopt::Long; 38use Getopt::Long;
17use Coro::Event; 39use File::Temp;
40use POSIX ();
41use Carp;
42
43use YAML::XS ();
44use Digest::MD5 ();
45use Storable ();
46use JSON::XS ();
47use IO::AIO ();
48use Compress::LZF ();
49
18use AnyEvent; 50use AnyEvent;
19use IO::AIO (); 51use Coro 5.12;
20use File::Temp;
21use Crossfire;
22use Coro; 52use Coro::EV;
23use Coro::AIO; 53use Coro::AIO;
24use POSIX (); 54use Coro::Util;
25use Digest::MD5; 55use Coro::Channel;
26use Carp; 56use Coro::AnyEvent;
27use Coro::Storable; $Storable::canonical = 1; 57use Coro::Storable; $Storable::canonical = 1;
58
59use Deliantra;
28 60
29$SIG{QUIT} = sub { Carp::cluck "QUIT" }; 61$SIG{QUIT} = sub { Carp::cluck "QUIT" };
30 62
31sub usage { 63sub usage {
32 warn <<EOF; 64 warn <<EOF;
45my $VERBOSE = 1; 77my $VERBOSE = 1;
46my $CACHE = 0; 78my $CACHE = 0;
47my $FORCE; 79my $FORCE;
48my $TMPDIR = "/tmp/cfutil$$~"; 80my $TMPDIR = "/tmp/cfutil$$~";
49my $TMPFILE = "aaaa0"; 81my $TMPFILE = "aaaa0";
82my @COMMIT;
50 83
51our %COLOR = ( 84our %COLOR = (
85 # original cf colours
52 black => 0, 86 black => 0,
53 white => 1, 87 white => 1,
54 navy => 2, 88 navy => 2, # "dark blue"
55 red => 3, 89 red => 3,
56 orange => 4, 90 orange => 4,
57 blue => 5, 91 blue => 5, # "light blue"
58 darkorange => 6, 92 darkorange => 6,
59 green => 7, 93 green => 7,
60 lightgreen => 8, 94 lightgreen => 8,
61 grey => 9, 95 grey => 9,
96 brown => 10, # "yellow"
97 gold => 11, # "light yellow"
98 tan => 12, # yellowish gray
99
100 # new for deliantra
62 brown => 10, 101 none => 13,
102
103 # compatibility to existing archetypes
104 lightblue => 5,
63 gold => 11, 105 gray => 9,
106 yellow => 11,
64 tan => 12, 107 khaki => 12,
65); 108);
66 109
67END { system "rm", "-rf", $TMPDIR } 110END { system "rm", "-rf", $TMPDIR }
68 111
69Event->signal (signal => "INT", cb => sub { exit 1 }); 112my $s_INT = AE::signal INT => sub { exit 1 };
70Event->signal (signal => "TERM", cb => sub { exit 1 }); 113my $s_TERM = AE::signal TERM => sub { exit 1 };
114
115our %hash;
116
117# here we could try to avoid collisions and reduce chksum size further
118sub make_hash($\$\$;$) {
119 my ($id, $dataref, $hashref, $clen) = @_;
120
121 my $hash = substr +(Digest::MD5::md5 $$dataref), 0, $clen || 5;
122
123 if (exists $hash{$hash}) {
124 # hash collision, but some files are simply identical
125 if (${$hash{$hash}[1]} ne $$dataref) {
126 warn "ERROR: hash collision $hash{$hash}[0] vs. $id (increase the default \$clen in make_hash?)\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
137sub optipng($) {
138 system $OPTIPNG, "-o5", "-i0", "-q", $_[0];
139 die "$_[0] has zero size, aborting." unless -s $_[0];
140}
71 141
72mkdir $TMPDIR, 0700 142mkdir $TMPDIR, 0700
73 or die "$TMPDIR: $!"; 143 or die "$TMPDIR: $!";
74 144
75sub fork_sub(&) { 145sub fork_exec(&) {
76 my ($cb) = @_; 146 my ($cb) = @_;
77 147
78 if (my $pid = fork) { 148 if (my $pid = fork) {
79 my $current = $Coro::current; 149 my $current = $Coro::current;
80 my $w = AnyEvent->child (pid => $pid, cb => sub { $current->ready }); 150 my $w = AnyEvent->child (pid => $pid, cb => sub { $current->ready });
85 warn $@; 155 warn $@;
86 POSIX::_exit 1; 156 POSIX::_exit 1;
87 } 157 }
88} 158}
89 159
160sub imgsize($) {
161 open my $fh, "-|", $IDENTIFY, qw(-ping -format %w,%h --), $_[0]
162 or die "$IDENTIFY: $!";
163
164 Coro::AnyEvent::readable $fh;
165
166 my ($w, $h) = split /,/, <$fh>;
167
168 ($w+0, $h+0)
169}
170
171# make $dst from $src, if not uptodate, by calling $how
172sub make_file($$$) {
173 my ($src, $dst, $how) = @_;
174
175 my $t = (aio_stat $dst) ? -1 : (stat _)[9];
176
177 for (ref $src ? @$src : $src) {
178 aio_stat $_
179 and die "$_: $!";
180
181 if ((stat _)[9] > $t) {
182 # outdated, redo
183 $how->();
184 last;
185 }
186 }
187}
188
90sub inst_maps($) { 189sub inst_maps($) {
91 my (undef, $path) = @_; 190 my (undef, $path) = @_;
92 191
93 print "\nInstalling '$path' to '$DATADIR/maps'\n\n"; 192 print "\nInstalling '$path' to '$DATADIR/maps'\n\n";
94 193
95 if (!-f "$path/regions") { 194 if (!-f "$path/regions") {
96 warn "'$path' does not look like a maps directory ('regions' file is missing).\n"; 195 warn "ERROR: '$path' does not look like a maps directory ('regions' file is missing).\n";
97 exit 1 unless $FORCE; 196 exit 1 unless $FORCE;
98 } 197 }
99 198
100 system $RSYNC, "-a", "--chmod=u=rwX,go=rX", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded" 199 system $RSYNC, "-av", "--chmod=u=rwX,go=rX",
200 "$path/.", "$DATADIR/maps/.",
201 "--exclude", "CVS", "--exclude", "/world-precomposed",
202 "--delete", "--delete-excluded"
101 and die "map installation failed.\n"; 203 and die "map installation failed.\n";
102 204
103 print "maps installed successfully.\n"; 205 print "maps installed successfully.\n";
104} 206}
105 207
108 our %FACEINFO; 210 our %FACEINFO;
109 our %RESOURCE; 211 our %RESOURCE;
110 our @ARC; 212 our @ARC;
111 our %ARC; 213 our %ARC;
112 our $TRS; 214 our $TRS;
215 our %PNG;
113 our $NFILE; 216 our $NFILE;
114 our $PATH; 217 our $PATH;
115 218
116 our $QUANTIZE = "+dither -colorspace RGB -colors 256"; 219 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
117 220
118 our (@png, @trs, @arc, @res); # files we are interested in 221 our $c_arc = new Coro::Channel;
222 our $c_any = new Coro::Channel;
119 223
224 our @c_png;
225
226 # texture catalog size, in 64x64 tiles
227 sub TC_W() { 1024 / 64 }
228 sub TC_H() { 1024 / 64 }
229
230 our @TC = ([]); # texture catalogs
231
120 sub commit_png($$$) { 232 sub commit_png($$$$$$) {
121 my ($name, $data, $T) = @_; 233 my ($stem, $name, $data, $T, $w, $h) = @_;
122 234
235 $FACEINFO{$name}{stem} = substr $stem, 1 + length $PATH;
123 $FACEINFO{$name}{"data$T"} = $data; 236 $FACEINFO{$name}{"data$T"} = $data;
237 $FACEINFO{$name}{w} = $w;
238 $FACEINFO{$name}{h} = $h;
124 } 239 }
125 240
126 sub process_png { 241 sub process_png {
127 while (@png) { 242 while (@c_png) {
128 my ($path, $delete) = @{pop @png}; 243 my ($path, $delete) = @{pop @c_png};
129 244
130 my $png; 245 my $png;
131 aio_lstat $path; 246 aio_lstat $path;
132 my ($size, $mtime) = (stat _)[7,9]; 247 my ($size, $mtime) = (stat _)[7,9];
133 248
134 if (0 > aio_load $path, $png) { 249 if (0 > aio_load $path, $png) {
135 warn "$path: $!, skipping.\n"; 250 warn "ERROR: $path: $!, skipping.\n";
136 next; 251 next;
137 } 252 }
138 253
139 my $stem = $path; 254 my $stem = $path;
140 my $T; 255 my $T;
142 if ($stem =~ s/\.32x32\.png~?$//) { 257 if ($stem =~ s/\.32x32\.png~?$//) {
143 $T = 32; 258 $T = 32;
144 } elsif ($stem =~ s/\.64x64\.png~?$//) { 259 } elsif ($stem =~ s/\.64x64\.png~?$//) {
145 $T = 64; 260 $T = 64;
146 } else { 261 } else {
147 warn "$path: weird filename, skipping.\n"; 262 warn "ERROR: $path: weird filename, skipping.\n";
148 next; 263 next;
149 } 264 }
150 265
151 # quickly extract width and height of the (necessarily PNG) image 266 # quickly extract width and height of the (necessarily PNG) image
152 unless ($png =~ /^\x89PNG\x0d\x0a\x1a\x0a....IHDR(........)/s) { 267 unless ($png =~ /^\x89PNG\x0d\x0a\x1a\x0a....IHDR(........)/s) {
153 warn "$path: not a recognized png file, skipping.\n"; 268 warn "ERROR: $path: not a recognized png file, skipping.\n";
154 next; 269 next;
155 } 270 }
156 271
157 my ($w, $h) = unpack "NN", $1; 272 my ($w, $h) = unpack "NN", $1;
158 273
159 if ($w < $T || $h < $T) { 274 if ($w < $T || $h < $T) {
160 warn "$path: too small ($w $h), skipping.\n"; 275 warn "ERROR: $path: too small ($w $h), skipping.\n";
161 next; 276 next;
162 } 277 }
163 278
164 if ($w % $T || $h % $T) { 279 if ($w % $T || $h % $T) {
165 warn "$path: weird png size ($w $h), skipping.\n"; 280 warn "ERROR: $path: weird png size ($w $h), skipping.\n";
166 next; 281 next;
167 } 282 }
283
284 (my $base = $stem) =~ s/^.*\///;
285
286 my $fi = $FACEINFO{$base};
287 unless ($fi) {
288 #warn "$path: <$base> not referenced by any archetype, skipping.\n";
289 #next;
290 }
291
292 my $arc = $fi->{arc} || { };
168 293
169 unless ($path =~ /~$/) { 294 unless ($path =~ /~$/) {
170 # possibly enlarge 295 # possibly enlarge
171 if (0 > aio_stat "$stem.64x64.png") { 296 if (0 > aio_stat "$stem.64x64.png") {
172 my $other = "$stem.64x64.png~"; 297 my $other = "$stem.64x64.png~";
173 298
174 if (0 > aio_lstat $other or (-M _) > (-M $path)) { 299 make_file $path, $other, sub {
175 my $wrap = 0; # for the time being
176 fork_sub { 300 fork_exec {
301 my $CROP;
302 my $SRC = "png:\Q$path\E";
303
304 my $is_floor = $arc->{is_floor};
305 my $is_wall = 0;
306
307 my ($wall_pfx, $wall_dir, $wall_sfx);
308
309 if (
310 !$is_floor
311 && !$arc->{alive}
312 && $arc->{move_block} eq "all"
313 && $path =~ /^(.*_)([0-9A-F])(\.x11.*\.png)$/
314 ) {
315 ($wall_pfx, $wall_dir, $wall_sfx) = ($1, hex $2, $3);
316
317 unless (grep { !-e sprintf "%s%X%s", $wall_pfx, $_, $wall_sfx } 0..15) {
318 $is_wall = 1;
319 }
320 }
321
322 if ($is_wall || $is_floor) {
323 # add a 4px border and add other images around it
324 $CROP = "-shave 8x8 +repage";
325
326 $w += 8;
327 $h += 8;
328
329 $SRC = "-size ${w}x${h} xc:transparent";
330 $SRC .= " png:\Q$path\E -geometry +4+4 -composite";
331
332 # 8 surrounding images
333 for (
334 # x y b r0 r1
335 [-1, -1, 0, 6],
336 [ 0, -1, 1, 10, 14],
337 [+1, -1, 0, 12],
338
339 [-1, 0, 8, 5, 7],
340 #
341 [+1, 0, 2, 5, 13],
342
343 [-1, +1, 0, 3],
344 [ 0, +1, 4, 10, 11],
345 [+1, +1, 0, 9],
346 ) {
347 my ($x, $y, $d, $r0, $r1) = @$_;
348
349 my $tile = $is_floor ? $path
350 : $is_wall ? sprintf "%s%X%s", $wall_pfx, ($wall_dir & $d) ? $r1 : $r0, $wall_sfx
351 : die;
352
353 $SRC .= sprintf " png:%s -geometry %+d%+d -composite",
354 "\Q$tile",
355 $x * ($w - 8) + 4,
356 $y * ($h - 8) + 4;
357 }
358 }
359
177 system "convert png:\Q$path\E -depth 8 rgba:-" 360 system "$CONVERT -depth 8 $SRC rgba:-"
178 . "| $exec_prefix/bin/cfhq2xa $w $h $wrap" 361 . "| $exec_prefix/bin/cfhq2xa $w $h 0"
179 . "| convert -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $QUANTIZE -quality 00 png32:\Q$other\E~" 362 . "| $CONVERT -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $CROP $QUANTIZE -quality 00 png32:\Q$other\E~"
180 and die "convert/hq2xa pipeline error: status $? ($!)"; 363 and die "convert/cfhq2xa pipeline error: status $? ($!)";
181 system $OPTIPNG, "-i0", "-q", "$other~"; 364 optipng "$other~";
182 die "$other~ has zero size, aborting." unless -s "$other~";
183 rename "$other~", $other; 365 rename "$other~", $other;
184 }; 366 };
185 } 367 };
186 368
187 push @png, [$other, !$CACHE]; 369 push @c_png, [$other, !$CACHE];
188 } 370 }
189 371
190 # possibly scale down 372 # possibly scale down
191 if (0 > aio_stat "$stem.32x32.png") { 373 if (0 > aio_stat "$stem.32x32.png") {
192 my $other = "$stem.32x32.png~"; 374 my $other = "$stem.32x32.png~";
193 375
194 if (0 > aio_lstat $other or (-M _) > (-M $path)) { 376 make_file $path, $other, sub {
195 fork_sub { 377 fork_exec {
196 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~"; 378 system "$CONVERT png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~";
197 system $OPTIPNG, "-i0", "-q", "$other~"; 379 optipng "$other~";
198 380
199 # reduce smoothfaces >10000 bytes 381 # reduce smoothfaces >10000 bytes
382 # obsolete, no longer required
200 if ($stem =~ /_S\./ && (-s "$other~") > 10000) { 383 if (0 && $stem =~ /_S\./ && (-s "$other~") > 10000) {
201 my $ncolor = 256; 384 my $ncolor = 256;
202 while () { 385 while () {
203 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E"; 386 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
204 system $OPTIPNG, "-i0", "-q", "$other~~"; 387 optipng "$other~~";
205 last if 10000 > -s "$other~~"; 388 last if 10000 > -s "$other~~";
206 $ncolor = int $ncolor * 0.9; 389 $ncolor = int $ncolor * 0.9;
207 $ncolor > 8 or die "cannot reduce filesize to < 10000 bytes"; 390 $ncolor > 8 or die "cannot reduce filesize to < 10000 bytes";
208 } 391 }
209 392
214 } 397 }
215 398
216 die "$other~ has zero size, aborting." unless -s "$other~"; 399 die "$other~ has zero size, aborting." unless -s "$other~";
217 rename "$other~", $other; 400 rename "$other~", $other;
218 }; 401 };
219 } 402 };
220 403
221 #warn "scaled down $path to $other\n";#d# 404 #warn "scaled down $path to $other\n";#d#
222 push @png, [$other, !$CACHE]; 405 push @c_png, [$other, !$CACHE];
223 } 406 }
224 } 407 }
225 408
226 (my $face = $stem) =~ s/^.*\///; 409 (my $face = $stem) =~ s/^.*\///;
410
411 for (@{ $fi->{derive} }) {
412 my ($dir, $type) = @$_;
413
414 my $geom = "${T}x${T}";
415 my $dpath = "$dir/$type:$face.$geom.png~";
416
417 if ($type eq "buildmaterial") {
418 my $ov = "$PATH/mapbuilding/buildmaterial.png";
419 make_file [$path, $ov], $dpath, sub {
420 fork_exec {
421 system "$CONVERT -size 64x64 xc:transparent \\( \Q$path\E -geometry 52x52+6+6 \\) -composite \Q$ov\E -composite -geometry $geom png:\Q$dpath\E~";
422 optipng "$dpath~";
423 rename "$dpath~", $dpath;
424 };
425 };
426 } elsif ($type eq "buildmaterial-box") {
427 my $ov = "$PATH/mapbuilding/buildmaterial-box.png";
428 make_file [$path, $ov], $dpath, sub {
429 fork_exec {
430 system "$CONVERT \Q$ov\E "
431 . "\\( \Q$path\E -trim -geometry 34x31\\> "
432 . "-gravity center -background transparent -extent 37x34 +gravity "
433 . "-geometry +22+6 \\) -composite "
434 . "-geometry $geom png:\Q$dpath\E~";
435 optipng "$dpath~";
436 rename "$dpath~", $dpath;
437 };
438 };
439 } elsif ($type eq "buildmaterial-sbox") {
440 my $ov = "$PATH/mapbuilding/buildmaterial-sbox.png";
441 make_file [$path, $ov], $dpath, sub {
442 fork_exec {
443 system "$CONVERT \Q$ov\E "
444 . "\\( \Q$path\E -trim -geometry 16x24\\> "
445 . "-gravity center -background transparent -extent 18x26 +gravity "
446 . "-geometry +26+16 \\) -composite "
447 . "-geometry $geom png:\Q$dpath\E~";
448 optipng "$dpath~";
449 rename "$dpath~", $dpath;
450 };
451 };
452 } else {
453 warn "ERROR: facename $type:$face contains unsupported derivation type.\n";
454 }
455
456 aio_load $dpath, my $png;
457 IO::AIO::aio_unlink $dpath unless $CACHE;
458 commit_png "$dir/$type:$face", "$type:$face", $png, $T, 1, 1;
459 }
227 460
228 # split all bigfaces, but avoid smoothfaces (*_S) 461 # split all bigfaces, but avoid smoothfaces (*_S)
229 if (($w > $T || $h > $T) && $face !~ /_S\./) { 462 if (($w > $T || $h > $T) && $face !~ /_S\./) {
230 # split 463 # split
231 my @tile; 464 my @tile;
236 push @tile, [$x, $y, $file, (stat _)[9]]; 469 push @tile, [$x, $y, $file, (stat _)[9]];
237 } 470 }
238 } 471 }
239 472
240 my $mtime = (lstat $path)[9]; 473 my $mtime = (lstat $path)[9];
241 my @todo = grep { $_->[3] <= $mtime } @tile; 474 my @todo = grep { $_->[3] < $mtime } @tile;
242 if (@todo) { 475 if (@todo) {
243 fork_sub { 476 fork_exec {
244 open my $convert, "|-", $CONVERT, 477 open my $convert, "|-", $CONVERT,
245 "png:-", 478 "png:-",
246 (map { 479 (map {
247 ( 480 (
248 "(", 481 "(",
261 print $convert $png; 494 print $convert $png;
262 close $convert; 495 close $convert;
263 496
264 # pass 2, optimise, and rename 497 # pass 2, optimise, and rename
265 for (@todo) { 498 for (@todo) {
266 system $OPTIPNG, "-o5", "-i0", "-q", "$_->[2]~"; 499 optipng "$_->[2]~";
267 die "$_->[2]~ has zero size, aborting." unless -s "$_->[2]~";
268 rename "$_->[2]~", $_->[2]; 500 rename "$_->[2]~", $_->[2];
269 } 501 }
270 }; 502 };
271 } 503 }
272 504
276 508
277 if (0 > aio_load $file, $tile) { 509 if (0 > aio_load $file, $tile) {
278 die "$path: unable to read tile +$x+$y, aborting.\n"; 510 die "$path: unable to read tile +$x+$y, aborting.\n";
279 } 511 }
280 IO::AIO::aio_unlink $file unless $CACHE; 512 IO::AIO::aio_unlink $file unless $CACHE;
281 commit_png $x|$y ? "$face+$x+$y" : $face, $tile, $T; 513 commit_png $stem, $x|$y ? "$face+$x+$y" : $face, $tile, $T, 1, 1;
282 } 514 }
283 } else { 515 } else {
284 # use as-is (either small, use smooth) 516 # use as-is (either small, use smooth)
285 commit_png $face, $png, $T; 517 commit_png $stem, $face, $png, $T, $w / $T, $h / $T;
286 } 518 }
287 519
288 aio_unlink $path if $delete; 520 IO::AIO::aio_unlink $path if $delete;
521 }
522 }
523
524 sub process_faceinfo {
525 my ($dir, $file) = @_;
526 my $path = "$dir/$file";
527
528 my $data;
529 if (0 > aio_load $path, $data) {
530 warn "ERROR: $path: $!, skipping.\n";
531 return;
532 }
533
534 for (split /\n/, $data) {
535 chomp;
536 my ($face, $visibility, $fg, $bg, $glyph) = split /\s+/, $_, 5;
537 # bg not used except for text clients
538
539 utf8::decode $glyph;
540 $glyph =~ s/^\?(?=.)//; # remove "autoglyph" flag
541 $glyph =~ s/^"(.+)"$/$1/; # allow for ""-style quoting
542
543 $fg = "white" if $fg eq "none"; # lots of faces have no fg colour yet
544
545 (my $fgi = $COLOR{$fg})
546 // warn "ERROR: $path: $face specifies unknown foreground colour '$fg'.\n";
547 (my $bgi = $COLOR{$bg})
548 // warn "ERROR: $path: $face specifies unknown background colour '$bg'.\n";
549
550 my $fi = $FACEINFO{$face} ||= { };
551 $fi->{visibility} = $visibility * 1;
552 $fi->{magicmap} = $fgi; # foreground colour becomes magicmap
553
554 $glyph .= " " if 2 > length $glyph; # TODO kanji
555 die "glyph $face too long" if 2 < length $glyph;
556
557 $fi->{glyph} = "";
558 for (split //, $glyph) {
559 utf8::encode $_;
560 $fi->{glyph} .= (chr $fgi) . (chr $bgi) . $_;
561 }
289 } 562 }
290 } 563 }
291 564
292 sub process_arc { 565 sub process_arc {
293 while (@arc) { 566 while (my ($dir, $file) = @{ $c_arc->get }) {
294 my ($dir, $file) = @{pop @arc};
295
296 my $arc; 567 my $arc;
297 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/ 568 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/
298 569
299 my $arc = read_arch "$dir/$file"; 570 my $arc = read_arch "$dir/$file";
300 for my $o (values %$arc) { 571 for my $o (values %$arc) {
301 push @ARC, $o; 572 push @ARC, $o;
302 for (my $m = $o; $m; $m = $m->{more}) { 573 for (my $m = $o; $m; $m = $m->{more}) {
303 $ARC{$m->{_name}} = $m; 574 $ARC{$m->{_name}} = $m;
304 } 575 }
305 576
306 $o->{editor_folder} = $dir; 577 $o->{editor_folder} ||= "\x00$dir"; # horrible kludge
307
308 my $visibility = delete $o->{visibility};
309 my $magicmap = delete $o->{magicmap};
310 578
311 # find upper left corner :/ 579 # find upper left corner :/
312 # omg, this is sooo broken 580 # omg, this is sooo broken
313 my ($dx, $dy); 581 my ($dx, $dy);
314 for (my $o = $o; $o; $o = $o->{more}) { 582 for (my $o = $o; $o; $o = $o->{more}) {
321 my $y = $o->{y} - $dy; 589 my $y = $o->{y} - $dy;
322 590
323 my $ext = $x|$y ? "+$x+$y" : ""; 591 my $ext = $x|$y ? "+$x+$y" : "";
324 592
325 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face}; 593 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
326
327 $visibility = delete $o->{visibility} if exists $o->{visibility};
328 $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
329 594
330 my $anim = delete $o->{anim}; 595 my $anim = delete $o->{anim};
331 596
332 if ($anim) { 597 if ($anim) {
333 # possibly add $ext to the animation name to avoid 598 # possibly add $ext to the animation name to avoid
351 facings => $facings, 616 facings => $facings,
352 frames => \@frames, 617 frames => \@frames,
353 }; 618 };
354 } 619 }
355 620
356 for my $face ($o->{face} || (), @{$anim || []}) { 621 for ($o->{face} || (), @{$anim || []}) {
622 next if /^facings\s/;
623
624 my $face = $_;
625 $face =~ s/\+\d+\+\d+$//; # remove tile offset coordinates
626
627 # handle derived faces
628 if ($face =~ /^([^:]+):(.*)/) {
629 my ($type, $base) = ($1, $2);
630 push @{ $FACEINFO{$base}{derive} }, [$dir, $type];
631 }
632
633 $FACEINFO{$face}{arc} = $o;
634
357 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/; 635 next if $face =~ /^blank.x11$|^empty.x11$/;
358
359 my $info = $FACEINFO{$face} ||= {};
360
361 $info->{visibility} = $visibility if defined $visibility;
362 $info->{magicmap} = $magicmap if defined $magicmap;
363 } 636 }
364 637
365 if (my $smooth = delete $o->{smoothface}) { 638 if (my $smooth = delete $o->{smoothface}) {
366 my %kv =split /\s+/, $smooth; 639 my %kv = split /\s+/, $smooth;
367 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support 640 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
368 while (my ($face, $smooth) = each %kv) { 641 while (my ($face, $smooth) = each %kv) {
642 $FACEINFO{$smooth}{arc} = $o;
643
369 $FACEINFO{$face}{smooth} = $smooth; 644 $FACEINFO{$face}{smooth} = $smooth;
370 $FACEINFO{$face}{smoothlevel} = $level; 645 $FACEINFO{$face}{smoothlevel} = $level;
371 } 646 }
372 } 647 }
373 } 648 }
374 } 649 }
375 } 650 }
376 } 651 }
377 652
378 sub process_trs { 653 sub process_trs {
379 while (@trs) {
380 my ($dir, $file) = @{pop @trs}; 654 my ($dir, $file) = @_;
381 my $path = "$dir/$file"; 655 my $path = "$dir/$file";
382 656
383 my $trs; 657 my $trs;
384 if (0 > aio_load $path, $trs) { 658 if (0 > aio_load $path, $trs) {
385 warn "$path: $!, skipping.\n"; 659 warn "ERROR: $path: $!, skipping.\n";
386 next; 660 return;
387 } 661 }
388 662
389 $TRS .= $trs; 663 $TRS .= $trs;
390 }
391 } 664 }
392 665
393 my %FILECACHE; 666 my %FILECACHE;
394 667
395 sub load_cached($;$) { 668 sub load_cached($;$) {
396 unless (exists $FILECACHE{$_[0]}) { 669 unless (exists $FILECACHE{$_[0]}) {
397 my $data; 670 my $data;
398 if (0 < aio_load $_[0], $data) { 671 if (0 < aio_load $_[0], $data) {
672 if ($_[1]) {
399 $data = $_[1]->($data) 673 $data = eval { $_[1]->($data) };
400 if $_[1]; 674 warn "ERROR: $_[0]: $@" if $@;
675 }
401 } 676 }
402 677
403 $FILECACHE{$_[0]} = $data; 678 $FILECACHE{$_[0]} = $data;
404 } 679 }
405 680
406 $FILECACHE{$_[0]} 681 $FILECACHE{$_[0]}
407 } 682 }
408 683
684 # convert an image and a palette to some indexed 2d-matrix structure
685 sub process_plt {
686 my ($base, $plt) = @_;
687
688 my ($w, $h) = imgsize "$base.png";
689
690 $w * $h
691 or die "$base.png: unable to identify correct size\n";
692
693 my @plt;
694 my %map;
695
696 for (split /\n/, $plt) {
697 next unless /\S/;
698 next if /^\s*#/;
699
700 /^([0-9a-fA-F]{3,6})\s*(.*?)\s*$/
701 or die "unparseable palette entry for $base.plt: $_";
702
703 my ($rgb, $name) = ($1, $2);
704
705 $rgb =~ s/^(.)(.)(.)$/$1$1$2$2$3$3/;
706
707 $map{pack "H*", $rgb} = chr @plt;
708 push @plt, $name;
709 }
710
711 make_file ["$base.plt", "$base.png"], "$base.tbl~", sub {
712 warn "building $base\n" if $VERBOSE >= 3;
713
714 fork_exec {
715 open my $png, "-|", $CONVERT, qw(-depth 8 --), "$base.png", "rgb:"
716 or die "$base.png: $!";
717
718 local $/;
719 $png = <$png>;
720
721 $w * $h * 3 == length $png
722 or die "$base.png: failed to read enough data from file\n";
723
724 $png =~ s/(...)/$map{$1}/ge;
725
726 $w * $h == length $png
727 or die "$base.png: failed to map all data - wrong palette?\n";
728
729 {
730 open my $fh, ">:raw", "$base.tbl~~"
731 or die "$base.tbl~~: $!";
732 syswrite $fh, $png;
733 }
734
735 rename "$base.tbl~~", "$base.tbl~";
736 };
737 };
738
739 0 <= aio_load "$base.tbl~", my $tbl
740 or die "$base.tbl~: $!";
741
742 IO::AIO::aio_unlink "$base.tbl~" unless $CACHE;
743
744 Compress::LZF::compress nfreeze {
745 w => $w,
746 h => $h,
747 plt => \@plt,
748 tbl => $tbl,
749 }
750 }
751
409 sub process_res { 752 sub process_res {
410 while (@res) {
411 my ($dir, $file, $type) = @{pop @res}; 753 my ($dir, $file, $type) = @_;
412 754
413 my $data;
414 aio_load "$dir/$file", $data; 755 0 <= aio_load "$dir/$file", my $data
756 or die "$dir/$file: $!";
415 757
416 my $meta = load_cached "$dir/meta", sub { JSON::XS::from_json shift }; 758 my $meta = load_cached "$dir/meta", sub { JSON::XS->new->utf8->relaxed->decode (shift) };
417 759
418 $file =~ s/\.res$//; 760 utf8::decode $dir;
419 $file =~ s/\.(ogg|wav|jpg|png)$//; 761 utf8::decode $file;
420 762
763 # a meta file for resources is now mandatory
764 unless (exists $meta->{$file}) {
765 warn "skipping $dir/$file\n" if $VERBOSE >= 3;
766 return;
767 }
768
769 $meta = {
770 %{ $meta->{"" } || {} },
771 %{ $meta->{$file} || {} },
772 };
773
774 if (exists $meta->{license} && $meta->{license} =~ s/^#//) { # exists == avoid autovivification
775 # all these are acceptable for deliantra - if not specified, agpl 3+ is the default.
776 $meta->{license} = ({
777 "pd" => "Public Domain",
778 "gpl" => "GNU General Public License, version 3.0 or any later",
779 "2bsd" => "2-clause BSD/MIT style license",
780 "3bsd" => "3-clause BSD style license",
781 "cc/by/2.0" => "Licensed under Creative Commons Attribution 2.0 http://creativecommons.org/licenses/by/2.0/",
782 "cc/by/2.1" => "Licensed under Creative Commons Attribution 2.1 http://creativecommons.org/licenses/by/2.1/",
783 "cc/by/2.5" => "Licensed under Creative Commons Attribution 2.5 http://creativecommons.org/licenses/by/2.5/",
784 "cc/by/3.0" => "Licensed under Creative Commons Attribution 3.0 http://creativecommons.org/licenses/by/3.0/",
785 })->{$meta->{license}}
786 || warn "ERROR: $dir/$file: license tag '$meta->{license}' not found.";
787 }
788
789 if (!exists $meta->{author} && $meta->{source} =~ m%^http://www.jamendo.com/en/artist/(.*)$%) {
790 ($meta->{author} = $1) =~ s/_/ /g;
791 }
792
793 $file =~ s/\.(res|ogg|wav|jpg|png)$// unless $meta->{keep_suffix};
794
795 if ($file =~ s/\.plt$//) {
796 $data = process_plt "$dir/$file", $data;
797 } elsif (my $filter = delete $meta->{cfutil_filter}) {
798 if ($filter eq "yaml2json") {
799 $data = JSON::XS::encode_json YAML::XS::Load $data;
800 } elsif ($filter eq "json2json") {
801 $data = JSON::XS::encode_json JSON::XS->relaxed->utf8->decode ($data);
802 } elsif ($filter eq "perl2json") {
803 $data = eval $data; die if $@;
804 $data = JSON::XS::encode_json $data;
805 } else {
806 warn "ERROR: $dir/$file: unknown filter $filter, skipping\n";
807 }
808 }
809
421 substr $dir, 0, 1 + length $PATH, ""; 810 substr $dir, 0, 1 + length $PATH, "";
422 811
423 $meta = { 812 my %info = (
424 %{ $meta->{"" } || {} }, 813 type => (exists $meta->{type} ? delete $meta->{type} : $type),
425 %{ $meta->{$file} || {} },
426 };
427
428 $RESOURCE{"$dir/$file"} = {
429 type => (delete $meta->{type}) || $type,
430 data => $data, 814 data => $data,
431 chksum => (Digest::MD5::md5 $data),
432 %$meta ? (meta => $meta) : (), 815 %$meta ? (meta => $meta) : (),
433 }; 816 );
817
818 $RESOURCE{"$dir/$file"} = \%info;
819 }
820
821 sub process_any {
822 while (my ($func, @args) = @{ $c_any->get }) {
823 $func->(@args);
434 } 824 }
435 } 825 }
436 826
437 sub find_files; 827 sub find_files;
438 sub find_files { 828 sub find_files {
439 my ($path) = @_; 829 my ($path) = @_;
440 830
831 my $grp = IO::AIO::aio_group;
832
833 my $scandir; $scandir = sub {
834 my ($path) = @_;
835
441 IO::AIO::aioreq_pri 4; 836 IO::AIO::aioreq_pri 4;
442 IO::AIO::aio_scandir $path, 4, sub { 837 add $grp IO::AIO::aio_scandir $path, 4, sub {
443 my ($dirs, $nondirs) = @_; 838 my ($dirs, $nondirs) = @_;
444 839
445 find_files "$path/$_" 840 $scandir->("$path/$_")
446 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs; 841 for grep $_ !~ /^(?:CVS|dev|\..*)$/, @$dirs;
447 842
448 my $dir = $path; 843 my $dir = $path;
449 substr $dir, 0, 1 + length $PATH, ""; 844 substr $dir, 0, 1 + length $PATH, "";
450 845
451 for my $file (@$nondirs) { 846 for my $file (@$nondirs) {
452 if ($dir =~ /^music(?:\/|$)/) { 847 if ($dir =~ /^music(?:\/|$)/) {
453 push @res, [$path, $file, 3] # FT_MUSIC 848 $c_any->put ([\&process_res, $path, $file, 3]) # FT_MUSIC
454 if $file =~ /\.(ogg)$/; 849 if $file =~ /\.(ogg)$/;
455 850
456 } elsif ($dir =~ /^sound(?:\/|$)/) { 851 } elsif ($dir =~ /^sound(?:\/|$)/) {
457 push @res, [$path, $file, 5] # FT_SOUND 852 $c_any->put ([\&process_res, $path, $file, 5]) # FT_SOUND
458 if $file =~ /\.(wav|ogg)$/; 853 if $file =~ /\.(wav|ogg)$/;
459 854
460 } elsif ($dir =~ /^res(?:\/|$)/) { 855 } elsif ($dir =~ /^res(?:\/|$)/) {
461 push @res, [$path, $file, 0] # FT_FACE
462 if $file =~ /\.(jpg|png)$/; 856 if ($file =~ /\.(jpg|png)$/) {
463 push @res, [$path, $file, 7] # FT_RSRC 857 $c_any->put ([\&process_res, $path, $file, 0]) # FT_FACE
464 if $file =~ /\.(res)$/; 858 } elsif ($file =~ /\.(res)$/) {
859 $c_any->put ([\&process_res, $path, $file, 6]) # FT_RSRC
860 } else {
861 $c_any->put ([\&process_res, $path, $file, 6]); # was type undef, but now meta files are mandatory, so any mentioned file surely has a purpose
862 }
465 863
466 } elsif ($file =~ /\.png$/) { 864 } elsif ($file =~ /\.png$/) {
467 push @png, ["$path/$file", 0]; 865 $PNG{$file} = $path;
468 866
867 } elsif ($file =~ /\.faceinfo$/) {
868 $c_any->put ([\&process_faceinfo, $path, $file]);
869
469 } elsif ($file =~ /\.trs$/) { 870 } elsif ($file =~ /\.trs$/) {
470 push @trs, [$path, $file]; 871 $c_any->put ([\&process_trs, $path, $file]);
471 872
472 } elsif ($file =~ /\.arc$/) { 873 } elsif ($file =~ /\.arc$/) {
473 push @arc, [$path, $file]; 874 $c_arc->put ([$path, $file]);
474 875
475 } else { 876 } else {
476 warn "ignoring $path/$file\n" if $VERBOSE >= 3; 877 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
477 } 878 }
879 }
478 } 880 };
479 }; 881 };
882
883 $scandir->($path);
884 aio_wait $grp;
885 }
886
887 sub generate_plurals {
888# use Lingua::EN::Inflect ();
889# Lingua::EN::Inflect::classical;
890# Lingua::EN::Inflect::def_noun '(.*)staff' => '$1staves'; # policy
891# Lingua::EN::Inflect::def_noun '(.*)boots' => '$1boots'; # hack
892#
893# for my $a (@ARC) {
894# my $name = $a->{name} || $a->{_name};
895#
896# next unless $a->{name_pl};
897# next if $a->{invisible};
898# next if $a->{is_floor};
899# next if $a->{no_pick};
900#
901# my $test = Lingua::EN::Inflect::PL_N_eq $name, Lingua::EN::Inflect::PL $name;
902# my $pl = $test =~ /^(?:eq|p:.)$/
903# ? $name
904# : Lingua::EN::Inflect::PL $name;
905#
906# if ($pl ne $a->{name_pl}) {
907# warn "$a->{_name}: plural differs, $pl vs $a->{name_pl}\n";
908# }
909# }
480 } 910 }
481 911
482 sub inst_arch($) { 912 sub inst_arch($) {
483 my (undef, $path) = @_; 913 my (undef, $path) = @_;
484 914
493 "Unless you run verbosely, all following warning\n", 923 "Unless you run verbosely, all following warning\n",
494 "or error messages indicate serious problems.\n", 924 "or error messages indicate serious problems.\n",
495 "\n"; 925 "\n";
496 926
497 if (!-d "$path/treasures") { 927 if (!-d "$path/treasures") {
498 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n"; 928 warn "FATAL: '$path' does not look like an arch directory ('treasures' directory is missing).\n";
499 exit 1 unless $FORCE; 929 exit 1 unless $FORCE;
500 } 930 }
501 931
932 print "starting file scan, arc, any processing...\n" if $VERBOSE;
933
934 my @a_arc = map +(async \&process_arc), 1..2;
935 my @a_any = map +(async \&process_any), 1..4;
936
502 find_files $path; 937 find_files $path;
503 IO::AIO::flush;
504 938
505 $_->join for ( 939 $c_arc->shutdown;
940 $c_any->shutdown;
941
942 $_->join for @a_arc; # need to parse all archetypes before png processing
943 print "finished arc processing...\n" if $VERBOSE;
944
945 # fill png queue
946 for (keys %FACEINFO) {
947 # we only expect source pngs to exist for non-derived
948 # faces, i.e. no split tiles (+x+x) and no face derivates
949 # (xxx:)
950 /^[^:]+\....$/
951 or next;
952
953 my $seen;
954
955 if (exists $PNG{"$_.32x32.png"}) {
956 push @c_png, ["$PNG{\"$_.32x32.png\"}/$_.32x32.png"];
957 $seen = 1;
958 }
959 if (exists $PNG{"$_.64x64.png"}) {
960 push @c_png, ["$PNG{\"$_.64x64.png\"}/$_.64x64.png"];
961 $seen = 1;
962 }
963
964 warn "ERROR: $_: face not found, expect problems.\n"
965 unless $seen;
966 }
967
968 print "starting png processing...\n" if $VERBOSE;
969
506 # four png crunchers work fine for my 2x smp machine 970 # eight png crunchers work fine for my 4x smp machine
507 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png), 971 my @a_png = map +(async \&process_png), 1..8;
508 (async \&process_trs), (async \&process_trs),
509 (async \&process_arc), (async \&process_arc),
510 (async \&process_res), (async \&process_res),
511 );
512 972
973 $_->join for @a_any;
974 print "finished any processing...\n" if $VERBOSE;
975
976 $_->join for @a_png;
977 print "finished png processing...\n" if $VERBOSE;
978
979 print "scanning done, processing results...\n" if $VERBOSE;
513 { 980 {
514 # remove path prefix from editor_folder 981 # remove path prefix from editor_folder
982 $_->{editor_folder} =~ /^\x00/
515 substr $_->{editor_folder}, 0, 1 + length $path, "" 983 and substr $_->{editor_folder}, 0, 2 + length $path, ""
516 for values %ARC; 984 for values %ARC;
517 985
986 print "resolving inheritance tree...\n" if $VERBOSE;
518 # resolve inherit 987 # resolve inherit
519 while () { 988 while () {
520 my $progress; 989 my $progress;
521 my $loop; 990 my $loop;
522 991
523 for my $o (values %ARC) { 992 for my $o (values %ARC) {
524 if (my $other = $o->{inherit}) { 993 for my $other (split /,/, $o->{inherit}) {
525 if (my $s = $ARC{$other}) { 994 if (my $s = $ARC{$other}) {
526 if ($s->{inherit}) { 995 if ($s->{inherit}) {
527 $loop = $s; 996 $loop = $s;
528 } else { 997 } else {
529 delete $o->{inherit}; 998 delete $o->{inherit};
531 delete @s{qw(_name more name name_pl)}; 1000 delete @s{qw(_name more name name_pl)};
532 %$o = ( %s, %$o ); 1001 %$o = ( %s, %$o );
533 ++$progress; 1002 ++$progress;
534 } 1003 }
535 } else { 1004 } else {
536 warn "'$o->{_name}' tries to inherit from undefined archetype '$other', skipping.\n"; 1005 warn "ERROR: archetype '$o->{_name}' tries to inherit from undefined archetype '$other', skipping.\n";
537 delete $ARC{$o->{_name}}; 1006 delete $ARC{$o->{_name}};
538 } 1007 }
539 } 1008 }
540 } 1009 }
541 1010
548 } 1017 }
549 1018
550 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit 1019 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit
551 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC; 1020 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC;
552 1021
1022 # fix up archetypes without names, where the archanme doesn't work at all
1023 for (@ARC) {
1024 if (!exists $_->{name} and $_->{_name} =~ /_/) {
1025 for ($_->{name} = $_->{_name}) {
1026 s/(?:_\d+)+$//;
1027 s/_[nesw]+$//;
1028 y/_/ /;
1029 }
1030 }
1031 }
1032
1033 #print "generating plurals...\n" if $VERBOSE;
1034 #generate_plurals;
1035
1036 printf "writing %d archetypes...\n", scalar @ARC if $VERBOSE;
553 open my $fh, ">:utf8", "$DATADIR/archetypes~" 1037 open my $fh, ">:utf8", "$DATADIR/archetypes~"
554 or die "$DATADIR/archetypes~: $!"; 1038 or die "$DATADIR/archetypes~: $!";
555 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC]; 1039 print $fh Deliantra::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
556 } 1040 }
557 1041
558 { 1042 {
1043 printf "writing treasures (%d octets)...\n", length $TRS if $VERBOSE;
559 open my $fh, ">:utf8", "$DATADIR/treasures~" 1044 open my $fh, ">:utf8", "$DATADIR/treasures~"
560 or die "$DATADIR/treasures~: $!"; 1045 or die "$DATADIR/treasures~: $!";
561 print $fh $TRS; 1046 print $fh $TRS;
562 } 1047 }
563 1048
564 { 1049 {
565 while (my ($k, $v) = each %FACEINFO) { 1050 print "processing facedata...\n" if $VERBOSE;
566 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n";
567 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n";
568
569 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
570 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
571
572 $v->{chksum32} = Digest::MD5::md5 $v->{data32};
573 $v->{chksum64} = Digest::MD5::md5 $v->{data64};
574
575 if (my $magicmap = $v->{magicmap}) {
576 $magicmap =~ y/A-Z_\-/a-z/d;
577 $v->{magicmap} = $COLOR{$magicmap};
578 }
579 } 1051
1052 for my $k (sort keys %FACEINFO) {
1053 my $v = $FACEINFO{$k};
580 1054
1055 length $v->{data32} or warn "ERROR: face '$k' has no png32 - this will not work.\n";
1056 length $v->{data64} or warn "ERROR: face '$k' has no png64 - this will not work.\n";
1057
1058 make_hash $k, $v->{data32}, $v->{hash32};
1059 make_hash $k, $v->{data64}, $v->{hash64};
1060
1061 #length $v->{data32} <= 10000 or warn "WARNING: face '$k' has face32 larger than 10000 bytes, will not work with crossfire client.\n";
1062 #length $v->{data64} <= 10000 or warn "WARNING: face '$k' has face64 larger than 10000 bytes.\n";
1063
1064 $v->{glyph} // warn "ERROR: face '$k' has no glyph - missing faceinfo entry?\n";
1065 $v->{visibility} // warn "ERROR: face '$k' has no visibility info - missing faceinfo entry?\n";
1066 $v->{magicmap} // warn "ERROR: face '$k' has no foreground colour - missing faceinfo entry?\n";
1067
1068 if (0 && $v->{w} == 1 && $v->{h} == 1) { # texture catalogs
1069 my $id = @TC;
1070 my $n = @{ $TC[-1] };
1071 my $x = $n % TC_W;
1072 my $y = int $n / TC_W;
1073
1074 push @{ $TC[-1] }, [$v, $x, $y];
1075
1076 $v->{tc} = [$id, $x, $y];
1077
1078 push @TC, [] if $n == TC_W * TC_H - 1; # start new texture if full
1079 }
1080
1081 delete @$v{qw(w h arc stem derive)}; # not used by the server
1082 }
1083
1084if (0) { #d# texture catalogs
1085 print "creating texture catalogs...\n" if $VERBOSE;
1086
1087 for my $id (0 .. $#TC) {
1088 my $tc = $TC[$id];
1089
1090 my $cmd = "$CONVERT -depth 8 -size " . (TC_W * 64) . "x" . (TC_H * 64) . " xc:transparent";
1091 my $idx = "a";
1092
1093 for (@$tc) {
1094 my $path = "$TMPDIR/tc" . $idx++;
1095
1096 open my $fh, ">:perlio", $path
1097 or die "$path: $!";
1098 syswrite $fh, $_->[0]{data64};
1099
1100 my $x = $_->[1] * 64;
1101 my $y = $_->[2] * 64;
1102
1103 $cmd .= " png:\Q$path\E -geometry +$x+$y -composite";
1104 }
1105
1106 system "$cmd png:\Q$TMPDIR/tc$id\E";
1107 optipng "$TMPDIR/tc$id";
1108 }
1109}
1110
1111 print "processing resources...\n" if $VERBOSE;
1112 my $enc = JSON::XS->new->utf8->canonical->relaxed;
1113 for my $k (sort keys %RESOURCE) {
1114 my $v = $RESOURCE{$k};
1115
1116 if ($v->{meta} && $v->{meta}{datadir}) {
1117 delete $RESOURCE{$k};
1118
1119 $k =~ s/^res\/// or die "$k: datadir files must be in res/";
1120
1121 printf "writing $k (%d octets)...\n", length $v->{data} if $VERBOSE;
1122 open my $fh, ">:raw", "$DATADIR/$k~"
1123 or die "$DATADIR/$k~: $!";
1124 syswrite $fh, $v->{data};
1125 push @COMMIT, $k;
1126
1127 } else {
1128 if ($v->{type} & 1) {
1129 # prepend meta info
1130
1131 my $meta = $enc->encode ({
1132 name => $k,
1133 %{ $v->{meta} || {} },
1134 });
1135
1136 $v->{data} = pack "(w/a*)*", $meta, $v->{data};
1137 }
1138
1139 make_hash $k, $v->{data}, $v->{hash}, 6; # 6 for the benefit of existing clients
1140 }
1141 }
1142
1143 printf "writing facedata...\n" if $VERBOSE;
1144
1145 {
581 open my $fh, ">:perlio", "$DATADIR/facedata~" 1146 open my $fh, ">:perlio", "$DATADIR/facedata~"
582 or die "$DATADIR/facedata~: $!"; 1147 or die "$DATADIR/facedata~: $!";
583 1148
1149 print $fh "FACEDATA";
1150 my $fofs = 8;
1151
1152 my $put = sub {
1153 my $len = length $_[0];
1154 my $ofs = $fofs;
1155
1156 print $fh $_[0];
1157 $fofs += $len;
1158
1159 ($len, $ofs)
1160 };
1161
1162 for (values %FACEINFO) {
1163 ($_->{size32}, $_->{fofs32}) = $put->(delete $_->{data32});
1164 ($_->{size64}, $_->{fofs64}) = $put->(delete $_->{data64});
1165 }
1166
1167 for (values %RESOURCE) {
1168 ($_->{size}, $_->{fofs}) = $put->(delete $_->{data});
1169 }
1170
1171 close $fh;
1172 }
1173
1174 printf "writing faceinfo (%d faces, %d anims, %d resources)...\n",
1175 scalar keys %FACEINFO,
1176 scalar keys %ANIMINFO,
1177 scalar keys %RESOURCE
1178 if $VERBOSE;
1179
1180 open my $fh, ">:perlio", "$DATADIR/faceinfo~"
1181 or die "$DATADIR/faceinfo~: $!";
1182
584 print $fh freeze { 1183 print $fh nfreeze {
585 version => 2, 1184 version => 2,
586 faceinfo => \%FACEINFO, 1185 faceinfo => \%FACEINFO,
587 animinfo => \%ANIMINFO, 1186 animinfo => \%ANIMINFO,
588 resource => \%RESOURCE, 1187 resource => \%RESOURCE,
589 }; 1188 };
590 } 1189 }
591 1190
1191 print "committing files...\n" if $VERBOSE;
1192
592 for (qw(archetypes facedata treasures)) { 1193 for (qw(archetypes faceinfo facedata treasures), @COMMIT) {
593 chmod 0644, "$DATADIR/$_~"; 1194 chmod 0644, "$DATADIR/$_~";
594 rename "$DATADIR/$_~", "$DATADIR/$_" 1195 rename "$DATADIR/$_~", "$DATADIR/$_"
595 or die "$DATADIR/$_: $!"; 1196 or die "$DATADIR/$_: $!";
596 } 1197 }
597 1198

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines