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.37 by root, Tue Jul 10 16:24:00 2007 UTC vs.
Revision 1.48 by root, Tue Jul 31 02:24:43 2007 UTC

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]
92 if (!-f "$path/regions") { 95 if (!-f "$path/regions") {
93 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";
94 exit 1 unless $FORCE; 97 exit 1 unless $FORCE;
95 } 98 }
96 99
97 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"
98 and die "map installation failed.\n"; 101 and die "map installation failed.\n";
99 102
100 print "maps installed successfully.\n"; 103 print "maps installed successfully.\n";
101} 104}
102 105
385 388
386 $TRS .= $trs; 389 $TRS .= $trs;
387 } 390 }
388 } 391 }
389 392
393 my %FILECACHE;
394
395 sub load_cached($;$) {
396 unless (exists $FILECACHE{$_[0]}) {
397 my $data;
398 if (0 < aio_load $_[0], $data) {
399 $data = $_[1]->($data)
400 if $_[1];
401 }
402
403 $FILECACHE{$_[0]} = $data;
404 }
405
406 $FILECACHE{$_[0]}
407 }
408
390 sub process_res { 409 sub process_res {
391 while (@res) { 410 while (@res) {
392 my ($dir, $file) = @{pop @res}; 411 my ($dir, $file, $type) = @{pop @res};
393 412
394 my $data; 413 my $data;
395 aio_load "$dir/$file", $data; 414 aio_load "$dir/$file", $data;
396 415
416 my $meta = load_cached "$dir/meta", sub { JSON::XS::from_json shift };
417
418 $meta = {
419 %{ $meta->{"" } || {} },
420 %{ $meta->{$file} || {} },
421 };
422
397 $file =~ s/\.res$//; 423 $file =~ s/\.res$//;
398 $file =~ /\.([^.]+)$/ 424 $file =~ s/\.(ogg|wav|jpg|png)$//;
399 or next;
400
401 my $type = $1;
402 425
403 substr $dir, 0, 1 + length $PATH, ""; 426 substr $dir, 0, 1 + length $PATH, "";
404 427
405 $RESOURCE{"$dir/$file"} = { 428 $RESOURCE{"$dir/$file"} = {
406 type => $1, 429 type => (delete $meta->{type}) || $type,
407 copyright => "", # TODO
408 data => $data, 430 data => $data,
409 chksum => Digest::MD5::md5 $data, 431 chksum => (Digest::MD5::md5 $data),
432 %$meta ? (meta => $meta) : (),
410 }; 433 };
411 } 434 }
412 } 435 }
413 436
414 sub find_files; 437 sub find_files;
420 my ($dirs, $nondirs) = @_; 443 my ($dirs, $nondirs) = @_;
421 444
422 find_files "$path/$_" 445 find_files "$path/$_"
423 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs; 446 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs;
424 447
448 my $dir = $path;
449 substr $dir, 0, 1 + length $PATH, "";
450
425 for my $file (@$nondirs) { 451 for my $file (@$nondirs) {
452 if ($dir =~ /^music(?:\/|$)/) {
453 push @res, [$path, $file, 3] # FT_MUSIC
454 if $file =~ /\.(ogg)$/;
455
456 } elsif ($dir =~ /^sound(?:\/|$)/) {
457 push @res, [$path, $file, 5] # FT_SOUND
458 if $file =~ /\.(wav|ogg)$/;
459
460 } elsif ($dir =~ /^res(?:\/|$)/) {
461 push @res, [$path, $file, 0] # FT_FACE
462 if $file =~ /\.(jpg|png)$/;
463 push @res, [$path, $file, 7] # FT_RSRC
464 if $file =~ /\.(res)$/;
465
426 if ($file =~ /\.png$/) { 466 } elsif ($file =~ /\.png$/) {
427 push @png, ["$path/$file", 0]; 467 push @png, ["$path/$file", 0];
468
428 } elsif ($file =~ /\.trs$/) { 469 } elsif ($file =~ /\.trs$/) {
429 push @trs, [$path, $file]; 470 push @trs, [$path, $file];
471
430 } elsif ($file =~ /\.arc$/) { 472 } elsif ($file =~ /\.arc$/) {
431 push @arc, [$path, $file]; 473 push @arc, [$path, $file];
432 } elsif ($file =~ /\.(ogg|res)$/) { 474
433 push @res, [$path, $file];
434 } else { 475 } else {
435 warn "ignoring $path/$file\n" if $VERBOSE >= 3; 476 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
436 } 477 }
437 } 478 }
438 }; 479 };

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines