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.80 by root, Tue Feb 6 22:08:14 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}
201 203
202# object as in "Object xxx", i.e. archetypes 204# object as in "Object xxx", i.e. archetypes
203sub normalize_object($) { 205sub normalize_object($) {
288 slaying => delete $ob->{"event_${event}"}, 290 slaying => delete $ob->{"event_${event}"},
289 name => delete $ob->{"event_${event}_options"}, 291 name => delete $ob->{"event_${event}_options"},
290 }; 292 };
291 } 293 }
292 } 294 }
295
296 # some archetypes had "+3" instead of the canonical "3", so fix
297 $ob->{dam} *= 1 if exists $ob->{dam};
293 298
294 $ob 299 $ob
295} 300}
296 301
297# arch as in "arch xxx", ie.. objects 302# arch as in "arch xxx", ie.. objects
379sub read_arch($;$) { 384sub read_arch($;$) {
380 my ($path, $toplevel) = @_; 385 my ($path, $toplevel) = @_;
381 386
382 my %arc; 387 my %arc;
383 my ($more, $prev); 388 my ($more, $prev);
389 my $comment;
384 390
385 open my $fh, "<:raw:perlio:utf8", $path 391 open my $fh, "<:raw:perlio:utf8", $path
386 or Carp::croak "$path: $!"; 392 or Carp::croak "$path: $!";
387 393
388# binmode $fh; 394# binmode $fh;
392 398
393 while (<$fh>) { 399 while (<$fh>) {
394 s/\s+$//; 400 s/\s+$//;
395 if (/^end$/i) { 401 if (/^end$/i) {
396 last; 402 last;
403
397 } elsif (/^arch (\S+)$/i) { 404 } elsif (/^arch (\S+)$/i) {
398 push @{ $arc{inventory} }, attr_thaw normalize_arch $parse_block->(_name => $1); 405 push @{ $arc{inventory} }, attr_thaw normalize_arch $parse_block->(_name => $1);
406
399 } elsif (/^lore$/i) { 407 } elsif (/^lore$/i) {
400 while (<$fh>) { 408 while (<$fh>) {
401 last if /^endlore\s*$/i; 409 last if /^endlore\s*$/i;
402 $arc{lore} .= $_; 410 $arc{lore} .= $_;
403 } 411 }
412 chomp; 420 chomp;
413 push @{ $arc{anim} }, $_; 421 push @{ $arc{anim} }, $_;
414 } 422 }
415 } elsif (/^(\S+)\s*(.*)$/) { 423 } elsif (/^(\S+)\s*(.*)$/) {
416 $arc{lc $1} = $2; 424 $arc{lc $1} = $2;
417 } elsif (/^\s*($|#)/) { 425 } elsif (/^\s*#/) {
426 $arc{_comment} .= $_;
427
428 } elsif (/^\s*$/) {
418 # 429 #
419 } else { 430 } else {
420 warn "$path: unparsable line '$_' in arch $arc{_name}"; 431 warn "$path: unparsable line '$_' in arch $arc{_name}";
421 } 432 }
422 } 433 }
426 437
427 while (<$fh>) { 438 while (<$fh>) {
428 s/\s+$//; 439 s/\s+$//;
429 if (/^more$/i) { 440 if (/^more$/i) {
430 $more = $prev; 441 $more = $prev;
442 } elsif (/^\s*#/) {
443 $comment .= $_;
431 } elsif (/^object (\S+)$/i) { 444 } elsif (/^object (\S+)$/i) {
432 my $name = $1; 445 my $name = $1;
433 my $arc = attr_thaw normalize_object $parse_block->(_name => $name); 446 my $arc = attr_thaw normalize_object $parse_block->(_name => $name, _comment => $comment);
447 delete $arc{_comment} unless length $arc{_comment};
434 $arc->{_atype} = 'object'; 448 $arc->{_atype} = 'object';
435 449
436 if ($more) { 450 if ($more) {
437 $more->{more} = $arc; 451 $more->{more} = $arc;
438 } else { 452 } else {
440 } 454 }
441 $prev = $arc; 455 $prev = $arc;
442 $more = undef; 456 $more = undef;
443 } elsif (/^arch (\S+)$/i) { 457 } elsif (/^arch (\S+)$/i) {
444 my $name = $1; 458 my $name = $1;
445 my $arc = attr_thaw normalize_arch $parse_block->(_name => $name); 459 my $arc = attr_thaw normalize_arch $parse_block->(_name => $name, _comment => $comment);
460 delete $arc{_comment} unless length $arc{_comment};
446 $arc->{_atype} = 'arch'; 461 $arc->{_atype} = 'arch';
447 462
448 if ($more) { 463 if ($more) {
449 $more->{more} = $arc; 464 $more->{more} = $arc;
450 } else { 465 } else {
597 my ($a) = @_; 612 my ($a) = @_;
598 613
599 my $o = $ARCH{$a->{_name}} 614 my $o = $ARCH{$a->{_name}}
600 or return; 615 or return;
601 616
602 my $face = $FACE{$a->{face} || $o->{face} || "blank.111"} 617 my $face = $FACE{$a->{face} || $o->{face} || "blank.111"};
618 unless ($face) {
619 $face = $FACE{"blank.x11"}
603 or (warn "no face data found for arch '$a->{_name}'"), return; 620 or (warn "no face data found for arch '$a->{_name}'"), return;
621 }
604 622
605 if ($face->{w} > 1 || $face->{h} > 1) { 623 if ($face->{w} > 1 || $face->{h} > 1) {
606 # bigface 624 # bigface
607 return (0, 0, $face->{w} - 1, $face->{h} - 1); 625 return (0, 0, $face->{w} - 1, $face->{h} - 1);
608 626

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines