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.1 by elmex, Sat Feb 4 23:24:03 2006 UTC vs.
Revision 1.6 by elmex, Sun Feb 5 00:28:09 2006 UTC

1package Crossfire;
2=head1 NAME 1=head1 NAME
3 2
4Crossfire - Crossfire maphandling 3Crossfire - Crossfire maphandling
5 4
6=cut 5=cut
7 6
7package Crossfire;
8
8our $VERSION = '1.21'; 9our $VERSION = '0.1';
10use base 'Exporter';
11our @EXPORT = qw(read_pak read_arch arch2map);
9 12
10use strict; 13use strict;
11 14
12use Storable; 15use Storable;
13use List::Util qw(max);
14 16
15#use Gtk2;
16
17#init Gtk2::Gdk;
18
19my $LIB = $ENV{CROSSFIRE_LIBDIR} 17our $LIB = $ENV{CROSSFIRE_LIBDIR}
20 or die "\$CROSSFIRE_LIBDIR must be set\n"; 18 or die "\$CROSSFIRE_LIBDIR must be set\n";
21
22my $VARDIR = "$ENV{HOME}/.gcfedit";
23mkdir $VARDIR;
24 19
25sub T (){ 32 } 20sub T (){ 32 }
26 21
22our $ARCH;
23our $TILE;
24
27sub read_pak($) { 25sub read_pak($;$) {
28 my ($path) = @_; 26 my ($path, $cache) = @_;
29 27
30 eval { 28 eval {
31 -M "$VARDIR/crossfire.pak.pst" < -M $path 29 defined $cache
32 && Storable::retrieve "$VARDIR/crossfire.pak.pst" 30 && -M $cache < -M $path
31 && Storable::retrieve $cache
33 } or do { 32 } or do {
34 my %pak; 33 my %pak;
35 34
36 open my $fh, "<:raw", $path 35 open my $fh, "<:raw", $path
37 or die "$_[0]: $!"; 36 or die "$_[0]: $!";
39 my ($type, $id, $len, $path) = split; 38 my ($type, $id, $len, $path) = split;
40 $path =~ s/.*\///; 39 $path =~ s/.*\///;
41 read $fh, $pak{$path}, $len; 40 read $fh, $pak{$path}, $len;
42 } 41 }
43 42
44 Storable::nstore \%pak, "$VARDIR/crossfire.pak.pst"; 43 Storable::nstore \%pak, $cache
44 if defined $cache;
45 45
46 \%pak 46 \%pak
47 } 47 }
48} 48}
49 49
50sub read_arch($;$) { 50sub read_arch($;$) {
51 my ($path, $cache) = @_; 51 my ($path, $cache) = @_;
52 52
53 eval { 53 eval {
54 $cache 54 defined $cache
55 && -M "$VARDIR/$path.pst" < -M $path 55 && -M $cache < -M $path
56 && Storable::retrieve "$VARDIR/$path.pst" 56 && Storable::retrieve $cache
57 } or do { 57 } or do {
58 my %arc; 58 my %arc;
59 my ($more, $prev); 59 my ($more, $prev);
60 60
61 open my $fh, "<:raw", $path 61 open my $fh, "<:raw", $path
116 } 116 }
117 } 117 }
118 118
119 undef $parse_block; # work around bug in perl not freeing $fh etc. 119 undef $parse_block; # work around bug in perl not freeing $fh etc.
120 120
121 if ($cache) {
122 Storable::nstore \%arc, "$path.pst"; 121 Storable::nstore \%arc, $cache
123 utime +(stat $path)[8,9], "$path.pst"; 122 if defined $cache;
124 }
125 123
126 \%arc 124 \%arc
127 } 125 }
128} 126}
129 127
130sub cfmap_meta($;$) { 128sub arch2map($;$) {
131 my ($self, $mapa, $mapname) = @_; 129 my ($mapa) = @_;
132
133 my $arch = $self->{arch};
134 130
135 my %meta; 131 my %meta;
136 132
137 my ($mapx, $mapy); 133 my ($mapx, $mapy);
138 134
158 } 154 }
159 155
160 $meta{width} = $mapx; 156 $meta{width} = $mapx;
161 $meta{height} = $mapy; 157 $meta{height} = $mapy;
162 158
163 my %draw_info;
164 my %map_info;
165
166 # first pass, gather face stacking order, border and corner info
167 for my $x (0 .. $mapx - 1) {
168 my $col = $map->[$x];
169 for my $y (0 .. $mapy - 1) {
170 my $as = $col->[$y] || [];
171
172 for my $layer (0 .. $#$as) {
173 my $a = $as->[$layer];
174
175 my $o = $arch->{$a->{_name}}
176 or (warn "$mapname: arch '$a->{_name}' not found at ($x|$y)\n"), next;
177
178 #my $is_floor = exists $a->{is_floor} ? $a->{is_floor} : $o->{is_floor};
179 my $level = $layer * 256;
180
181 $level -= 100 * 256 if $o->{_name} eq "blocked";
182
183 while ($o) {
184 my $face = $a->{face} || $o->{face};
185
186 my $mx = $x + $o->{x};
187 my $my = $y + $o->{y};
188
189 last if 0 > $mx || $mx >= $mapx
190 || 0 > $my || $my >= $mapy;
191
192 push @{ $map_info{$level}{$mx, $my} }, $a;
193
194 $o = $o->{more};
195 $level = ($layer + 1000) * 2; # put "big things" on top, no matter what
196 }
197 }
198 }
199 }
200
201 # third pass, gather meta info
202 for my $level (sort { $a <=> $b } keys %map_info) {
203 my $info = $map_info{$level};
204
205 while (my ($xy, $as) = each %$info) {
206 my ($x, $y) = split $;, $xy;
207
208 next if $x < 0 || $x >= $mapx
209 || $y < 0 || $y >= $mapy;
210
211 push @{ $meta{map}[$x][$y] }, $_ for @$as;
212 }
213 }
214
215 \%meta 159 \%meta
216} 160}
217 161
218sub new { 162sub init($) {
219 my $class = shift; 163 my ($cachedir) = @_;
220 my $self = bless { }, $class;
221 $self->{arch} = read_arch "$LIB/archetypes";
222 $self->{tile} = read_pak "$LIB/crossfire.0";
223 $self
224}
225 164
226sub read { 165 $ARCH = read_arch "$LIB/archetypes", "$cachedir/archetypes.pst";
227 my ($self, $file) = @_; 166 $TILE = read_pak "$LIB/crossfire.0", "$cachedir/crossfire.0.pst";
228 my $mapa = read_arch $file;
229 my $map = $self->cfmap_meta ($mapa, $file);
230 print "READ: ".join(',', %{$map->{info}})."\n";
231 return $map;
232} 167}
233 168
234=head1 AUTHOR 169=head1 AUTHOR
235 170
236 Marc Lehmann <schmorp@schmorp.de> 171 Marc Lehmann <schmorp@schmorp.de>
238 173
239 Robin Redeker <elmex@ta-sa.org> 174 Robin Redeker <elmex@ta-sa.org>
240 http://www.ta-sa.org/ 175 http://www.ta-sa.org/
241 176
242=cut 177=cut
2431; 178
1791

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines