| 1 |
root |
1.1 |
#!/opt/bin/perl |
| 2 |
|
|
|
| 3 |
|
|
use Storable; |
| 4 |
|
|
|
| 5 |
|
|
my $LIBDIR = $ENV{CROSSFIRE_LIBDIR} |
| 6 |
|
|
or die "\$CROSSFIRE_LIBDIR must be set\n"; |
| 7 |
|
|
|
| 8 |
|
|
my $T = 32; |
| 9 |
|
|
|
| 10 |
|
|
my $arch; |
| 11 |
|
|
|
| 12 |
|
|
umask 022; |
| 13 |
|
|
|
| 14 |
|
|
sub escape_html($) { |
| 15 |
|
|
local $_ = shift; |
| 16 |
|
|
s/([<>&])/sprintf "&#%d;", ord $1/ge; |
| 17 |
|
|
$_ |
| 18 |
|
|
} |
| 19 |
|
|
|
| 20 |
|
|
for my $path (@ARGV) { |
| 21 |
root |
1.3 |
print "$path\n"; |
| 22 |
|
|
|
| 23 |
root |
1.1 |
if (!-e "$path.png" |
| 24 |
|
|
|| !-e "$path.pst" |
| 25 |
|
|
|| -M "$path.pst" > -M $path |
| 26 |
|
|
|| -M "$path.png" > -M $path) { |
| 27 |
|
|
# regenerate png and metainfo |
| 28 |
|
|
|
| 29 |
|
|
system "cfmap2png", $path; |
| 30 |
|
|
}; |
| 31 |
|
|
|
| 32 |
|
|
$arch ||= Storable::retrieve "$LIBDIR/archetypes.pst"; |
| 33 |
|
|
my $meta = Storable::retrieve "$path.pst"; |
| 34 |
|
|
|
| 35 |
|
|
open my $fh, ">:utf8", "$path.html" |
| 36 |
|
|
or die "$path.html: $!"; |
| 37 |
|
|
|
| 38 |
|
|
select $fh; |
| 39 |
|
|
|
| 40 |
|
|
my $W = $meta->{width} * $T; |
| 41 |
|
|
my $H = $meta->{height} * $T; |
| 42 |
|
|
|
| 43 |
|
|
my (@path) = split /\//, $path; |
| 44 |
|
|
|
| 45 |
|
|
print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">", |
| 46 |
|
|
"<html>", |
| 47 |
|
|
"<head>", |
| 48 |
|
|
"<title>$path</title>", |
| 49 |
|
|
"<style type='text/css'><!--\n", |
| 50 |
|
|
"body { background: white; text-color: black; }\n", |
| 51 |
|
|
"a { text-color: blue; }\n", |
| 52 |
|
|
"a:hover { text-color: red; }\n", |
| 53 |
|
|
"a:visited { text-color: #008; }\n", |
| 54 |
|
|
|
| 55 |
|
|
"#nav { border-spacing: 0px; margin: 10px; padding: 0px; }\n", |
| 56 |
|
|
"#nav td { margin: 0px; padding: 0px; border: 0px; }\n", |
| 57 |
|
|
"#thumb { border: 2px solid yellow; width: $meta->{width}px; height: $meta->{height}px; padding: 0px; }\n", |
| 58 |
|
|
|
| 59 |
|
|
"#map { table-layout: fixed; width: ${W}px; height: ${H}px; border: 2px solid #777; border-spacing: 0px; ", |
| 60 |
|
|
"background-image: url($path[-1].png); background-position: 0px 0px; background-repeat: no-repeat; background-attachment: relative; }\n", |
| 61 |
|
|
"#map tr { width: ${W}px; height: ${T}px; border-style: none; margin: 0px; padding: 0px; }\n", |
| 62 |
|
|
|
| 63 |
|
|
"#map td { width: ${T}px; height: ${T}px; border-style: none; margin: 0px; padding: 0px; }\n", |
| 64 |
|
|
"#map td:hover { border: 3px solid yellow; border-style: ridge; }\n", |
| 65 |
|
|
|
| 66 |
|
|
"#map span { position: relative; }\n", |
| 67 |
|
|
|
| 68 |
|
|
"#map div { display: none; position: absolute; min-width: 40em; ", |
| 69 |
|
|
"font-size: 8pt; border: 0px; background: #eee; border: 3px solid yellow; border-style: ridge; padding: 4px; }\n", |
| 70 |
|
|
"#map td:hover div { display: block; position: absolute; z-index: 1; top: -1px; left: ${T}px; white-space: pre; }\n", |
| 71 |
|
|
|
| 72 |
|
|
"p.m { white-space: pre; margin-left: 2em; background: #ddd; padding: 2px; border: 1px solid black; }\n", |
| 73 |
|
|
"-->\n</style>", |
| 74 |
|
|
"</head>", |
| 75 |
|
|
"<body>"; |
| 76 |
|
|
|
| 77 |
|
|
print "<table id='nav'>", |
| 78 |
root |
1.4 |
"<tr><td rowspan='3'><h1>"; |
| 79 |
root |
1.1 |
print "<a href='/'>/</a> "; |
| 80 |
|
|
for (0 .. $#path - 1) { |
| 81 |
|
|
print "<a href='/", (join "/", @path[0..$_]), "/'>$path[$_]</a> / "; |
| 82 |
|
|
} |
| 83 |
|
|
|
| 84 |
|
|
my @tile = map { |
| 85 |
|
|
$meta->{info}{"tile_path_$_"} |
| 86 |
|
|
? "<a href='$meta->{info}{\"tile_path_$_\"}.html'><img style='border: 2px solid blue;' src='$meta->{info}{\"tile_path_$_\"}.jpg'/></a>" |
| 87 |
|
|
: "" |
| 88 |
|
|
} 1..4; |
| 89 |
|
|
|
| 90 |
|
|
print "$path[-1] "; |
| 91 |
root |
1.4 |
print "</h1></td>", |
| 92 |
root |
1.1 |
"<td/><td>$tile[0]</td><td/></tr>", |
| 93 |
|
|
"<tr><td>$tile[3]</td>"; |
| 94 |
|
|
print "<td><img id='thumb' src='@path[-1].jpg'/></td>", |
| 95 |
|
|
"<td>$tile[1]</td>", |
| 96 |
|
|
"<tr><td/><td>$tile[2]</td><td/></tr>"; |
| 97 |
|
|
print "</table>"; |
| 98 |
|
|
|
| 99 |
|
|
my $W1 = $W + 600; |
| 100 |
|
|
|
| 101 |
|
|
print "<p style='width: ${W1}px'><a href='/about.txt'>[about cfmaps.schmorp.de]</a></p>"; |
| 102 |
|
|
print "<p class='m' style='white-space: pre; width=auto; '>", |
| 103 |
|
|
escape_html $meta->{info}{msg}, |
| 104 |
|
|
"</p>"; |
| 105 |
|
|
|
| 106 |
|
|
print "<table id='map'>"; |
| 107 |
|
|
|
| 108 |
|
|
my %ignore = map +($_ => 1), qw(_name x y); |
| 109 |
|
|
|
| 110 |
|
|
for my $y (0.. $meta->{height} - 1) { |
| 111 |
|
|
print "<tr>"; |
| 112 |
|
|
for my $x (0.. $meta->{width} - 1) { |
| 113 |
|
|
print "<td>"; |
| 114 |
|
|
if (my $as = $meta->{map}[$x][$y]) { |
| 115 |
|
|
print "<span><div>($x|$y)<ul>"; |
| 116 |
|
|
for my $a (@$as) { |
| 117 |
|
|
my $o = $arch->{$a->{_name}}; |
| 118 |
|
|
print "<li>\"$o->{name}\" ($a->{_name})\n"; |
| 119 |
|
|
for (sort keys %$a) { |
| 120 |
|
|
next if $ignore{$_}; |
| 121 |
|
|
my $v = escape_html $a->{$_}; |
| 122 |
|
|
|
| 123 |
|
|
if (($o->{type} == 66 || $o->{type} == 41) && $_ eq "slaying") { # door, teleporter |
| 124 |
|
|
$a->{msg} =~ /^final_map\s*(\S+)\s*$/m, $v = $1 |
| 125 |
|
|
if $v eq "/!"; # random map |
| 126 |
|
|
|
| 127 |
|
|
print "slaying => <a href='$v.html'>$v</a>\n"; |
| 128 |
|
|
} elsif ($_ eq "msg") { |
| 129 |
|
|
print "<p class='m'>$v</p>"; |
| 130 |
|
|
} else { |
| 131 |
|
|
print "$_ => $v\n"; |
| 132 |
|
|
} |
| 133 |
|
|
} |
| 134 |
|
|
} |
| 135 |
|
|
print "</ul></div></span>"; |
| 136 |
|
|
} |
| 137 |
|
|
print "</td>"; |
| 138 |
|
|
} |
| 139 |
|
|
print "</tr>"; |
| 140 |
|
|
} |
| 141 |
|
|
|
| 142 |
|
|
print "</table></p><p style='height: 600px;'/></body></html>"; |
| 143 |
|
|
|
| 144 |
|
|
close $fh; |
| 145 |
|
|
|
| 146 |
|
|
system "gzip", "-7f", "$path.html"; |
| 147 |
|
|
} |
| 148 |
|
|
|