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.22 by root, Thu Apr 5 13:50:49 2007 UTC vs.
Revision 1.30 by root, Sat Apr 21 11:55:36 2007 UTC

20use Crossfire; 20use Crossfire;
21use Coro; 21use Coro;
22use Coro::AIO; 22use Coro::AIO;
23use POSIX (); 23use POSIX ();
24use Digest::MD5; 24use Digest::MD5;
25use Storable; $Storable::canonical = 1; 25use Coro::Storable; $Storable::canonical = 1;
26 26
27sub usage { 27sub usage {
28 warn <<EOF; 28 warn <<EOF;
29Usage: cfutil [-v] [-q] [--force] [--cache] 29Usage: cfutil [-v] [-q] [--force] [--cache]
30 [--install-arch path] 30 [--install-arch path]
68} 68}
69 69
70sub inst_maps($) { 70sub inst_maps($) {
71 my (undef, $path) = @_; 71 my (undef, $path) = @_;
72 72
73 print "installing '$path' to '$DATADIR/maps'\n"; 73 print "\nInstalling '$path' to '$DATADIR/maps'\n\n";
74 74
75 if (!-f "$path/regions") { 75 if (!-f "$path/regions") {
76 warn "'$path' does not look like a maps directory ('regions' file is missing).\n"; 76 warn "'$path' does not look like a maps directory ('regions' file is missing).\n";
77 exit 1 unless $FORCE; 77 exit 1 unless $FORCE;
78 } 78 }
82 82
83 print "maps installed successfully.\n"; 83 print "maps installed successfully.\n";
84} 84}
85 85
86{ 86{
87 our %ANIMINFO;
87 our %FACEINFO; 88 our %FACEINFO;
88 our @ARC; 89 our @ARC;
90 our %ARC;
89 our $TRS; 91 our $TRS;
90 our $NFILE; 92 our $NFILE;
91 our %ANIM;
92 93
93 our $QUANTIZE = "+dither -colorspace RGB -colors 256"; 94 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
94 95
95 our (@png, @trs, @arc); # files we are interested in 96 our (@png, @trs, @arc); # files we are interested in
96 97
182 } 183 }
183 } 184 }
184 185
185 (my $face = $stem) =~ s/^.*\///; 186 (my $face = $stem) =~ s/^.*\///;
186 187
188 # split all bigfaces, but avoid smoothfaces (*_S)
187 if (($w > $T || $h > $T) && $face !~ /_S\./) { 189 if (($w > $T || $h > $T) && $face !~ /_S\./) {
188 # split 190 # split
189 my @tile; 191 my @tile;
190 for my $x (0 .. (int $w / $T) - 1) { 192 for my $x (0 .. (int $w / $T) - 1) {
191 for my $y (0 .. (int $h / $T) - 1) { 193 for my $y (0 .. (int $h / $T) - 1) {
255 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/ 257 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/
256 258
257 my $arc = read_arch "$dir/$file"; 259 my $arc = read_arch "$dir/$file";
258 for my $o (values %$arc) { 260 for my $o (values %$arc) {
259 push @ARC, $o; 261 push @ARC, $o;
262 for (my $m = $o; $m; $m = $m->{more}) {
263 $ARC{$m->{_name}} = $m;
264 }
260 265
261 $o->{editor_folder} = $dir; 266 $o->{editor_folder} = $dir;
262 267
263 my $visibility = delete $o->{visibility}; 268 my $visibility = delete $o->{visibility};
264 my $magicmap = delete $o->{magicmap}; 269 my $magicmap = delete $o->{magicmap};
275 my $x = $o->{x} - $dx; 280 my $x = $o->{x} - $dx;
276 my $y = $o->{y} - $dy; 281 my $y = $o->{y} - $dy;
277 282
278 my $ext = $x|$y ? "+$x+$y" : ""; 283 my $ext = $x|$y ? "+$x+$y" : "";
279 284
280 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/; 285 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
281 286
282 my $visibility = delete $o->{visibility} if exists $o->{visibility}; 287 my $visibility = delete $o->{visibility} if exists $o->{visibility};
283 my $magicmap = delete $o->{magicmap} if exists $o->{magicmap}; 288 my $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
284 289
285 my $anim = delete $o->{anim}; 290 my $anim = delete $o->{anim};
286 291
287 if ($anim) { 292 if ($anim) {
293 # possibly add $ext to the animation name to avoid
294 # the need to specify archnames for all parts
295 # of a multipart archetype.
288 $o->{animation} = "$o->{_name}"; 296 $o->{animation} = "$o->{_name}";
297 my $facings = 1;
298 my @frames;
289 299
290 for (@$anim) { 300 for (@$anim) {
291 $_ .= $ext unless /^facings\s|^blank.x11$|^empty.x11$/; 301 if (/^facings\s+(\d+)/) {
302 $facings = $1*1;
303 } elsif (/^blank.x11$|^empty.x11$/) {
304 push @frames, $_;
305 } else {
306 push @frames, "$_$ext";
307 }
292 } 308 }
293 309
294 $ANIM{"$o->{_name}$ext"} = 310 $ANIMINFO{$o->{animation}} = {
295 join "", map "$_\n", 311 facings => $facings,
296 "anim $o->{_name}", 312 frames => \@frames,
297 @$anim, 313 };
298 "mina";
299 } 314 }
300 315
301 for my $face ($o->{face} || (), @{$anim || []}) { 316 for my $face ($o->{face} || (), @{$anim || []}) {
302 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/; 317 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/;
303 318
306 $info->{visibility} = $visibility if defined $visibility; 321 $info->{visibility} = $visibility if defined $visibility;
307 $info->{magicmap} = $magicmap if defined $magicmap; 322 $info->{magicmap} = $magicmap if defined $magicmap;
308 } 323 }
309 324
310 if (my $smooth = delete $o->{smoothface}) { 325 if (my $smooth = delete $o->{smoothface}) {
311 my ($face, $smooth) = split /\s+/, $smooth; 326 my %kv =split /\s+/, $smooth;
312 # skip empty_S.x11, it seems to server no purpose whatsoever 327 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
313 # but increases bandwidth demands and worse. 328 while (my ($face, $smooth) = each %kv) {
314 unless ($smooth eq "empty_S.x11") {
315 $FACEINFO{$face}{smooth} = $smooth; 329 $FACEINFO{$face}{smooth} = $smooth;
330 $FACEINFO{$face}{smoothlevel} = $level;
316 } 331 }
317 } 332 }
318 } 333 }
319 } 334 }
320 } 335 }
361 } 376 }
362 377
363 sub inst_arch($) { 378 sub inst_arch($) {
364 my (undef, $path) = @_; 379 my (undef, $path) = @_;
365 380
381 print "\n",
366 print "installing '$path' to '$DATADIR'\n", 382 "Installing '$path' to '$DATADIR'\n",
383 "\n",
367 "(this can take a long time if you run this\n", 384 "This can take a long time if you run this\n",
368 "for the first time or do not use --cache).\n"; 385 "for the first time or do not use --cache.\n",
386 "\n",
387 "Unless you run verbosely, all following warning\n",
388 "or error messages indicate serious problems.\n",
389 "\n";
369 390
370 if (!-d "$path/treasures") { 391 if (!-d "$path/treasures") {
371 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n"; 392 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n";
372 exit 1 unless $FORCE; 393 exit 1 unless $FORCE;
373 } 394 }
381 (async \&process_trs), (async \&process_trs), 402 (async \&process_trs), (async \&process_trs),
382 (async \&process_arc), (async \&process_arc), 403 (async \&process_arc), (async \&process_arc),
383 ); 404 );
384 405
385 { 406 {
386 open my $fh, ">:utf8", "$DATADIR/animations~" 407 # remove path prefix from editor_folder
387 or die "$DATADIR/animations~: $!"; 408 substr $_->{editor_folder}, 0, 1 + length $path, ""
388 print $fh join "", map $ANIM{$_}, sort keys %ANIM 409 for values %ARC;
410
411 # resolve inherit
412 while () {
413 my $progress;
414 my $loop;
415
416 for my $o (values %ARC) {
417 if (my $other = $o->{inherit}) {
418 if (my $s = $ARC{$other}) {
419 if ($s->{inherit}) {
420 $loop = $s;
421 } else {
422 delete $o->{inherit};
423 my %s = %$s;
424 delete @s{qw(_name more name name_pl)};
425 %$o = ( %s, %$o );
426 ++$progress;
427 }
428 } else {
429 warn "'$o->{_name}' tries to inherit from undefined archetype '$other', skipping.\n";
430 delete $ARC{$o->{_name}};
431 }
432 }
433 }
434
435 unless ($progress) {
436 die "inheritance loop detected starting at archetype '$loop->{_name}', aborting.\n"
437 if $loop;
438
439 last;
440 }
389 } 441 }
390 442
391 {
392 open my $fh, ">:utf8", "$DATADIR/archetypes~" 443 open my $fh, ">:utf8", "$DATADIR/archetypes~"
393 or die "$DATADIR/archetypes~: $!"; 444 or die "$DATADIR/archetypes~: $!";
394 substr $_->{editor_folder}, 0, 1 + length $path, "" for @ARC; 445 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
395 print $fh Crossfire::archlist_to_string \@ARC;
396 } 446 }
397 447
398 { 448 {
399 open my $fh, ">:utf8", "$DATADIR/treasures~" 449 open my $fh, ">:utf8", "$DATADIR/treasures~"
400 or die "$DATADIR/treasures~: $!"; 450 or die "$DATADIR/treasures~: $!";
414 } 464 }
415 465
416 open my $fh, ">:perlio", "$DATADIR/facedata~" 466 open my $fh, ">:perlio", "$DATADIR/facedata~"
417 or die "$DATADIR/facedata~: $!"; 467 or die "$DATADIR/facedata~: $!";
418 468
419 $FACEINFO{""} = { version => 1}; 469 print $fh freeze {
420 print $fh Storable::nfreeze \%FACEINFO; 470 version => 2,
471 faceinfo => \%FACEINFO,
472 animinfo => \%ANIMINFO,
421 } 473 };
474 }
422 475
423 for (qw(archetypes facedata animations treasures)) { 476 for (qw(archetypes facedata treasures)) {
424 chmod 0644, "$DATADIR/$_~"; 477 chmod 0644, "$DATADIR/$_~";
425 rename "$DATADIR/$_~", "$DATADIR/$_" 478 rename "$DATADIR/$_~", "$DATADIR/$_"
426 or die "$DATADIR/$_: $!"; 479 or die "$DATADIR/$_: $!";
427 } 480 }
428 481

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines