ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cfmaps/cfmap2html
Revision: 1.6
Committed: Fri Nov 18 12:34:13 2005 UTC (18 years, 6 months ago) by root
Branch: MAIN
Changes since 1.5: +9 -5 lines
Log Message:
*** empty log message ***

File Contents

# Content
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 our $VERSION = '1.0';
15
16 sub escape_html($) {
17 local $_ = shift;
18 s/([<>&])/sprintf "&#%d;", ord $1/ge;
19 $_
20 }
21
22 for my $path (@ARGV) {
23 # print STDERR "$path\n";
24
25 if (!-e "$path.png"
26 || !-e "$path.pst"
27 || -M "$path.pst" > -M $path
28 || -M "$path.png" > -M $path) {
29 # regenerate png and metainfo
30
31 system "cfmap2png", $path;
32 };
33
34 $arch ||= Storable::retrieve "$LIBDIR/archetypes.pst";
35 my $meta = Storable::retrieve "$path.pst";
36
37 open my $fh, ">:utf8", "$path.html"
38 or die "$path.html: $!";
39
40 select $fh;
41
42 my $W = $meta->{width} * $T;
43 my $H = $meta->{height} * $T;
44
45 my (@path) = split /\//, $path;
46
47 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">",
48 "<html>",
49 "<head>",
50 "<title>Crossfire Map \"$path\"</title>",
51 "<style type='text/css'><!--\n",
52 "body { background: white; text-color: black; }\n",
53 "a { text-color: blue; }\n",
54 "a:hover { text-color: red; }\n",
55 "a:visited { text-color: #008; }\n",
56
57 "#nav { border-spacing: 0px; margin: 10px; padding: 0px; }\n",
58 "#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",
60
61 "#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",
63 "#map tr { width: ${W}px; height: ${T}px; border-style: none; margin: 0px; padding: 0px; }\n",
64
65 "#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",
67
68 "#map span { position: relative; }\n",
69
70 "#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",
72 "#map td:hover div { display: block; position: absolute; z-index: 1; top: -1px; left: ${T}px; white-space: pre; }\n",
73
74 "p.m { white-space: pre; margin-left: 2em; background: #ddd; padding: 2px; border: 1px solid black; }\n",
75 "-->\n</style>",
76 "</head>",
77 "<body>";
78
79 print "<table id='nav'>",
80 "<tr valign='center'><td rowspan='3' style='padding-right: 3em'>",
81 "Crossfire Map<br/>",
82 "<span style='font-size: 18pt'>";
83 print "<a href='/'>/</a> ";
84 for (0 .. $#path - 1) {
85 print "<a href='/", (join "/", @path[0..$_]), "/'>$path[$_]</a> / ";
86 }
87
88 my @tile = map {
89 $meta->{info}{"tile_path_$_"}
90 ? "<a href='$meta->{info}{\"tile_path_$_\"}.html'><img style='border: 2px solid blue;' src='$meta->{info}{\"tile_path_$_\"}.jpg'/></a>"
91 : ""
92 } 1..4;
93 #"}"# vim misparses without this comment
94
95 print "$path[-1]",
96 "</span>",
97 "<p style='font-size: 8pt;'><a href='/about.txt'>[more about cfmaps.schmorp.de]</a></p>",
98 "</td>",
99 "<td/><td>$tile[0]</td><td/></tr>",
100 "<tr><td>$tile[3]</td>",
101 "<td><img id='thumb' src='@path[-1].jpg'/></td>",
102 "<td>$tile[1]</td>",
103 "<tr><td/><td>$tile[2]</td><td/></tr>",
104 "</table>";
105
106 my $W1 = $W + 600;
107
108 print "<p class='m' style='white-space: pre; width=auto; '>",
109 escape_html $meta->{info}{msg},
110 "</p>";
111
112 print "<table id='map'>";
113
114 my %ignore = map +($_ => 1), qw(name _name x y);
115
116 for my $y (0.. $meta->{height} - 1) {
117 print "<tr>";
118 for my $x (0.. $meta->{width} - 1) {
119 print "<td>";
120 if (my $as = $meta->{map}[$x][$y]) {
121 print "<span><div>($x|$y)";
122
123 sub print_archs {
124 print "<ul>";
125 for my $a (@{$_[0]}) {
126 my $o = $arch->{$a->{_name}};
127 my $aname = escape_html $a->{_name};
128 my $name = escape_html $a->{name} || $o->{name};
129 print "<li><a href='/archetypes.html#", (lc $a->{_name}), "'>$aname \"$name\"</a>\n";
130 for (sort keys %$a) {
131 next if $ignore{$_};
132 my $v = escape_html $a->{$_};
133
134 if (($o->{type} == 66 || $o->{type} == 41) && $_ eq "slaying") { # door, teleporter
135 $a->{msg} =~ /^final_map\s*(\S+)\s*$/m, $v = $1
136 if $v eq "/!"; # random map
137
138 print "slaying => <a href='$v.html'>$v</a>\n";
139 } elsif ($_ eq "other_arch") {
140 print "$_ => <a href='/archetypes.html#", (lc $a->{$_}), "'>$v</a>\n";
141 } elsif ($_ eq "inventory") {
142 print "inventory =>\n";
143 print_archs ($a->{$_});
144 } elsif ($_ eq "msg") {
145 print "<p class='m'>$v</p>";
146 } else {
147 print "$_ => $v\n";
148 }
149 }
150 }
151 print "</ul>";
152 }
153
154 print_archs $as;
155 print "</div></span>";
156 }
157 print "</td>";
158 }
159 print "</tr>";
160 }
161
162 print "</table></p><hr/><p style='font-size: 6pt'>created by <b>cfmap2html</b> version $VERSION</p>",
163 "<p style='height: 600px;'/></body></html>";
164
165 close $fh;
166
167 system "gzip", "-7f", "$path.html";
168 }
169