ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cfmaps/cfmap2png
(Generate patch)

Comparing cfmaps/cfmap2png (file contents):
Revision 1.1 by root, Thu Nov 17 11:51:08 2005 UTC vs.
Revision 1.7 by root, Fri Nov 18 23:20:26 2005 UTC

1#!/opt/bin/perl 1#!/opt/bin/perl
2 2
3# bugs: http://cfmaps.schmorp.de/brest/apartments/brest_town_house.html <- walls
4# whaling... icecaves... water is red?
5# tower of stars: missing craters? 3# tower of stars: missing craters?
6# http://cfmaps.schmorp.de/pup_land/raffle/raffle3_u2.html <-> yellow "doors" show as grey stone as surrounding
7 4
8use strict; 5use strict;
9 6
10use Storable; 7use Storable;
11use List::Util qw(max); 8use List::Util qw(max);
12 9
13use Gtk2; 10use Gtk2;
11
12our $VERSION = '1.0';
14 13
15#init Gtk2::Gdk; 14#init Gtk2::Gdk;
16 15
17my $LIB = $ENV{CROSSFIRE_LIBDIR} 16my $LIB = $ENV{CROSSFIRE_LIBDIR}
18 or die "\$CROSSFIRE_LIBDIR must be set\n"; 17 or die "\$CROSSFIRE_LIBDIR must be set\n";
85 while (<$fh>) { 84 while (<$fh>) {
86 s/\s+$//; 85 s/\s+$//;
87 if (/^end$/i) { 86 if (/^end$/i) {
88 last; 87 last;
89 } elsif (/^arch (\S+)$/) { 88 } elsif (/^arch (\S+)$/) {
90 push @{ $arc{subarch} }, $parse_block->(_name => $1); 89 push @{ $arc{inventory} }, $parse_block->(_name => $1);
90 } elsif (/^lore$/) {
91 while (<$fh>) {
92 last if /^endlore\s*$/i;
93 $arc{lore} .= $_;
94 }
91 } elsif (/^msg$/) { 95 } elsif (/^msg$/) {
92 while (<$fh>) { 96 while (<$fh>) {
93 last if /^endmsg\s*$/i; 97 last if /^endmsg\s*$/i;
94 $arc{msg} .= $_; 98 $arc{msg} .= $_;
95 } 99 }
111 $more = $prev; 115 $more = $prev;
112 } elsif (/^object (\S+)$/i) { 116 } elsif (/^object (\S+)$/i) {
113 my $name = $1; 117 my $name = $1;
114 my $arc = $parse_block->(_name => $name); 118 my $arc = $parse_block->(_name => $name);
115 119
120 if ($more) {
121 $more->{more} = $arc;
122 } else {
116 $arc{$name} = $arc; 123 $arc{$name} = $arc;
117 $more->{more} = $arc if $more; 124 }
118 125
119 $prev = $arc; 126 $prev = $arc;
120 $more = undef; 127 $more = undef;
121 } elsif (/^arch (\S+)$/i) { 128 } elsif (/^arch (\S+)$/i) {
122 push @{ $arc{arch} }, $parse_block->(_name => $1); 129 push @{ $arc{arch} }, $parse_block->(_name => $1);
188 } 195 }
189 196
190 $meta{width} = $mapx; 197 $meta{width} = $mapx;
191 $meta{height} = $mapy; 198 $meta{height} = $mapy;
192 199
193 my %map_face;
194 my %draw_info; 200 my %draw_info;
195
196 my $OBJ_LEVEL = 2**32; # higher than any valid (or in-use) smooth_level
197 201
198 # first pass, gather face stacking order, border and corner info 202 # first pass, gather face stacking order, border and corner info
199 for my $x (0 .. $mapx - 1) { 203 for my $x (0 .. $mapx - 1) {
200 my $col = $map->[$x]; 204 my $col = $map->[$x];
201 for my $y (0 .. $mapy - 1) { 205 for my $y (0 .. $mapy - 1) {
205 my $a = $as->[$layer]; 209 my $a = $as->[$layer];
206 210
207 my $o = $arch->{$a->{_name}} 211 my $o = $arch->{$a->{_name}}
208 or (warn "$mapname: arch '$a->{_name}' not found at ($x|$y)\n"), next; 212 or (warn "$mapname: arch '$a->{_name}' not found at ($x|$y)\n"), next;
209 213
210 $o = $arch->{$o->{other_arch}} while $o->{other_arch} && !$o->{face}; 214 my $smoothlevel = exists $a->{smoothlevel} ? $a->{smoothlevel} : $o->{smoothlevel};
211 215 my $is_floor = exists $a->{is_floor} ? $a->{is_floor} : $o->{is_floor};
212 $o or die "arch $a->{_name} undefined at ($x|$y)\n";
213
214 my $smooth_level = $o->{smoothlevel};
215 my $level = $smooth_level ? $smooth_level 216 my $level = $smoothlevel ? $smoothlevel
216 : $o->{is_floor} ? 0 217 : $is_floor ? 0
217 : $OBJ_LEVEL + $layer; 218 : 256 + $layer;
218 219
219 while ($o) { 220 while ($o) {
221 my $face = $a->{face} || $o->{face};
222
220 my $pb = tile $o->{face} 223 my $pb = tile $face
221 or (warn "$mapname: face '$o->{face}' not found for arch '$a->{_name}' at ($x|$y)\n"), last; 224 or (warn "$mapname: face '$face' not found for arch '$a->{_name}' at ($x|$y)\n"), last;
222 225
223 my $mx = $x + $o->{x}; 226 my $mx = $x + $o->{x};
224 my $my = $y + $o->{y}; 227 my $my = $y + $o->{y};
225 228
226 last if $mx >= $mapx 229 last if 0 > $mx || $mx >= $mapx
227 || $my >= $mapy; 230 || 0 > $my || $my >= $mapy;
228 231
229 # this is very ugly (some tiles are 32x33 or worse) 232 # this is very ugly (some tiles are 32x33 or worse)
230 my $bigface = $pb->get_width >= T*2 || $pb->get_height >= T*2; 233 my $bigface = $pb->get_width >= T*2 || $pb->get_height >= T*2;
231 234
232 if (my $sface = $smooth->{$o->{face}}) { 235 if (my $sface = $smooth->{$face}) {
233 $bigface and die "can't handle big faces with smoothing ($o->{face})\n"; 236 $bigface and die "can't handle bigfaces with smoothing ($face)\n";
234 237
235 # full tile 238 # full tile
236 $draw_info{$smooth_level}{$sface}{$mx , $my } |= 0x1000; 239 $draw_info{$smoothlevel}{$sface}{$mx , $my } |= 0x1000;
237 240
238 # borders 241 # borders
239 $draw_info{$smooth_level}{$sface}{$mx + 1, $my } |= 0x0031; 242 $draw_info{$smoothlevel}{$sface}{$mx + 1, $my } |= 0x0031;
240 $draw_info{$smooth_level}{$sface}{$mx , $my + 1} |= 0x0092; 243 $draw_info{$smoothlevel}{$sface}{$mx , $my + 1} |= 0x0092;
241 $draw_info{$smooth_level}{$sface}{$mx - 1, $my } |= 0x0064; 244 $draw_info{$smoothlevel}{$sface}{$mx - 1, $my } |= 0x0064;
242 $draw_info{$smooth_level}{$sface}{$mx , $my - 1} |= 0x00c8; 245 $draw_info{$smoothlevel}{$sface}{$mx , $my - 1} |= 0x00c8;
243 246
244 # corners 247 # corners
245 $draw_info{$smooth_level}{$sface}{$mx + 1, $my + 1} |= 0x0100; 248 $draw_info{$smoothlevel}{$sface}{$mx + 1, $my + 1} |= 0x0100;
246 $draw_info{$smooth_level}{$sface}{$mx - 1, $my + 1} |= 0x0200; 249 $draw_info{$smoothlevel}{$sface}{$mx - 1, $my + 1} |= 0x0200;
247 $draw_info{$smooth_level}{$sface}{$mx - 1, $my - 1} |= 0x0400; 250 $draw_info{$smoothlevel}{$sface}{$mx - 1, $my - 1} |= 0x0400;
248 $draw_info{$smooth_level}{$sface}{$mx + 1, $my - 1} |= 0x0800; 251 $draw_info{$smoothlevel}{$sface}{$mx + 1, $my - 1} |= 0x0800;
249 } else {
250 $smooth_level = 0;
251 } 252 }
252 253
253 my $dx = $bigface ? $o->{x} : 0; 254 my $dx = $bigface ? $o->{x} : 0;
254 my $dy = $bigface ? $o->{y} : 0; 255 my $dy = $bigface ? $o->{y} : 0;
255 256
256 $draw_info{$level}{$o->{face}}{$mx, $my} |= 0x2000 | (($dx + 128) << 24) | (($dy + 128) << 16); 257 $draw_info{$level}{$face}{$mx, $my} |= 0x2000 | (($dx + 128) << 24) | (($dy + 128) << 16);
257 258
258 $o = $o->{more}; 259 $o = $o->{more};
259 } 260 }
260 } 261 }
261 } 262 }
262 } 263 }
263 264
264 my $map_pb = new Gtk2::Gdk::Pixbuf "rgb", 1, 8, $mapx * T, $mapy * T 265 my $map_pb = new Gtk2::Gdk::Pixbuf "rgb", 1, 8, $mapx * T, $mapy * T
265 or die; 266 or die;
266 $map_pb->fill (0x00000000); 267 $map_pb->fill (0xffffff00);
267 268
268 # second pass, render all the stuff 269 # second pass, render all the stuff
269 for my $level (sort { $a <=> $b } keys %draw_info) { 270 for my $level (sort { $a <=> $b } keys %draw_info) {
270 my $v = $draw_info{$level}; 271 my $v = $draw_info{$level};
271 while (my ($sface, $info) = each %$v) { 272 while (my ($sface, $info) = each %$v) {
326} 327}
327 328
328for my $file (@ARGV) { 329for my $file (@ARGV) {
329 my $mapa = read_arch $file; 330 my $mapa = read_arch $file;
330 my ($pb, $meta) = cfmap_render $mapa, $file; 331 my ($pb, $meta) = cfmap_render $mapa, $file;
331 $pb->save ("$file.png", "png"); 332 $pb->save ("$file.png~", "png");
333 system "convert", "$file.png~", "-filter" => "lanczos", "-geometry" => "3.125%", "-quality" => 85, "$file.jpg";
334 #system "mogrify", "-colors" => 65536, "$file.png~"; # destroys transparency
335 system "pngcrush", "-q", "-m" => 7, "-rem", "alla", "-cc", "-reduce", "$file.png~", "$file.png";
336 unlink "$file.png~";
332 Storable::nstore $meta, "$file.pst"; 337 Storable::nstore $meta, "$file.pst";
333} 338}
334 339
335 340
336 341

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines