ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/Deliantra.pm
(Generate patch)

Comparing deliantra/Deliantra/Deliantra.pm (file contents):
Revision 1.72 by root, Mon Sep 4 17:58:51 2006 UTC vs.
Revision 1.82 by root, Tue Feb 6 23:53:26 2007 UTC

4 4
5=cut 5=cut
6 6
7package Crossfire; 7package Crossfire;
8 8
9our $VERSION = '0.9'; 9our $VERSION = '0.96';
10 10
11use strict; 11use strict;
12 12
13use base 'Exporter'; 13use base 'Exporter';
14 14
33 JSON::Syck::Dump $_[0] 33 JSON::Syck::Dump $_[0]
34} 34}
35 35
36our $LIB = $ENV{CROSSFIRE_LIBDIR}; 36our $LIB = $ENV{CROSSFIRE_LIBDIR};
37 37
38our $VARDIR = $ENV{HOME} ? "$ENV{HOME}/.crossfire" : File::Spec->tmpdir . "/crossfire"; 38our $VARDIR = $ENV{HOME} ? "$ENV{HOME}/.crossfire"
39 : $ENV{AppData} ? "$ENV{APPDATA}/crossfire"
40 : File::Spec->tmpdir . "/crossfire";
39 41
40mkdir $VARDIR, 0777; 42mkdir $VARDIR, 0777;
41 43
42sub TILESIZE (){ 32 } 44sub TILESIZE (){ 32 }
43 45
193 195
194sub _add_resist($$$) { 196sub _add_resist($$$) {
195 my ($ob, $mask, $value) = @_; 197 my ($ob, $mask, $value) = @_;
196 198
197 while (my ($k, $v) = each %attack_mask) { 199 while (my ($k, $v) = each %attack_mask) {
198 $ob->{"resist_$k"} += $value if $mask & $v; 200 $ob->{"resist_$k"} = min 100, max -100, $ob->{"resist_$k"} + $value if $mask & $v;
199 } 201 }
200} 202}
203
204my %MATERIAL = reverse
205 paper => 1,
206 iron => 2,
207 glass => 4,
208 leather => 8,
209 wood => 16,
210 organic => 32,
211 stone => 64,
212 cloth => 128,
213 adamant => 256,
214 liquid => 512,
215 tin => 1024,
216 bone => 2048,
217 ice => 4096,
218;
201 219
202# object as in "Object xxx", i.e. archetypes 220# object as in "Object xxx", i.e. archetypes
203sub normalize_object($) { 221sub normalize_object($) {
204 my ($ob) = @_; 222 my ($ob) = @_;
223
224 # convert material bitset to materialname, if possible
225 if (exists $ob->{material}) {
226 if (!$ob->{material}) {
227 delete $ob->{material};
228 } elsif (exists $ob->{materialname}) {
229 if ($MATERIAL{$ob->{material}} eq $ob->{materialname}) {
230 delete $ob->{material};
231 } else {
232 warn "object $ob->{_name} has both materialname ($ob->{materialname}) and material ($ob->{material}) set.\n";
233 delete $ob->{material}; # assume materilname is more specific and nuke material
234 }
235 } else {
236 if (my $name = $MATERIAL{$ob->{material}}) {
237 delete $ob->{material};
238 $ob->{materialname} = $name;
239 }
240 }
241 }
205 242
206 # nuke outdated or never supported fields 243 # nuke outdated or never supported fields
207 delete @$ob{qw( 244 delete @$ob{qw(
208 can_knockback can_parry can_impale can_cut can_dam_armour 245 can_knockback can_parry can_impale can_cut can_dam_armour
209 can_apply pass_thru can_pass_thru 246 can_apply pass_thru can_pass_thru
288 slaying => delete $ob->{"event_${event}"}, 325 slaying => delete $ob->{"event_${event}"},
289 name => delete $ob->{"event_${event}_options"}, 326 name => delete $ob->{"event_${event}_options"},
290 }; 327 };
291 } 328 }
292 } 329 }
330
331 # some archetypes had "+3" instead of the canonical "3", so fix
332 $ob->{dam} *= 1 if exists $ob->{dam};
293 333
294 $ob 334 $ob
295} 335}
296 336
297# arch as in "arch xxx", ie.. objects 337# arch as in "arch xxx", ie.. objects
379sub read_arch($;$) { 419sub read_arch($;$) {
380 my ($path, $toplevel) = @_; 420 my ($path, $toplevel) = @_;
381 421
382 my %arc; 422 my %arc;
383 my ($more, $prev); 423 my ($more, $prev);
424 my $comment;
384 425
385 open my $fh, "<:raw:perlio:utf8", $path 426 open my $fh, "<:raw:perlio:utf8", $path
386 or Carp::croak "$path: $!"; 427 or Carp::croak "$path: $!";
387 428
388# binmode $fh; 429# binmode $fh;
392 433
393 while (<$fh>) { 434 while (<$fh>) {
394 s/\s+$//; 435 s/\s+$//;
395 if (/^end$/i) { 436 if (/^end$/i) {
396 last; 437 last;
438
397 } elsif (/^arch (\S+)$/i) { 439 } elsif (/^arch (\S+)$/i) {
398 push @{ $arc{inventory} }, attr_thaw normalize_arch $parse_block->(_name => $1); 440 push @{ $arc{inventory} }, attr_thaw normalize_arch $parse_block->(_name => $1);
441
399 } elsif (/^lore$/i) { 442 } elsif (/^lore$/i) {
400 while (<$fh>) { 443 while (<$fh>) {
401 last if /^endlore\s*$/i; 444 last if /^endlore\s*$/i;
402 $arc{lore} .= $_; 445 $arc{lore} .= $_;
403 } 446 }
412 chomp; 455 chomp;
413 push @{ $arc{anim} }, $_; 456 push @{ $arc{anim} }, $_;
414 } 457 }
415 } elsif (/^(\S+)\s*(.*)$/) { 458 } elsif (/^(\S+)\s*(.*)$/) {
416 $arc{lc $1} = $2; 459 $arc{lc $1} = $2;
417 } elsif (/^\s*($|#)/) { 460 } elsif (/^\s*#/) {
461 $arc{_comment} .= "$_\n";
462
463 } elsif (/^\s*$/) {
418 # 464 #
419 } else { 465 } else {
420 warn "$path: unparsable line '$_' in arch $arc{_name}"; 466 warn "$path: unparsable line '$_' in arch $arc{_name}";
421 } 467 }
422 } 468 }
428 s/\s+$//; 474 s/\s+$//;
429 if (/^more$/i) { 475 if (/^more$/i) {
430 $more = $prev; 476 $more = $prev;
431 } elsif (/^object (\S+)$/i) { 477 } elsif (/^object (\S+)$/i) {
432 my $name = $1; 478 my $name = $1;
433 my $arc = attr_thaw normalize_object $parse_block->(_name => $name); 479 my $arc = attr_thaw normalize_object $parse_block->(_name => $name, _comment => $comment);
480 undef $comment;
481 delete $arc{_comment} unless length $arc{_comment};
434 $arc->{_atype} = 'object'; 482 $arc->{_atype} = 'object';
435 483
436 if ($more) { 484 if ($more) {
437 $more->{more} = $arc; 485 $more->{more} = $arc;
438 } else { 486 } else {
440 } 488 }
441 $prev = $arc; 489 $prev = $arc;
442 $more = undef; 490 $more = undef;
443 } elsif (/^arch (\S+)$/i) { 491 } elsif (/^arch (\S+)$/i) {
444 my $name = $1; 492 my $name = $1;
445 my $arc = attr_thaw normalize_arch $parse_block->(_name => $name); 493 my $arc = attr_thaw normalize_arch $parse_block->(_name => $name, _comment => $comment);
494 undef $comment;
495 delete $arc{_comment} unless length $arc{_comment};
446 $arc->{_atype} = 'arch'; 496 $arc->{_atype} = 'arch';
447 497
448 if ($more) { 498 if ($more) {
449 $more->{more} = $arc; 499 $more->{more} = $arc;
450 } else { 500 } else {
459 push @{$toplevel->{lev_array}}, $_+0; 509 push @{$toplevel->{lev_array}}, $_+0;
460 } 510 }
461 } else { 511 } else {
462 $toplevel->{$1} = $2; 512 $toplevel->{$1} = $2;
463 } 513 }
514 } elsif (/^\s*#/) {
515 $comment .= "$_\n";
464 } elsif (/^\s*($|#)/) { 516 } elsif (/^\s*($|#)/) {
465 # 517 #
466 } else { 518 } else {
467 die "$path: unparseable top-level line '$_'"; 519 die "$path: unparseable top-level line '$_'";
468 } 520 }
488 if (exists $a{attack_movement_bits_0_3} or exists $a{attack_movement_bits_4_7}) { 540 if (exists $a{attack_movement_bits_0_3} or exists $a{attack_movement_bits_4_7}) {
489 $a{attack_movement} = (delete $a{attack_movement_bits_0_3}) 541 $a{attack_movement} = (delete $a{attack_movement_bits_0_3})
490 | (delete $a{attack_movement_bits_4_7}); 542 | (delete $a{attack_movement_bits_4_7});
491 } 543 }
492 544
545 if (my $comment = delete $a{_comment}) {
546 if ($comment =~ /[^\n\s#]/) {
547 $str .= $comment;
548 }
549 }
550
493 $str .= ((exists $a{_atype}) ? $a{_atype} : 'arch'). " $a{_name}\n"; 551 $str .= ((exists $a{_atype}) ? $a{_atype} : 'arch'). " $a{_name}\n";
494 552
495 my $inv = delete $a{inventory}; 553 my $inv = delete $a{inventory};
496 my $more = delete $a{more}; # arches do not support 'more', but old maps can contain some 554 my $more = delete $a{more}; # arches do not support 'more', but old maps can contain some
497 my $anim = delete $a{anim}; 555 my $anim = delete $a{anim};
498 556
499 my @kv; 557 my @kv;
500 558
556 if $anim; 614 if $anim;
557 } 615 }
558 616
559 $str .= "end\n"; 617 $str .= "end\n";
560 618
561 if (($a{_atype} eq 'object') && $more) { 619 if ($a{_atype} eq 'object') {
620 if ($more) {
562 $str .= "\nmore\n"; 621 $str .= "more\n";
563 $append->($more) if $more; 622 $append->($more) if $more;
623 } else {
624 $str .= "\n";
625 }
564 } 626 }
565 }; 627 };
566 628
567 for (@$arch) { 629 for (@$arch) {
568 $append->($_); 630 $append->($_);
597 my ($a) = @_; 659 my ($a) = @_;
598 660
599 my $o = $ARCH{$a->{_name}} 661 my $o = $ARCH{$a->{_name}}
600 or return; 662 or return;
601 663
602 my $face = $FACE{$a->{face} || $o->{face} || "blank.111"} 664 my $face = $FACE{$a->{face} || $o->{face} || "blank.111"};
665 unless ($face) {
666 $face = $FACE{"blank.x11"}
603 or (warn "no face data found for arch '$a->{_name}'"), return; 667 or (warn "no face data found for arch '$a->{_name}'"), return;
668 }
604 669
605 if ($face->{w} > 1 || $face->{h} > 1) { 670 if ($face->{w} > 1 || $face->{h} > 1) {
606 # bigface 671 # bigface
607 return (0, 0, $face->{w} - 1, $face->{h} - 1); 672 return (0, 0, $face->{w} - 1, $face->{h} - 1);
608 673

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines