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

Comparing cfmaps/cfmap2html (file contents):
Revision 1.5 by root, Fri Nov 18 12:04:12 2005 UTC vs.
Revision 1.10 by root, Sun Nov 20 01:05:34 2005 UTC

1#!/opt/bin/perl 1#!/opt/bin/perl
2
3# cfmap2html - convert crossfire maps to html
4# Copyright (C) 2005 Marc Lehmann <gvpe@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 gvpe; if not, write to the Free Software
18# Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
20our $VERSION = '1.05';
2 21
3use Storable; 22use Storable;
4 23
5my $LIBDIR = $ENV{CROSSFIRE_LIBDIR} 24my $LIBDIR = $ENV{CROSSFIRE_LIBDIR}
6 or die "\$CROSSFIRE_LIBDIR must be set\n"; 25 or die "\$CROSSFIRE_LIBDIR must be set\n";
8my $T = 32; 27my $T = 32;
9 28
10my $arch; 29my $arch;
11 30
12umask 022; 31umask 022;
13
14our $VERSION = '1.0';
15 32
16sub escape_html($) { 33sub escape_html($) {
17 local $_ = shift; 34 local $_ = shift;
18 s/([<>&])/sprintf "&#%d;", ord $1/ge; 35 s/([<>&])/sprintf "&#%d;", ord $1/ge;
19 $_ 36 $_
45 my (@path) = split /\//, $path; 62 my (@path) = split /\//, $path;
46 63
47 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">", 64 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">",
48 "<html>", 65 "<html>",
49 "<head>", 66 "<head>",
50 "<title>$path</title>", 67 "<title>Crossfire Map \"$path\"</title>",
51 "<style type='text/css'><!--\n", 68 "<style type='text/css'><!--\n",
52 "body { background: white; text-color: black; }\n", 69 "body { background: white; color: black; }\n",
53 "a { text-color: blue; }\n", 70 "a { color: blue; }\n",
54 "a:hover { text-color: red; }\n", 71 "a:hover { color: #800; }\n",
72 "a:active { color: #f00; }\n",
55 "a:visited { text-color: #008; }\n", 73 "a:visited { color: #008; }\n",
74 "img { display: block; }\n",
56 75
57 "#nav { border-spacing: 0px; margin: 10px; padding: 0px; }\n", 76 ".nav { border-spacing: 0px; margin: 10px; padding: 0px; }\n",
58 "#nav td { margin: 0px; padding: 0px; border: 0px; }\n", 77 ".nav td { margin: 0px; padding: 0px; border: 0px; }\n",
59 "#thumb { border: 2px solid yellow; width: $meta->{width}px; height: $meta->{height}px; padding: 0px; }\n", 78 ".thumb { border: 3px solid yellow; width: $meta->{width}px; height: $meta->{height}px; padding: 0px; }\n",
79 ".tile { border: 3px solid blue; }\n",
80 ".tile:hover { border: 3px solid yellow; }\n",
60 81
61 "#map { table-layout: fixed; width: ${W}px; height: ${H}px; border: 2px solid #777; border-spacing: 0px; ", 82 ".map { table-layout: fixed; width: ${W}px; height: ${H}px; border: 2px solid #777; border-spacing: 0px; ",
62 "background-image: url($path[-1].png); background-position: 0px 0px; background-repeat: no-repeat; background-attachment: relative; }\n", 83 "background-image: url($path[-1].png); background-position: 0px 0px; background-repeat: no-repeat; }\n",
63 "#map tr { width: ${W}px; height: ${T}px; border-style: none; margin: 0px; padding: 0px; }\n", 84 ".map tr { width: ${W}px; height: ${T}px; border-style: none; margin: 0px; padding: 0px; }\n",
64 85
65 "#map td { width: ${T}px; height: ${T}px; border-style: none; margin: 0px; padding: 0px; }\n", 86 ".map td { width: ${T}px; height: ${T}px; border-style: none; margin: 0px; padding: 0px; }\n",
66 "#map td:hover { border: 3px solid yellow; border-style: ridge; }\n", 87 ".map td:hover { border: 3px solid yellow; border-style: ridge; }\n",
67 88
68 "#map span { position: relative; }\n", 89 ".map span { position: relative; }\n",
69 90
70 "#map div { display: none; position: absolute; min-width: 40em; ", 91 ".map div { display: none; position: absolute; min-width: 40em; ",
71 "font-size: 8pt; border: 0px; background: #eee; border: 3px solid yellow; border-style: ridge; padding: 4px; }\n", 92 "font-size: 8pt; border: 0px; background: #eee; border: 3px solid yellow; border-style: ridge; padding: 4px; }\n",
72 "#map td:hover div { display: block; position: absolute; z-index: 1; top: -1px; left: ${T}px; white-space: pre; }\n", 93 ".map td:hover div { display: block; position: absolute; z-index: 1; top: -1px; left: ${T}px; white-space: pre; }\n",
73 94
74 "p.m { white-space: pre; margin-left: 2em; background: #ddd; padding: 2px; border: 1px solid black; }\n", 95 "p.m { white-space: pre; margin-left: 2em; background: #ddd; padding: 2px; border: 1px solid black; }\n",
75 "-->\n</style>", 96 "-->\n</style>",
76 "</head>", 97 "</head>",
77 "<body>"; 98 "<body>";
78 99
79 print "<table id='nav'>", 100 print "<table class='nav'>",
80 "<tr valign='center'><td rowspan='3' style='padding-right: 3em'><h1>"; 101 "<tr style='vertical-align: middle;'><td rowspan='3' style='padding-right: 3em'>",
102 "Crossfire Map<br/>",
103 "<span style='font-size: 18pt'>";
81 print "<a href='/'>/</a> "; 104 print "<a href='/'>/</a> ";
82 for (0 .. $#path - 1) { 105 for (0 .. $#path - 1) {
83 print "<a href='/", (join "/", @path[0..$_]), "/'>$path[$_]</a> / "; 106 print "<a href='/", (join "/", @path[0..$_]), "/'>$path[$_]</a> / ";
84 } 107 }
85 108
86 my @tile = map { 109 my @tile = map {
87 $meta->{info}{"tile_path_$_"} 110 $meta->{info}{"tile_path_$_"}
88 ? "<a href='$meta->{info}{\"tile_path_$_\"}.html'><img style='border: 2px solid blue;' src='$meta->{info}{\"tile_path_$_\"}.jpg'/></a>" 111 ? "<a href='$meta->{info}{\"tile_path_$_\"}.html'><img class='tile' src='$meta->{info}{\"tile_path_$_\"}.jpg' alt='tile_path_$_'/></a>"
89 : "" 112 : ""
90 } 1..4; 113 } 1..4;
91 #"}"# vim misparses without this comment 114 #"}"# vim misparses without this comment
92 115
93 print "$path[-1]", 116 print "$path[-1]",
94 "</h1>", 117 "</span>",
95 "<p style='font-size: 8pt;'><a href='/about.txt'>[more about cfmaps.schmorp.de]</a></p>", 118 "<p style='font-size: 8pt;'><a href='/about.txt'>[more about cfmaps.schmorp.de]</a></p>",
96 "</td>", 119 "</td>",
97 "<td/><td>$tile[0]</td><td/></tr>", 120 "<td/><td>$tile[0]</td><td/></tr>",
98 "<tr><td>$tile[3]</td>", 121 "<tr><td>$tile[3]</td>",
99 "<td><img id='thumb' src='@path[-1].jpg'/></td>", 122 "<td><img class='thumb' src='@path[-1].jpg' alt='map thumbnail'/></td>",
100 "<td>$tile[1]</td>", 123 "<td>$tile[1]</td></tr>",
101 "<tr><td/><td>$tile[2]</td><td/></tr>", 124 "<tr><td/><td>$tile[2]</td><td/></tr>",
102 "</table>"; 125 "</table>";
103 126
104 my $W1 = $W + 600; 127 my $W1 = $W + 600;
105 128
106 print "<p class='m' style='white-space: pre; width=auto; '>", 129 print "<p class='m' style='white-space: pre; width: auto; '>",
107 escape_html $meta->{info}{msg}, 130 escape_html $meta->{info}{msg},
108 "</p>"; 131 "</p>";
109 132
110 print "<table id='map'>"; 133 print "<table class='map'>";
111 134
112 my %ignore = map +($_ => 1), qw(_name x y); 135 my %ignore = map +($_ => 1), qw(name _name x y);
113 136
114 for my $y (0.. $meta->{height} - 1) { 137 for my $y (0.. $meta->{height} - 1) {
115 print "<tr>"; 138 print "<tr>";
116 for my $x (0.. $meta->{width} - 1) { 139 for my $x (0.. $meta->{width} - 1) {
117 print "<td>"; 140 print "<td>";
120 143
121 sub print_archs { 144 sub print_archs {
122 print "<ul>"; 145 print "<ul>";
123 for my $a (@{$_[0]}) { 146 for my $a (@{$_[0]}) {
124 my $o = $arch->{$a->{_name}}; 147 my $o = $arch->{$a->{_name}};
148 my $type = $a->{type} || $o->{type};
149 my $aname = escape_html $a->{_name};
150 my $name = escape_html $a->{name} || $o->{name};
151
125 print "<li><a href='/archetypes.html#", (lc $a->{_name}), "'>\"$o->{name}\" ($a->{_name})</a>\n"; 152 print "<li><a href='/archetypes.html#", (lc $a->{_name}), "'>$aname \"$name\"</a>\n";
126 for (sort keys %$a) { 153 for (sort keys %$a) {
127 next if $ignore{$_}; 154 next if $ignore{$_};
128 my $v = escape_html $a->{$_}; 155 my $v = escape_html $a->{$_};
129 156
130 if (($o->{type} == 66 || $o->{type} == 41) && $_ eq "slaying") { # door, teleporter 157 if (($type == 66 || $type == 41) && $_ eq "slaying") { # door, teleporter
131 $a->{msg} =~ /^final_map\s*(\S+)\s*$/m, $v = $1 158 $a->{msg} =~ /^final_map\s*(\S+)\s*$/m, $v = $1
132 if $v eq "/!"; # random map 159 if $v eq "/!"; # random map
133 160
134 print "slaying => <a href='$v.html'>$v</a>\n"; 161 print "slaying => <a href='$v.html'>$v</a>\n";
135 } elsif ($_ eq "other_arch") { 162 } elsif ($_ eq "other_arch") {
141 print "<p class='m'>$v</p>"; 168 print "<p class='m'>$v</p>";
142 } else { 169 } else {
143 print "$_ => $v\n"; 170 print "$_ => $v\n";
144 } 171 }
145 } 172 }
173 print "</li>";
146 } 174 }
147 print "</ul>"; 175 print "</ul>";
148 } 176 }
149 177
150 print_archs $as; 178 print_archs $as;
153 print "</td>"; 181 print "</td>";
154 } 182 }
155 print "</tr>"; 183 print "</tr>";
156 } 184 }
157 185
186 my $W2 = $W + 600;
187
158 print "</table></p><hr/><p style='font-size: 6pt'>created by <b>cfmap2html</b> version $VERSION</p>", 188 print "</table><hr/><p style='font-size: 8pt'>created by <a href='http://software.schmorp.de/#crossfire'>cfmap2html</a> version $VERSION</p>",
159 "<p style='height: 600px;'/></body></html>"; 189 "<p style='width: ${W2}px; height: 600px;'/></body></html>";
160 190
161 close $fh; 191 close $fh;
162 192
163 system "gzip", "-7f", "$path.html"; 193 system "gzip", "-7f", "$path.html";
164} 194}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines