| 1 |
#!/opt/bin/perl |
| 2 |
|
| 3 |
# cfmap2html - convert deliantra maps to html |
| 4 |
# Copyright (C) 2005,2007,2008,2009 Marc Lehmann <cfmaps@schmorp.de> |
| 5 |
# |
| 6 |
# CFMAP2HTML is free software; you can redistribute it and/or modify |
| 7 |
# it under the terms of the GNU General Public License as published by |
| 8 |
# the Free Software Foundation; either version 2 of the License, or |
| 9 |
# (at your option) any later version. |
| 10 |
# |
| 11 |
# This program is distributed in the hope that it will be useful, |
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 |
# GNU General Public License for more details. |
| 15 |
# |
| 16 |
# You should have received a copy of the GNU General Public License |
| 17 |
# along with cfmaps; if not, write to the Free Software |
| 18 |
# Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 |
|
| 20 |
our $VERSION = '2.202'; |
| 21 |
|
| 22 |
use common::sense; |
| 23 |
|
| 24 |
use List::Util qw(min max); |
| 25 |
use Deliantra; |
| 26 |
|
| 27 |
my $T = 32; |
| 28 |
|
| 29 |
sub escape_html($) { |
| 30 |
local $_ = shift; |
| 31 |
s/([<>&])/sprintf "&#%d;", ord $1/ge; |
| 32 |
$_ |
| 33 |
} |
| 34 |
|
| 35 |
my @cfmap2png; |
| 36 |
|
| 37 |
for my $path (@ARGV) { |
| 38 |
(my $base = $path) =~ s/\.map//; |
| 39 |
# print STDERR "$path\n"; |
| 40 |
|
| 41 |
if (!-e "$base.png" |
| 42 |
|| -M "$base.png" > -M "$base.map") { |
| 43 |
# regenerate png and metainfo |
| 44 |
push @cfmap2png, $path; |
| 45 |
# force xhtml file to be remade as well |
| 46 |
utime 1, 1, "$base.xhtml"; |
| 47 |
} |
| 48 |
} |
| 49 |
|
| 50 |
system "cfmap2png", @cfmap2png |
| 51 |
if @cfmap2png; |
| 52 |
|
| 53 |
Deliantra::load_archetypes; |
| 54 |
|
| 55 |
for my $path (@ARGV) { |
| 56 |
(my $base = $path) =~ s/\.map//; |
| 57 |
if (!-e "$base.xhtml" |
| 58 |
|| -M "$base.xhtml" > -M "$base.map") { |
| 59 |
|
| 60 |
my $meta = eval { read_arch "$base.map" } |
| 61 |
or next; |
| 62 |
my $arch = $meta->{arch}; |
| 63 |
|
| 64 |
open my $fh, ">:utf8", "$base.xhtml" |
| 65 |
or die "$base.xhtml: $!"; |
| 66 |
|
| 67 |
select $fh; |
| 68 |
|
| 69 |
my $W = (1 + max map $_->{x}, @$arch); |
| 70 |
my $H = (1 + max map $_->{y}, @$arch); |
| 71 |
|
| 72 |
my $info = shift @$arch; |
| 73 |
my @map; |
| 74 |
|
| 75 |
push @{ $map[$_->{x}][$_->{y}] }, $_ |
| 76 |
for @$arch; |
| 77 |
|
| 78 |
my $W2 = $W * $T + 600; |
| 79 |
|
| 80 |
my (@path) = split /\//, $base; |
| 81 |
|
| 82 |
print "<?xml version='1.0' encoding='utf-8'?>", |
| 83 |
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">', |
| 84 |
"<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'>", |
| 85 |
"<head>", |
| 86 |
"<title>Deliantra Map \"$path\"</title>", |
| 87 |
"<link rel='stylesheet' type='text/css' media='all' href='/common.css'/>\n", |
| 88 |
"<link rel='stylesheet' type='text/css' media='all' href='/overlay.css' title='Show Overlays'/>\n", |
| 89 |
"<link rel='alternate stylesheet' type='text/css' media='all' href='/plain.css' title='Hide Overlays'/>\n", |
| 90 |
"<style type='text/css'>\n", |
| 91 |
".map { width: ${W}px; height: ${H}px; background-image: url($path[-1].png); }\n", |
| 92 |
".enlarge { width: ${W2}px; height: 600px; }\n", |
| 93 |
"</style>", |
| 94 |
"</head>", |
| 95 |
"<body>"; |
| 96 |
|
| 97 |
print "<table class='nav'>", |
| 98 |
"<tr class='center'><td class='title' rowspan='3'>", |
| 99 |
"Deliantra Map<br/>", |
| 100 |
"<span class='big'>"; |
| 101 |
print "<a href='/'>/</a> "; |
| 102 |
for (0 .. $#path - 1) { |
| 103 |
print "<a href='/", (join "/", @path[0..$_]), "/'>$path[$_]</a> / "; |
| 104 |
} |
| 105 |
|
| 106 |
my @dir = qw(none up right down left); |
| 107 |
my @tile = map { |
| 108 |
my $path = delete $info->{"tile_path_$_"}; |
| 109 |
$path |
| 110 |
? "<a href='$path.xhtml'><img class='tile' src='$path.jpg' alt='$dir[$_]'/></a>" |
| 111 |
: "" |
| 112 |
} 1..4; |
| 113 |
|
| 114 |
print "$path[-1]", |
| 115 |
"</span>", |
| 116 |
"<p class='about'><a href='/about.txt'>[more about maps.deliantra.net]</a></p>", |
| 117 |
"</td>", |
| 118 |
"<td/><td>$tile[0]</td><td/></tr>", |
| 119 |
"<tr><td>$tile[3]</td>", |
| 120 |
"<td><img class='thumb' src='@path[-1].jpg' width='$W' height='$H' alt='map thumbnail'/></td>", |
| 121 |
"<td>$tile[1]</td></tr>", |
| 122 |
"<tr><td/><td>$tile[2]</td><td/></tr>", |
| 123 |
"</table>"; |
| 124 |
|
| 125 |
my $W1 = $W * $T + 600; |
| 126 |
|
| 127 |
print "<p class='m'>", |
| 128 |
escape_html delete $info->{msg}, |
| 129 |
"</p>"; |
| 130 |
|
| 131 |
if (open my $fh, "<", "$base.png.err") { |
| 132 |
local $/; |
| 133 |
print "<p class='m'>", |
| 134 |
(escape_html scalar <$fh>), |
| 135 |
"</p>"; |
| 136 |
} |
| 137 |
|
| 138 |
print "<table class='i'>", |
| 139 |
(map "<tr><td>" . (escape_html $_) . "</td><td>" . (escape_html $info->{$_}) . "</td></tr>", |
| 140 |
grep !/^_/, keys %$info), |
| 141 |
"</table>", |
| 142 |
"<p />"; |
| 143 |
|
| 144 |
print "<table class='map'>"; |
| 145 |
|
| 146 |
my %ignore = map +($_ => 1), qw(name _name _atype x y); |
| 147 |
my %is_exit = map +($_ => 1), 41, 57, 66; |
| 148 |
|
| 149 |
for my $y (0.. $H - 1) { |
| 150 |
print "<tr>"; |
| 151 |
for my $x (0.. $W - 1) { |
| 152 |
if (my $as = $map[$x][$y]) { |
| 153 |
my @class; |
| 154 |
|
| 155 |
push @class, "fishy" if grep exists $_->{invisible} || exists $_->{face} |
| 156 |
|| exists $_->{move_block} || exists $_->{move_allow} |
| 157 |
|| exists $_->{no_pick} || exists $_->{tag} |
| 158 |
, @$as; |
| 159 |
push @class, "exit" if grep $is_exit{$ARCH{$_->{_name}}{type}} && $_->{slaying}, @$as; |
| 160 |
push @class, "dialog" if grep $_->{msg} =~ /^\@match/m, @$as; |
| 161 |
|
| 162 |
print "<td", (@class ? " class='" . (join " ", @class) . "'" : ""), ">"; |
| 163 |
print "<div>"; |
| 164 |
|
| 165 |
print join "\n", map "<span class='c'>$_</span>", |
| 166 |
reverse sort { (length $a) <=> (length $b) or $b <=> $a } |
| 167 |
grep $_, map $_->{connected}, @$as; |
| 168 |
|
| 169 |
print "<div>($x|$y)"; |
| 170 |
|
| 171 |
sub print_archs { |
| 172 |
print "<ul>"; |
| 173 |
for my $a (reverse @{$_[0]}) { |
| 174 |
my $o = $ARCH{$a->{_name}}; |
| 175 |
my $type = $a->{type} || $o->{type}; |
| 176 |
my $aname = escape_html $a->{_name}; |
| 177 |
my $name = escape_html $a->{name} || $o->{name}; |
| 178 |
|
| 179 |
print "<li><a href='/a/$a->{_name}'>$aname \"$name\"</a>\n"; |
| 180 |
for (sort keys %$a) { |
| 181 |
next if $ignore{$_}; |
| 182 |
my $v = escape_html $a->{$_}; |
| 183 |
|
| 184 |
if ($_ eq "slaying" && $is_exit{$type}) { # door, teleporter, player_changer |
| 185 |
$a->{msg} =~ /^final_map\s*(\S+)\s*$/m, $v = $1 |
| 186 |
if $v eq "/!"; # random map |
| 187 |
|
| 188 |
if ($v =~ s/^\*//) { |
| 189 |
print "slaying => <a href='/search?t=$v'>*$v</a>\n"; |
| 190 |
} else { |
| 191 |
print "slaying => <a href='$v.xhtml'>$v</a>\n"; |
| 192 |
} |
| 193 |
} elsif ($_ eq "other_arch") { |
| 194 |
print "$_ => <a href='/a/$a->{$_}'>$v</a>\n"; |
| 195 |
} elsif ($_ eq "inventory") { |
| 196 |
print "inventory =>\n"; |
| 197 |
print_archs ($a->{$_}); |
| 198 |
} elsif ($_ eq "msg") { |
| 199 |
print "<p class='m'>$v</p>"; |
| 200 |
} else { |
| 201 |
print "$_ => $v\n"; |
| 202 |
} |
| 203 |
} |
| 204 |
print "</li>"; |
| 205 |
} |
| 206 |
print "</ul>"; |
| 207 |
} |
| 208 |
|
| 209 |
print_archs $as; |
| 210 |
print "</div></div></td>"; |
| 211 |
} else { |
| 212 |
print "<td/>"; |
| 213 |
} |
| 214 |
} |
| 215 |
print "</tr>"; |
| 216 |
} |
| 217 |
|
| 218 |
print "</table><p class='footer'>created by <a href='http://software.schmorp.de/pkg/cfmaps'>cfmap2html</a> version $VERSION</p>", |
| 219 |
"<p class='enlarge'/></body></html>"; |
| 220 |
|
| 221 |
close $fh; |
| 222 |
|
| 223 |
#system "gzip", "-7f", "$path.xhtml"; |
| 224 |
} |
| 225 |
} |
| 226 |
|