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.32 by root, Thu Apr 26 00:41:32 2007 UTC vs.
Revision 1.44 by root, Tue Jul 24 04:55:35 2007 UTC

6my $exec_prefix = "@exec_prefix@"; 6my $exec_prefix = "@exec_prefix@";
7my $datarootdir = "@datarootdir@"; 7my $datarootdir = "@datarootdir@";
8my $DATADIR = "@datadir@/@PACKAGE@"; 8my $DATADIR = "@datadir@/@PACKAGE@";
9 9
10my $CONVERT = "@CONVERT@"; 10my $CONVERT = "@CONVERT@";
11my $IDENTIFY = "@IDENTIFY@"; 11#my $IDENTIFY = "@IDENTIFY@";
12my $OPTIPNG = "@OPTIPNG@"; 12my $OPTIPNG = "@OPTIPNG@";
13my $RSYNC = "@RSYNC@"; 13my $RSYNC = "@RSYNC@";
14my $PNGNQ = "@PNGNQ@"; 14my $PNGNQ = "@PNGNQ@";
15 15
16use Getopt::Long; 16use Getopt::Long;
21use Crossfire; 21use Crossfire;
22use Coro; 22use Coro;
23use Coro::AIO; 23use Coro::AIO;
24use POSIX (); 24use POSIX ();
25use Digest::MD5; 25use Digest::MD5;
26use Carp;
26use Coro::Storable; $Storable::canonical = 1; 27use Coro::Storable; $Storable::canonical = 1;
28
29$SIG{QUIT} = sub { Carp::cluck "QUIT" };
27 30
28sub usage { 31sub usage {
29 warn <<EOF; 32 warn <<EOF;
30Usage: cfutil [-v] [-q] [--force] [--cache] 33Usage: cfutil [-v] [-q] [--force] [--cache]
31 [--install-arch path] 34 [--install-arch path]
43my $CACHE = 0; 46my $CACHE = 0;
44my $FORCE; 47my $FORCE;
45my $TMPDIR = "/tmp/cfutil$$~"; 48my $TMPDIR = "/tmp/cfutil$$~";
46my $TMPFILE = "aaaa0"; 49my $TMPFILE = "aaaa0";
47 50
51our %COLOR = (
52 black => 0,
53 white => 1,
54 navy => 2,
55 red => 3,
56 orange => 4,
57 blue => 5,
58 darkorange => 6,
59 green => 7,
60 lightgreen => 8,
61 grey => 9,
62 brown => 10,
63 gold => 11,
64 tan => 12,
65);
66
48END { system "rm", "-rf", $TMPDIR } 67END { system "rm", "-rf", $TMPDIR }
49 68
50Event->signal (signal => "INT", cb => sub { exit 1 }); 69Event->signal (signal => "INT", cb => sub { exit 1 });
51Event->signal (signal => "TERM", cb => sub { exit 1 }); 70Event->signal (signal => "TERM", cb => sub { exit 1 });
52 71
76 if (!-f "$path/regions") { 95 if (!-f "$path/regions") {
77 warn "'$path' does not look like a maps directory ('regions' file is missing).\n"; 96 warn "'$path' does not look like a maps directory ('regions' file is missing).\n";
78 exit 1 unless $FORCE; 97 exit 1 unless $FORCE;
79 } 98 }
80 99
81 system $RSYNC, "-av", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded" 100 system $RSYNC, "-a", "--chmod=u=rwX,go=rX", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded"
82 and die "map installation failed.\n"; 101 and die "map installation failed.\n";
83 102
84 print "maps installed successfully.\n"; 103 print "maps installed successfully.\n";
85} 104}
86 105
87{ 106{
88 our %ANIMINFO; 107 our %ANIMINFO;
89 our %FACEINFO; 108 our %FACEINFO;
109 our %RESOURCE;
90 our @ARC; 110 our @ARC;
91 our %ARC; 111 our %ARC;
92 our $TRS; 112 our $TRS;
93 our $NFILE; 113 our $NFILE;
114 our $PATH;
94 115
95 our $QUANTIZE = "+dither -colorspace RGB -colors 256"; 116 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
96 117
97 our (@png, @trs, @arc); # files we are interested in 118 our (@png, @trs, @arc, @res); # files we are interested in
98 119
99 sub commit_png($$$) { 120 sub commit_png($$$) {
100 my ($name, $data, $T) = @_; 121 my ($name, $data, $T) = @_;
101 122
102 $FACEINFO{$name}{"data$T"} = $data; 123 $FACEINFO{$name}{"data$T"} = $data;
177 198
178 # reduce smoothfaces >10000 bytes 199 # reduce smoothfaces >10000 bytes
179 if ($stem =~ /_S\./ && (-s "$other~") > 10000) { 200 if ($stem =~ /_S\./ && (-s "$other~") > 10000) {
180 my $ncolor = 256; 201 my $ncolor = 256;
181 while () { 202 while () {
182 system "<\Q$other~\E $PNGNQ -n$ncolor >\Q$other~~\E"; 203 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
183 system $OPTIPNG, "-i0", "-q", "$other~~"; 204 system $OPTIPNG, "-i0", "-q", "$other~~";
184 last if 10000 > -s "$other~~"; 205 last if 10000 > -s "$other~~";
185 $ncolor = int $ncolor * 0.9; 206 $ncolor = int $ncolor * 0.9;
186 $ncolor > 8 or die "cannot reduce filesize to < 10000 bytes"; 207 $ncolor > 8 or die "cannot reduce filesize to < 10000 bytes";
187 } 208 }
301 322
302 my $ext = $x|$y ? "+$x+$y" : ""; 323 my $ext = $x|$y ? "+$x+$y" : "";
303 324
304 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face}; 325 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
305 326
306 my $visibility = delete $o->{visibility} if exists $o->{visibility}; 327 $visibility = delete $o->{visibility} if exists $o->{visibility};
307 my $magicmap = delete $o->{magicmap} if exists $o->{magicmap}; 328 $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
308 329
309 my $anim = delete $o->{anim}; 330 my $anim = delete $o->{anim};
310 331
311 if ($anim) { 332 if ($anim) {
312 # possibly add $ext to the animation name to avoid 333 # possibly add $ext to the animation name to avoid
367 388
368 $TRS .= $trs; 389 $TRS .= $trs;
369 } 390 }
370 } 391 }
371 392
393 sub process_res {
394 while (@res) {
395 my ($dir, $file, $type) = @{pop @res};
396
397 my $data;
398 aio_load "$dir/$file", $data;
399
400 my $copyright;
401 aio_load "$dir/copyright", $copyright;
402
403 $file =~ s/\.res$//;
404 $file =~ /\.([^.]+)$/
405 or next;
406
407 substr $dir, 0, 1 + length $PATH, "";
408
409 $RESOURCE{"$dir/$file"} = {
410 type => $type,
411 copyright => $copyright,
412 data => $data,
413 chksum => Digest::MD5::md5 $data,
414 };
415 }
416 }
417
372 sub find_files; 418 sub find_files;
373 sub find_files { 419 sub find_files {
374 my ($path) = @_; 420 my ($path) = @_;
375 421
376 IO::AIO::aioreq_pri 4; 422 IO::AIO::aioreq_pri 4;
378 my ($dirs, $nondirs) = @_; 424 my ($dirs, $nondirs) = @_;
379 425
380 find_files "$path/$_" 426 find_files "$path/$_"
381 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs; 427 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs;
382 428
429 my $dir = $path;
430 substr $dir, 0, 1 + length $PATH, "";
431
383 for my $file (@$nondirs) { 432 for my $file (@$nondirs) {
433 if ($dir =~ /^music(?:\/|$)/) {
434 push @res, [$path, $file, 3] # FT_MUSIC
435 if $file =~ /\.(ogg)$/;
436
437 } elsif ($dir =~ /^sounds(?:\/|$)/) {
438 push @res, [$path, $file, 5] # FT_SOUND
439 if $file =~ /\.(wav|ogg)$/;
440
441 } elsif ($dir =~ /^res(?:\/|$)/) {
442 push @res, [$path, $file, 0] # FT_FACE
443 if $file =~ /\.(jpg|png)$/;
444 push @res, [$path, $file, 7] # FT_RSRC
445 if $file =~ /\.(res)$/;
446
384 if ($file =~ /\.png$/) { 447 } elsif ($file =~ /\.png$/) {
385 push @png, ["$path/$file", 0]; 448 push @png, ["$path/$file", 0];
449
386 } elsif ($file =~ /\.trs$/) { 450 } elsif ($file =~ /\.trs$/) {
387 push @trs, [$path, $file]; 451 push @trs, [$path, $file];
452
388 } elsif ($file =~ /\.arc$/) { 453 } elsif ($file =~ /\.arc$/) {
389 push @arc, [$path, $file]; 454 push @arc, [$path, $file];
455
390 } else { 456 } else {
391 warn "ignoring $path/$file\n" if $VERBOSE >= 2; 457 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
392 } 458 }
393 } 459 }
394 }; 460 };
395 } 461 }
396 462
397 sub inst_arch($) { 463 sub inst_arch($) {
398 my (undef, $path) = @_; 464 my (undef, $path) = @_;
465
466 $PATH = $path;
399 467
400 print "\n", 468 print "\n",
401 "Installing '$path' to '$DATADIR'\n", 469 "Installing '$path' to '$DATADIR'\n",
402 "\n", 470 "\n",
403 "This can take a long time if you run this\n", 471 "This can take a long time if you run this\n",
418 $_->join for ( 486 $_->join for (
419 # four png crunchers work fine for my 2x smp machine 487 # four png crunchers work fine for my 2x smp machine
420 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png), 488 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png),
421 (async \&process_trs), (async \&process_trs), 489 (async \&process_trs), (async \&process_trs),
422 (async \&process_arc), (async \&process_arc), 490 (async \&process_arc), (async \&process_arc),
491 (async \&process_res), (async \&process_res),
423 ); 492 );
424 493
425 { 494 {
426 # remove path prefix from editor_folder 495 # remove path prefix from editor_folder
427 substr $_->{editor_folder}, 0, 1 + length $path, "" 496 substr $_->{editor_folder}, 0, 1 + length $path, ""
457 526
458 last; 527 last;
459 } 528 }
460 } 529 }
461 530
531 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit
532 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC;
533
462 open my $fh, ">:utf8", "$DATADIR/archetypes~" 534 open my $fh, ">:utf8", "$DATADIR/archetypes~"
463 or die "$DATADIR/archetypes~: $!"; 535 or die "$DATADIR/archetypes~: $!";
464 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC]; 536 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
465 } 537 }
466 538
478 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n"; 550 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
479 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n"; 551 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
480 552
481 $v->{chksum32} = Digest::MD5::md5 $v->{data32}; 553 $v->{chksum32} = Digest::MD5::md5 $v->{data32};
482 $v->{chksum64} = Digest::MD5::md5 $v->{data64}; 554 $v->{chksum64} = Digest::MD5::md5 $v->{data64};
555
556 if (my $magicmap = $v->{magicmap}) {
557 $magicmap =~ y/A-Z_\-/a-z/d;
558 $v->{magicmap} = $COLOR{$magicmap};
559 }
483 } 560 }
484 561
485 open my $fh, ">:perlio", "$DATADIR/facedata~" 562 open my $fh, ">:perlio", "$DATADIR/facedata~"
486 or die "$DATADIR/facedata~: $!"; 563 or die "$DATADIR/facedata~: $!";
487 564
488 print $fh freeze { 565 print $fh freeze {
489 version => 2, 566 version => 2,
490 faceinfo => \%FACEINFO, 567 faceinfo => \%FACEINFO,
491 animinfo => \%ANIMINFO, 568 animinfo => \%ANIMINFO,
569 resource => \%RESOURCE,
492 }; 570 };
493 } 571 }
494 572
495 for (qw(archetypes facedata treasures)) { 573 for (qw(archetypes facedata treasures)) {
496 chmod 0644, "$DATADIR/$_~"; 574 chmod 0644, "$DATADIR/$_~";

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines